OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:crc32table_be
(Results
1 - 3
of
3
) sorted by null
/external/e2fsprogs/e2fsck/
gen_crc32table.c
22
static uint32_t
crc32table_be
[BE_TABLE_SIZE];
variable
53
crc32table_be
[0] = 0;
58
crc32table_be
[i + j] = crc ^
crc32table_be
[j];
95
printf("static const __u32
crc32table_be
[] = {");
96
output_table(
crc32table_be
, BE_TABLE_SIZE, "tobe");
crc32.c
187
const __u32 *tab =
crc32table_be
;
234
crc = (crc << 4) ^
crc32table_be
[crc >> 28];
235
crc = (crc << 4) ^
crc32table_be
[crc >> 28];
241
crc = (crc << 2) ^
crc32table_be
[crc >> 30];
242
crc = (crc << 2) ^
crc32table_be
[crc >> 30];
243
crc = (crc << 2) ^
crc32table_be
[crc >> 30];
244
crc = (crc << 2) ^
crc32table_be
[crc >> 30];
crc32table.h
71
static const __u32
crc32table_be
[] = {
variable
Completed in 1415 milliseconds