Lines Matching refs:HashTable
470 HTYPE *HashTable = (HTYPE *) (srt->hashTable); in LZ4_compressCtx() local
472 HTYPE HashTable[HASHTABLESIZE] = { 0 }; in LZ4_compressCtx()
495 HashTable[LZ4_HASH_VALUE(ip)] = ip - base; in LZ4_compressCtx()
518 ref = base + HashTable[h]; in LZ4_compressCtx()
519 HashTable[h] = ip - base; in LZ4_compressCtx()
609 HashTable[LZ4_HASH_VALUE(ip - 2)] = ip - 2 - base; in LZ4_compressCtx()
612 ref = base + HashTable[LZ4_HASH_VALUE(ip)]; in LZ4_compressCtx()
613 HashTable[LZ4_HASH_VALUE(ip)] = ip - base; in LZ4_compressCtx()
665 U16 *HashTable = (U16 *) (srt->hashTable); in LZ4_compress64kCtx() local
667 U16 HashTable[HASH64KTABLESIZE] = { 0 }; in LZ4_compress64kCtx()
711 ref = base + HashTable[h]; in LZ4_compress64kCtx()
712 HashTable[h] = ip - base; in LZ4_compress64kCtx()
802 HashTable[LZ4_HASH64K_VALUE(ip - 2)] = ip - 2 - base; in LZ4_compress64kCtx()
805 ref = base + HashTable[LZ4_HASH64K_VALUE(ip)]; in LZ4_compress64kCtx()
806 HashTable[LZ4_HASH64K_VALUE(ip)] = ip - base; in LZ4_compress64kCtx()