Lines Matching +full:64 +full:kb
65 hc4->nextToUpdate = 64 * KB; in LZ4HC_init()
66 hc4->base = start - 64 * KB; in LZ4HC_init()
68 hc4->dictBase = start - 64 * KB; in LZ4HC_init()
69 hc4->dictLimit = 64 * KB; in LZ4HC_init()
70 hc4->lowLimit = 64 * KB; in LZ4HC_init()
111 const U32 lowLimit = (hc4->lowLimit + 64 * KB > (U32)(ip - base)) in LZ4HC_InsertAndFindBestMatch()
113 : (U32)(ip - base) - (64 * KB - 1); in LZ4HC_InsertAndFindBestMatch()
183 const U32 lowLimit = (hc4->lowLimit + 64 * KB > (U32)(ip - base)) in LZ4HC_InsertAndGetWiderMatch()
185 : (U32)(ip - base) - (64 * KB - 1); in LZ4HC_InsertAndGetWiderMatch()
593 * for pointers (32 or 64 bits) in LZ4_compress_HC_extStateHC()
631 if (dictSize > 64 * KB) { in LZ4_loadDictHC()
632 dictionary += dictSize - 64 * KB; in LZ4_loadDictHC()
633 dictSize = 64 * KB; in LZ4_loadDictHC()
685 if (dictSize > 64 * KB) in LZ4_compressHC_continue_generic()
686 dictSize = 64 * KB; in LZ4_compressHC_continue_generic()
743 if (dictSize > 64 * KB) in LZ4_saveDictHC()
744 dictSize = 64 * KB; in LZ4_saveDictHC()