diff options
Diffstat (limited to 'C/7zCrcOpt.c')
-rw-r--r-- | C/7zCrcOpt.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/C/7zCrcOpt.c b/C/7zCrcOpt.c index 69fad9c..9c64929 100644 --- a/C/7zCrcOpt.c +++ b/C/7zCrcOpt.c | |||
@@ -1,5 +1,5 @@ | |||
1 | /* 7zCrcOpt.c -- CRC32 calculation | 1 | /* 7zCrcOpt.c -- CRC32 calculation |
2 | 2021-02-09 : Igor Pavlov : Public domain */ | 2 | 2023-04-02 : Igor Pavlov : Public domain */ |
3 | 3 | ||
4 | #include "Precomp.h" | 4 | #include "Precomp.h" |
5 | 5 | ||
@@ -9,8 +9,8 @@ | |||
9 | 9 | ||
10 | #define CRC_UPDATE_BYTE_2(crc, b) (table[((crc) ^ (b)) & 0xFF] ^ ((crc) >> 8)) | 10 | #define CRC_UPDATE_BYTE_2(crc, b) (table[((crc) ^ (b)) & 0xFF] ^ ((crc) >> 8)) |
11 | 11 | ||
12 | UInt32 MY_FAST_CALL CrcUpdateT4(UInt32 v, const void *data, size_t size, const UInt32 *table); | 12 | UInt32 Z7_FASTCALL CrcUpdateT4(UInt32 v, const void *data, size_t size, const UInt32 *table); |
13 | UInt32 MY_FAST_CALL CrcUpdateT4(UInt32 v, const void *data, size_t size, const UInt32 *table) | 13 | UInt32 Z7_FASTCALL CrcUpdateT4(UInt32 v, const void *data, size_t size, const UInt32 *table) |
14 | { | 14 | { |
15 | const Byte *p = (const Byte *)data; | 15 | const Byte *p = (const Byte *)data; |
16 | for (; size > 0 && ((unsigned)(ptrdiff_t)p & 3) != 0; size--, p++) | 16 | for (; size > 0 && ((unsigned)(ptrdiff_t)p & 3) != 0; size--, p++) |
@@ -29,8 +29,8 @@ UInt32 MY_FAST_CALL CrcUpdateT4(UInt32 v, const void *data, size_t size, const U | |||
29 | return v; | 29 | return v; |
30 | } | 30 | } |
31 | 31 | ||
32 | UInt32 MY_FAST_CALL CrcUpdateT8(UInt32 v, const void *data, size_t size, const UInt32 *table); | 32 | UInt32 Z7_FASTCALL CrcUpdateT8(UInt32 v, const void *data, size_t size, const UInt32 *table); |
33 | UInt32 MY_FAST_CALL CrcUpdateT8(UInt32 v, const void *data, size_t size, const UInt32 *table) | 33 | UInt32 Z7_FASTCALL CrcUpdateT8(UInt32 v, const void *data, size_t size, const UInt32 *table) |
34 | { | 34 | { |
35 | const Byte *p = (const Byte *)data; | 35 | const Byte *p = (const Byte *)data; |
36 | for (; size > 0 && ((unsigned)(ptrdiff_t)p & 7) != 0; size--, p++) | 36 | for (; size > 0 && ((unsigned)(ptrdiff_t)p & 7) != 0; size--, p++) |
@@ -61,11 +61,11 @@ UInt32 MY_FAST_CALL CrcUpdateT8(UInt32 v, const void *data, size_t size, const U | |||
61 | 61 | ||
62 | #ifndef MY_CPU_LE | 62 | #ifndef MY_CPU_LE |
63 | 63 | ||
64 | #define CRC_UINT32_SWAP(v) ((v >> 24) | ((v >> 8) & 0xFF00) | ((v << 8) & 0xFF0000) | (v << 24)) | 64 | #define CRC_UINT32_SWAP(v) Z7_BSWAP32(v) |
65 | 65 | ||
66 | #define CRC_UPDATE_BYTE_2_BE(crc, b) (table[(((crc) >> 24) ^ (b))] ^ ((crc) << 8)) | 66 | #define CRC_UPDATE_BYTE_2_BE(crc, b) (table[(((crc) >> 24) ^ (b))] ^ ((crc) << 8)) |
67 | 67 | ||
68 | UInt32 MY_FAST_CALL CrcUpdateT1_BeT4(UInt32 v, const void *data, size_t size, const UInt32 *table) | 68 | UInt32 Z7_FASTCALL CrcUpdateT1_BeT4(UInt32 v, const void *data, size_t size, const UInt32 *table) |
69 | { | 69 | { |
70 | const Byte *p = (const Byte *)data; | 70 | const Byte *p = (const Byte *)data; |
71 | table += 0x100; | 71 | table += 0x100; |
@@ -86,7 +86,7 @@ UInt32 MY_FAST_CALL CrcUpdateT1_BeT4(UInt32 v, const void *data, size_t size, co | |||
86 | return CRC_UINT32_SWAP(v); | 86 | return CRC_UINT32_SWAP(v); |
87 | } | 87 | } |
88 | 88 | ||
89 | UInt32 MY_FAST_CALL CrcUpdateT1_BeT8(UInt32 v, const void *data, size_t size, const UInt32 *table) | 89 | UInt32 Z7_FASTCALL CrcUpdateT1_BeT8(UInt32 v, const void *data, size_t size, const UInt32 *table) |
90 | { | 90 | { |
91 | const Byte *p = (const Byte *)data; | 91 | const Byte *p = (const Byte *)data; |
92 | table += 0x100; | 92 | table += 0x100; |