OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pCrcLookup
(Results
1 - 2
of
2
) sorted by null
/external/aac/libFDK/include/
FDK_crc.h
120
const USHORT *
pCrcLookup
; /*!< Pointer to lookup table filled in FDK_crcInit(). */
/external/aac/libFDK/src/
FDK_crc.cpp
188
const USHORT *
pCrcLookup
,
221
hCrcInfo->
pCrcLookup
= 0;
226
hCrcInfo->
pCrcLookup
= crcLookup_16_15_2_0;
229
hCrcInfo->
pCrcLookup
= crcLookup_16_12_5_0;
234
hCrcInfo->
pCrcLookup
= 0;
360
* \param
pCrcLookup
Pointer to lookup table used for fast crc calculation.
368
const USHORT *
pCrcLookup
,
378
crc = (crc<<8)^
pCrcLookup
[((crc>>8)^((UCHAR)FDKreadBits(hBs,8)))&0xFF];
383
crc = (crc<<8)^
pCrcLookup
[((crc>>8)^((UCHAR)0))&0xFF];
434
if(hCrcInfo->
pCrcLookup
) {
[
all
...]
Completed in 169 milliseconds