Lines Matching refs:iend

482     const BYTE* const iend = istart + hbSize;  in FSE_readNCount()  local
511 if (ip < iend-5) in FSE_readNCount()
532 if ((ip <= iend-7) || (ip + (bitCount>>3) <= iend-4)) in FSE_readNCount()
568 if ((ip <= iend-7) || (ip + (bitCount>>3) <= iend-4)) in FSE_readNCount()
575 bitCount -= (int)(8 * (iend - 4 - ip)); in FSE_readNCount()
576 ip = iend - 4; in FSE_readNCount()
1578 const BYTE* const iend = istart + srcSize; in ZSTDv01_decodeSeqHeaders() local
1608 …if (ip > iend-3) return ERROR(srcSize_wrong); /* min : all 3 are "raw", hence no header, but at le… in ZSTDv01_decodeSeqHeaders()
1626 headerSize = FSE_readNCount(norm, &max, &LLlog, ip, iend-ip); in ZSTDv01_decodeSeqHeaders()
1637 …if (ip > iend-2) return ERROR(srcSize_wrong); /* min : "raw", hence no header, but at least xxLog … in ZSTDv01_decodeSeqHeaders()
1644 headerSize = FSE_readNCount(norm, &max, &Offlog, ip, iend-ip); in ZSTDv01_decodeSeqHeaders()
1655 …if (ip > iend-2) return ERROR(srcSize_wrong); /* min : "raw", hence no header, but at least xxLog … in ZSTDv01_decodeSeqHeaders()
1662 headerSize = FSE_readNCount(norm, &max, &MLlog, ip, iend-ip); in ZSTDv01_decodeSeqHeaders()
1854 const BYTE* const iend = ip + seqSize; in ZSTD_decompressSequences() local
1871 ip, iend-ip); in ZSTD_decompressSequences()
1884 errorCode = FSE_initDStream(&(seqState.DStream), ip, iend-ip); in ZSTD_decompressSequences()
1943 const BYTE* iend = ip + srcSize; in ZSTDv01_decompressDCtx() local
1961 size_t blockSize = ZSTDv01_getcBlockSize(ip, iend-ip, &blockProperties); in ZSTDv01_decompressDCtx()