Lines Matching refs:U32
53 static U32 LZ4HC_hashPtr(const void *ptr) in LZ4HC_hashPtr()
78 U32 * const hashTable = hc4->hashTable; in LZ4HC_Insert()
80 U32 const target = (U32)(ip - base); in LZ4HC_Insert()
81 U32 idx = hc4->nextToUpdate; in LZ4HC_Insert()
84 U32 const h = LZ4HC_hashPtr(base + idx); in LZ4HC_Insert()
107 U32 * const HashTable = hc4->hashTable; in LZ4HC_InsertAndFindBestMatch()
110 const U32 dictLimit = hc4->dictLimit; in LZ4HC_InsertAndFindBestMatch()
111 const U32 lowLimit = (hc4->lowLimit + 64 * KB > (U32)(ip - base)) in LZ4HC_InsertAndFindBestMatch()
113 : (U32)(ip - base) - (64 * KB - 1); in LZ4HC_InsertAndFindBestMatch()
114 U32 matchIndex; in LZ4HC_InsertAndFindBestMatch()
179 U32 * const HashTable = hc4->hashTable; in LZ4HC_InsertAndGetWiderMatch()
181 const U32 dictLimit = hc4->dictLimit; in LZ4HC_InsertAndGetWiderMatch()
183 const U32 lowLimit = (hc4->lowLimit + 64 * KB > (U32)(ip - base)) in LZ4HC_InsertAndGetWiderMatch()
185 : (U32)(ip - base) - (64 * KB - 1); in LZ4HC_InsertAndGetWiderMatch()
187 U32 matchIndex; in LZ4HC_InsertAndGetWiderMatch()
561 > (U32)maxOutputSize)) { in LZ4HC_compress_generic()
659 ctxPtr->dictLimit = (U32)(ctxPtr->end - ctxPtr->base); in LZ4HC_setExternalDict()
706 ctxPtr->lowLimit = (U32)(sourceEnd - ctxPtr->dictBase); in LZ4_compressHC_continue_generic()
754 U32 const endIndex = (U32)(streamPtr->end - streamPtr->base); in LZ4_saveDictHC()