Home | History | Annotate | Download | only in lib

Lines Matching refs:hashTable

436     U32 hashTable[HASH_SIZE_U32];
473 case byPtr: { const BYTE** hashTable = (const BYTE**)tableBase; hashTable[h] = p; return; }
474 case byU32: { U32* hashTable = (U32*) tableBase; hashTable[h] = (U32)(p-srcBase); return; }
475 case byU16: { U16* hashTable = (U16*) tableBase; hashTable[h] = (U16)(p-srcBase); return; }
487 if (tableType == byPtr) { const BYTE** hashTable = (const BYTE**) tableBase; return hashTable[h]; }
488 if (tableType == byU32) { U32* hashTable = (U32*) tableBase; return hashTable[h] + srcBase; }
489 { U16* hashTable = (U16*) tableBase; return hashTable
823 if (LZ4_dict->hashTable[i] < delta) LZ4_dict->hashTable[i]=0;
824 else LZ4_dict->hashTable[i] -= delta;