OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:crc32table_le
(Results
1 - 3
of
3
) sorted by null
/external/e2fsprogs/e2fsck/
gen_crc32table.c
21
static uint32_t
crc32table_le
[LE_TABLE_SIZE];
variable
36
crc32table_le
[0] = 0;
41
crc32table_le
[i + j] = crc ^
crc32table_le
[j];
87
printf("static const __u32
crc32table_le
[] = {");
88
output_table(
crc32table_le
, LE_TABLE_SIZE, "tole");
crc32.c
87
const __u32 *tab =
crc32table_le
;
135
crc = (crc >> 4) ^
crc32table_le
[crc & 15];
136
crc = (crc >> 4) ^
crc32table_le
[crc & 15];
142
crc = (crc >> 2) ^
crc32table_le
[crc & 3];
143
crc = (crc >> 2) ^
crc32table_le
[crc & 3];
144
crc = (crc >> 2) ^
crc32table_le
[crc & 3];
145
crc = (crc >> 2) ^
crc32table_le
[crc & 3];
crc32table.h
4
static const __u32
crc32table_le
[] = {
variable
Completed in 2197 milliseconds