1 // SPDX-License-Identifier: 0BSD
3 ///////////////////////////////////////////////////////////////////////////////
5 /// \file crc32_small.c
6 /// \brief CRC32 calculation (size-optimized)
8 // Author: Lasse Collin
10 ///////////////////////////////////////////////////////////////////////////////
15 uint32_t lzma_crc32_table
[1][256];
18 #ifdef HAVE_FUNC_ATTRIBUTE_CONSTRUCTOR
19 __attribute__((__constructor__
))
24 static const uint32_t poly32
= UINT32_C(0xEDB88320);
26 for (size_t b
= 0; b
< 256; ++b
) {
28 for (size_t i
= 0; i
< 8; ++i
) {
30 r
= (r
>> 1) ^ poly32
;
35 lzma_crc32_table
[0][b
] = r
;
42 #ifndef HAVE_FUNC_ATTRIBUTE_CONSTRUCTOR
46 mythread_once(crc32_init
);
52 extern LZMA_API(uint32_t)
53 lzma_crc32(const uint8_t *buf
, size_t size
, uint32_t crc
)
55 #ifndef HAVE_FUNC_ATTRIBUTE_CONSTRUCTOR
62 crc
= lzma_crc32_table
[0][*buf
++ ^ (crc
& 0xFF)] ^ (crc
>> 8);