Home
last modified time | relevance | path

Searched refs:CRC_LE_BITS (Results 1 – 5 of 5) sorted by relevance

/external/u-boot/drivers/mtd/ubi/
Dcrc32defs.h11 #ifndef CRC_LE_BITS
12 # define CRC_LE_BITS 8 macro
22 #if CRC_LE_BITS > 8 || CRC_LE_BITS < 1 || CRC_LE_BITS & CRC_LE_BITS-1
23 # error CRC_LE_BITS must be a power of 2 between 1 and 8
Dcrc32.c39 #define CRC_LE_BITS 8 macro
41 #if CRC_LE_BITS == 8
63 #if CRC_LE_BITS == 1
83 # if CRC_LE_BITS == 8 in crc32_le()
130 # elif CRC_LE_BITS == 4 in crc32_le()
137 # elif CRC_LE_BITS == 2 in crc32_le()
/external/e2fsprogs/lib/ext2fs/
Dcrc32c_defs.h19 #ifndef CRC_LE_BITS
20 # define CRC_LE_BITS 64 macro
30 #if CRC_LE_BITS > 64 || CRC_LE_BITS < 1 || CRC_LE_BITS == 16 || \
31 CRC_LE_BITS & CRC_LE_BITS-1
Dcrc32c.c59 #if CRC_LE_BITS > 8
73 #if CRC_LE_BITS > 8 || CRC_BE_BITS > 8
106 # if CRC_LE_BITS == 32 in crc32_body()
117 # if CRC_LE_BITS == 32 in crc32_body()
151 #if CRC_LE_BITS == 1 in crc32_le_generic()
158 # elif CRC_LE_BITS == 2 in crc32_le_generic()
166 # elif CRC_LE_BITS == 4 in crc32_le_generic()
172 # elif CRC_LE_BITS == 8 in crc32_le_generic()
Dgen_crc32ctable.c7 #if CRC_LE_BITS > 8
8 # define LE_TABLE_ROWS (CRC_LE_BITS/8)
12 # define LE_TABLE_SIZE (1 << CRC_LE_BITS)
106 if (CRC_LE_BITS > 1) { in main()