OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:REV
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/zlib/
crc32.c
56
# define
REV
(w) ((((w)>>24)&0xff)+(((w)>>8)&0xff00)+ \
141
crc_table[4][n] =
REV
(c);
145
crc_table[k + 4][n] =
REV
(c);
312
c =
REV
((u4)crc);
336
return (unsigned long)(
REV
(c));
/external/qemu/distrib/zlib-1.2.3/
crc32.c
56
# define
REV
(w) (((w)>>24)+(((w)>>8)&0xff00)+ \
139
crc_table[4][n] =
REV
(c);
143
crc_table[k + 4][n] =
REV
(c);
310
c =
REV
((u4)crc);
334
return (unsigned long)(
REV
(c));
Completed in 237 milliseconds