Lines Matching refs:iend

1172     const BYTE* const iend = istart + hbSize;  in FSE_readNCount()  local
1201 if (ip < iend-5) in FSE_readNCount()
1222 if ((ip <= iend-7) || (ip + (bitCount>>3) <= iend-4)) in FSE_readNCount()
1258 if ((ip <= iend-7) || (ip + (bitCount>>3) <= iend-4)) in FSE_readNCount()
1265 bitCount -= (int)(8 * (iend - 4 - ip)); in FSE_readNCount()
1266 ip = iend - 4; in FSE_readNCount()
2551 const BYTE* const iend = istart + srcSize; in ZSTD_decodeSeqHeaders() local
2581 …if (ip > iend-3) return ERROR(srcSize_wrong); /* min : all 3 are "raw", hence no header, but at le… in ZSTD_decodeSeqHeaders()
2599 headerSize = FSE_readNCount(norm, &max, &LLlog, ip, iend-ip); in ZSTD_decodeSeqHeaders()
2610 …if (ip > iend-2) return ERROR(srcSize_wrong); /* min : "raw", hence no header, but at least xxLo… in ZSTD_decodeSeqHeaders()
2618 headerSize = FSE_readNCount(norm, &max, &Offlog, ip, iend-ip); in ZSTD_decodeSeqHeaders()
2629 …if (ip > iend-2) return ERROR(srcSize_wrong); /* min : "raw", hence no header, but at least xxLog … in ZSTD_decodeSeqHeaders()
2636 headerSize = FSE_readNCount(norm, &max, &MLlog, ip, iend-ip); in ZSTD_decodeSeqHeaders()
2804 const BYTE* const iend = ip + seqSize; in ZSTD_decompressSequences() local
2821 ip, iend-ip); in ZSTD_decompressSequences()
2834 errorCode = BIT_initDStream(&(seqState.DStream), ip, iend-ip); in ZSTD_decompressSequences()
2889 const BYTE* iend = ip + srcSize; in ZSTD_decompressDCtx() local
2907 size_t cBlockSize = ZSTD_getcBlockSize(ip, iend-ip, &blockProperties); in ZSTD_decompressDCtx()