Lines Matching +full:64 +full:kb
43 static const int LZ4_64Klimit = ((64 * KB) + (MFLIMIT - 1));
71 return (U32)(((sequence << 24) * prime5bytes) >> (64 - hashLog)); in LZ4_hash5()
75 return (U32)(((sequence >> 24) * prime8bytes) >> (64 - hashLog)); in LZ4_hash5()
230 /* Size too large (not within 64K limit) */ in LZ4_compress_generic()
555 /* Size too large (not within 64K limit) */ in LZ4_compress_destSize_generic()
795 if ((dictEnd - p) > 64 * KB) in LZ4_loadDict()
796 p = dictEnd - 64 * KB; in LZ4_loadDict()
797 dict->currentOffset += 64 * KB; in LZ4_loadDict()
819 U32 const delta = LZ4_dict->currentOffset - 64 * KB; in LZ4_renormDictT()
829 LZ4_dict->currentOffset = 64 * KB; in LZ4_renormDictT()
830 if (LZ4_dict->dictSize > 64 * KB) in LZ4_renormDictT()
831 LZ4_dict->dictSize = 64 * KB; in LZ4_renormDictT()
841 if ((U32)dictSize > 64 * KB) { in LZ4_saveDict()
842 /* useless to define a dictionary > 64 * KB */ in LZ4_saveDict()
843 dictSize = 64 * KB; in LZ4_saveDict()
886 if (streamPtr->dictSize > 64 * KB) in LZ4_compress_fast_continue()
887 streamPtr->dictSize = 64 * KB; in LZ4_compress_fast_continue()
898 if ((streamPtr->dictSize < 64 * KB) && in LZ4_compress_fast_continue()
919 if ((streamPtr->dictSize < 64 * KB) && in LZ4_compress_fast_continue()