OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:crc_reg
(Results
1 - 2
of
2
) sorted by null
/external/tremolo/Tremolo/
framing.c
668
ogg_uint32_t
crc_reg
=0;
local
675
crc_reg
=(
crc_reg
<<8)^crc_lookup[((
crc_reg
>> 24)&0xff)^data[j]];
680
return
crc_reg
;
/external/libogg/src/
framing.c
282
ogg_uint32_t
crc_reg
=0;
local
292
crc_reg
=(
crc_reg
<<8)^crc_lookup[((
crc_reg
>> 24)&0xff)^og->header[i]];
294
crc_reg
=(
crc_reg
<<8)^crc_lookup[((
crc_reg
>> 24)&0xff)^og->body[i]];
296
og->header[22]=(unsigned char)(
crc_reg
&0xff);
297
og->header[23]=(unsigned char)((
crc_reg
>>8)&0xff);
298
og->header[24]=(unsigned char)((
crc_reg
>>16)&0xff)
[
all
...]
Completed in 1015 milliseconds