Searched refs:byPtr (Results 1 – 1 of 1) sorted by relevance
/external/lz4/lib/ |
D | lz4.c | 381 typedef enum { byPtr, byU32, byU16 } tableType_t; enumerator 431 case byPtr: { const BYTE** hashTable = (const BYTE**)tableBase; hashTable[h] = p; return; } in LZ4_putPositionOnHash() 445 …if (tableType == byPtr) { const BYTE** hashTable = (const BYTE**) tableBase; return hashTable[h]; } in LZ4_getPositionOnHash() 669 …st, inputSize, 0, notLimited, (sizeof(void*)==8) ? byU32 : byPtr, noDict, noDictIss… in LZ4_compress_fast_extState() 674 …st, inputSize, maxOutputSize, limitedOutput, (sizeof(void*)==8) ? byU32 : byPtr, noDict, noDictIss… in LZ4_compress_fast_extState() 713 …dest, inputSize, maxOutputSize, limitedOutput, sizeof(void*)==8 ? byU32 : byPtr, noDict, noDictIss… in LZ4_compress_fast_force() 887 …(&state->internal_donotuse, src, dst, srcSizePtr, targetDstSize, sizeof(void*)==8 ? byU32 : byPtr); in LZ4_compress_destSize_extState()
|