Home
last modified time | relevance | path

Searched refs:ilimit (Results 1 - 8 of 8) sorted by relevance

/kernel/linux/linux-6.6/lib/zstd/compress/
H A Dzstd_fast.c109 const BYTE* const ilimit = iend - HASH_READ_SIZE; in ZSTD_compressBlock_fast_noDict_generic() local
159 if (ip3 >= ilimit) { in ZSTD_compressBlock_fast_noDict_generic()
250 } while (ip3 < ilimit); in ZSTD_compressBlock_fast_noDict_generic()
296 if (ip0 <= ilimit) { in ZSTD_compressBlock_fast_noDict_generic()
303 while ( (ip0 <= ilimit) && (MEM_read32(ip0) == MEM_read32(ip0 - rep_offset2)) ) { in ZSTD_compressBlock_fast_noDict_generic()
388 const BYTE* const ilimit = iend - HASH_READ_SIZE; in ZSTD_compressBlock_fast_dictMatchState_generic() local
425 while (ip < ilimit) { /* < instead of <=, because repcode check at (ip+1) */ in ZSTD_compressBlock_fast_dictMatchState_generic()
484 if (ip <= ilimit) { in ZSTD_compressBlock_fast_dictMatchState_generic()
491 while (ip <= ilimit) { in ZSTD_compressBlock_fast_dictMatchState_generic()
571 const BYTE* const ilimit in ZSTD_compressBlock_fast_extDict_generic() local
[all...]
H A Dzstd_double_fast.c68 const BYTE* const ilimit = iend - HASH_READ_SIZE; in ZSTD_compressBlock_doubleFast_noDict_generic() local
113 if (ip1 > ilimit) { in ZSTD_compressBlock_doubleFast_noDict_generic()
175 } while (ip1 <= ilimit); in ZSTD_compressBlock_doubleFast_noDict_generic()
227 if (ip <= ilimit) { in ZSTD_compressBlock_doubleFast_noDict_generic()
238 while ( (ip <= ilimit) in ZSTD_compressBlock_doubleFast_noDict_generic()
276 const BYTE* const ilimit = iend - HASH_READ_SIZE; in ZSTD_compressBlock_doubleFast_dictMatchState_generic() local
307 while (ip < ilimit) { /* < instead of <=, because repcode check at (ip+1) */ in ZSTD_compressBlock_doubleFast_dictMatchState_generic()
429 if (ip <= ilimit) { in ZSTD_compressBlock_doubleFast_dictMatchState_generic()
440 while (ip <= ilimit) { in ZSTD_compressBlock_doubleFast_dictMatchState_generic()
461 } /* while (ip < ilimit) */ in ZSTD_compressBlock_doubleFast_dictMatchState_generic()
544 const BYTE* const ilimit = iend - 8; ZSTD_compressBlock_doubleFast_extDict_generic() local
[all...]
H A Dzstd_lazy.c1487 const BYTE* const ilimit = (searchMethod == search_rowHash) ? iend - 8 - ZSTD_ROW_HASH_CACHE_SIZE : iend - 8; in ZSTD_compressBlock_lazy_generic() local
1528 ms->nextToUpdate, ilimit); in ZSTD_compressBlock_lazy_generic()
1538 while (ip < ilimit) { in ZSTD_compressBlock_lazy_generic()
1578 while (ip<ilimit) { in ZSTD_compressBlock_lazy_generic()
1614 if ((depth==2) && (ip<ilimit)) { in ZSTD_compressBlock_lazy_generic()
1679 while (ip <= ilimit) { in ZSTD_compressBlock_lazy_generic()
1700 while ( ((ip <= ilimit) & (offset_2>0)) in ZSTD_compressBlock_lazy_generic()
1874 const BYTE* const ilimit = searchMethod == search_rowHash ? iend - 8 - ZSTD_ROW_HASH_CACHE_SIZE : iend - 8; in ZSTD_compressBlock_lazy_extDict_generic() local
1894 ms->nextToUpdate, ilimit); in ZSTD_compressBlock_lazy_extDict_generic()
1904 while (ip < ilimit) { in ZSTD_compressBlock_lazy_extDict_generic()
[all...]
H A Dzstd_ldm.c341 BYTE const* const ilimit = iend - HASH_READ_SIZE; in ZSTD_ldm_generateSequences_internal() local
360 while (ip < ilimit) { in ZSTD_ldm_generateSequences_internal()
365 hashed = ZSTD_ldm_gear_feed(&hashState, ip, ilimit - ip, in ZSTD_ldm_generateSequences_internal()
H A Dzstd_opt.c1049 const BYTE* const ilimit = iend - 8; in ZSTD_compressBlock_opt_generic() local
1077 while (ip < ilimit) { in ZSTD_compressBlock_opt_generic()
1185 if (inr > ilimit) continue; in ZSTD_compressBlock_opt_generic()
1318 } /* while (ip < ilimit) */ in ZSTD_compressBlock_opt_generic()
/kernel/linux/linux-5.10/lib/zstd/
H A Dcompress.c1020 const BYTE *const ilimit = iend - HASH_READ_SIZE; in ZSTD_compressBlock_fast_generic() local
1035 while (ip < ilimit) { /* < instead of <=, because repcode check at (ip+1) */ in ZSTD_compressBlock_fast_generic()
1070 if (ip <= ilimit) { in ZSTD_compressBlock_fast_generic()
1075 while ((ip <= ilimit) && ((offset_2 > 0) & (ZSTD_read32(ip) == ZSTD_read32(ip - offset_2)))) { in ZSTD_compressBlock_fast_generic()
1132 const BYTE *const ilimit = iend - 8; in ZSTD_compressBlock_fast_extDict_generic() local
1136 while (ip < ilimit) { /* < instead of <=, because (ip+1) */ in ZSTD_compressBlock_fast_extDict_generic()
1180 if (ip <= ilimit) { in ZSTD_compressBlock_fast_extDict_generic()
1185 while (ip <= ilimit) { in ZSTD_compressBlock_fast_extDict_generic()
1268 const BYTE *const ilimit = iend - HASH_READ_SIZE; in ZSTD_compressBlock_doubleFast_generic() local
1283 while (ip < ilimit) { /* < instea in ZSTD_compressBlock_doubleFast_generic()
1413 const BYTE *const ilimit = iend - 8; ZSTD_compressBlock_doubleFast_extDict_generic() local
1904 const BYTE *const ilimit = iend - 8; ZSTD_compressBlock_lazy_generic() local
2065 const BYTE *const ilimit = iend - 8; ZSTD_compressBlock_lazy_extDict_generic() local
[all...]
H A Dzstd_opt.h414 const BYTE *const ilimit = iend - 8; in ZSTD_compressBlock_opt_generic() local
439 while (ip < ilimit) { in ZSTD_compressBlock_opt_generic()
535 if (inr > ilimit) /* last match must start at a minimum distance of 8 from oend */ in ZSTD_compressBlock_opt_generic()
707 const BYTE *const ilimit = iend - 8; in ZSTD_compressBlock_opt_extDict_generic() local
737 while (ip < ilimit) { in ZSTD_compressBlock_opt_extDict_generic()
843 if (inr > ilimit) /* last match must start at a minimum distance of 8 from oend */ in ZSTD_compressBlock_opt_extDict_generic()
/kernel/linux/linux-6.6/lib/zstd/decompress/
H A Dhuf_decompress.c151 BYTE const* ilimit; member
167 const BYTE* const ilimit = (const BYTE*)src + 6 + 8; in HUF_DecompressAsmArgs_init() local
200 * length1 must be >= 16 so that ip[0] >= ilimit before the loop in HUF_DecompressAsmArgs_init()
235 /* If ip[] >= ilimit, it is guaranteed to be safe to in HUF_DecompressAsmArgs_init()
239 args->ilimit = ilimit; in HUF_DecompressAsmArgs_init()
683 assert(args.ip[0] >= args.ilimit); in HUF_decompress4X1_usingDTable_internal_bmi2_asm()
686 /* Our loop guarantees that ip[] >= ilimit and that we haven't in HUF_decompress4X1_usingDTable_internal_bmi2_asm()
1397 assert(args.ip[0] >= args.ilimit); in HUF_decompress4X2_usingDTable_internal_bmi2_asm()

Completed in 20 milliseconds