Home
last modified time | relevance | path

Searched refs:byPtr (Results 1 – 1 of 1) sorted by relevance

/external/lz4/lib/
Dlz4.c573 typedef enum { clearedTable = 0, byPtr, byU32, byU16 } tableType_t; enumerator
663 case byPtr: { const BYTE** hashTable = (const BYTE**)tableBase; hashTable[h] = NULL; return; } in LZ4_clearHash()
675 case byPtr: { /* illegal! */ assert(0); return; } in LZ4_putIndexOnHash()
688 case byPtr: { const BYTE** hashTable = (const BYTE**)tableBase; hashTable[h] = p; return; } in LZ4_putPositionOnHash()
724 …if (tableType == byPtr) { const BYTE* const* hashTable = (const BYTE* const*) tableBase; return ha… in LZ4_getPositionOnHash()
760 || tableType == byPtr in LZ4_prepareTable()
842 … if (tableType==byPtr) assert(dictDirective==noDict); /* only supported use case with byPtr */ in LZ4_compress_generic()
872 if (tableType == byPtr) { in LZ4_compress_generic()
1087 if (tableType == byPtr) { in LZ4_compress_generic()
1189 …bleType_t tableType = ((sizeof(void*)==4) && ((uptrval)source > LZ4_DISTANCE_MAX)) ? byPtr : byU32; in LZ4_compress_fast_extState()
[all …]