Lines Matching +full:64 +full:kb
42 static const int LZ4_64Klimit = ((64 * KB) + (MFLIMIT - 1));
70 return (U32)(((sequence << 24) * prime5bytes) >> (64 - hashLog)); in LZ4_hash5()
74 return (U32)(((sequence >> 24) * prime8bytes) >> (64 - hashLog)); in LZ4_hash5()
229 /* Size too large (not within 64K limit) */ in LZ4_compress_generic()
554 /* Size too large (not within 64K limit) */ in LZ4_compress_destSize_generic()
794 if ((dictEnd - p) > 64 * KB) in LZ4_loadDict()
795 p = dictEnd - 64 * KB; in LZ4_loadDict()
796 dict->currentOffset += 64 * KB; in LZ4_loadDict()
818 U32 const delta = LZ4_dict->currentOffset - 64 * KB; in LZ4_renormDictT()
828 LZ4_dict->currentOffset = 64 * KB; in LZ4_renormDictT()
829 if (LZ4_dict->dictSize > 64 * KB) in LZ4_renormDictT()
830 LZ4_dict->dictSize = 64 * KB; in LZ4_renormDictT()
840 if ((U32)dictSize > 64 * KB) { in LZ4_saveDict()
841 /* useless to define a dictionary > 64 * KB */ in LZ4_saveDict()
842 dictSize = 64 * KB; in LZ4_saveDict()
885 if (streamPtr->dictSize > 64 * KB) in LZ4_compress_fast_continue()
886 streamPtr->dictSize = 64 * KB; in LZ4_compress_fast_continue()
897 if ((streamPtr->dictSize < 64 * KB) && in LZ4_compress_fast_continue()
918 if ((streamPtr->dictSize < 64 * KB) && in LZ4_compress_fast_continue()