OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:crc32table_be
(Results
1 - 2
of
2
) sorted by null
/external/e2fsprogs/lib/ext2fs/
crc32c_table.h
3
static const uint32_t
crc32table_be
[8][256] = {{
variable
[
all
...]
gen_crc32ctable.c
23
static uint32_t
crc32table_be
[BE_TABLE_ROWS][256];
variable
62
crc32table_be
[0][0] = 0;
67
crc32table_be
[0][i + j] = crc ^
crc32table_be
[0][j];
70
crc =
crc32table_be
[0][i];
72
crc =
crc32table_be
[0][(crc >> 24) & 0xff] ^ (crc << 8);
73
crc32table_be
[j][i] = crc;
100
"
crc32table_be
[%d][%d] = {",
102
output_table(
crc32table_be
, LE_TABLE_ROWS,
Completed in 100 milliseconds