OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:crc_table
(Results
1 - 6
of
6
) sorted by null
/external/qemu/distrib/zlib-1.2.3/
crc32.c
75
local unsigned long FAR
crc_table
[TBLS][256];
variable
131
crc_table
[0][n] = c;
138
c =
crc_table
[0][n];
139
crc_table
[4][n] = REV(c);
141
c =
crc_table
[0][c & 0xff] ^ (c >> 8);
142
crc_table
[k][n] = c;
143
crc_table
[k + 4][n] = REV(c);
166
fprintf(out, "
crc_table
[TBLS][256] =\n{\n {\n");
167
write_table(out,
crc_table
[0]);
172
write_table(out,
crc_table
[k])
[
all
...]
crc32.h
5
local const unsigned long FAR
crc_table
[TBLS][256] =
variable
/external/zlib/
crc32.c
77
local unsigned long FAR
crc_table
[TBLS][256];
variable
133
crc_table
[0][n] = c;
140
c =
crc_table
[0][n];
141
crc_table
[4][n] = REV(c);
143
c =
crc_table
[0][c & 0xff] ^ (c >> 8);
144
crc_table
[k][n] = c;
145
crc_table
[k + 4][n] = REV(c);
168
fprintf(out, "
crc_table
[TBLS][256] =\n{\n {\n");
169
write_table(out,
crc_table
[0]);
174
write_table(out,
crc_table
[k])
[
all
...]
crc32.h
5
local const unsigned long FAR
crc_table
[TBLS][256] =
variable
/external/bluetooth/bluez/tools/
ubcsp.c
227
static const uint16
crc_table
[] =
local
237
crc = (crc >> 4) ^
crc_table
[(crc ^ ch) & 0x000f];
238
crc = (crc >> 4) ^
crc_table
[(crc ^ (ch >> 4)) & 0x000f];
[
all
...]
/external/bluetooth/bluez/sbc/
sbc.c
102
static const uint8_t
crc_table
[256] = {
variable
144
crc =
crc_table
[crc ^ data[i]];
Completed in 729 milliseconds