Lines Matching refs:iend

1286     const BYTE* const iend = istart + hbSize;  in FSEv05_readNCount()  local
1312 if (ip < iend-5) { in FSEv05_readNCount()
1328 if ((ip <= iend-7) || (ip + (bitCount>>3) <= iend-4)) { in FSEv05_readNCount()
1358 if ((ip <= iend-7) || (ip + (bitCount>>3) <= iend-4)) { in FSEv05_readNCount()
1362 bitCount -= (int)(8 * (iend - 4 - ip)); in FSEv05_readNCount()
1363 ip = iend - 4; in FSEv05_readNCount()
3003 const BYTE* const iend = istart + srcSize; in ZSTDv05_decodeSeqHeaders() local
3016 if (ip >= iend) return ERROR(srcSize_wrong); in ZSTDv05_decodeSeqHeaders()
3020 if (ip >= iend) return ERROR(srcSize_wrong); in ZSTDv05_decodeSeqHeaders()
3025 if (ip+3 > iend) return ERROR(srcSize_wrong); in ZSTDv05_decodeSeqHeaders()
3030 if (ip+2 > iend) return ERROR(srcSize_wrong); in ZSTDv05_decodeSeqHeaders()
3040 …if (ip > iend-3) return ERROR(srcSize_wrong); /* min : all 3 are "raw", hence no header, but at le… in ZSTDv05_decodeSeqHeaders()
3064 headerSize = FSEv05_readNCount(norm, &max, &LLlog, ip, iend-ip); in ZSTDv05_decodeSeqHeaders()
3075 …if (ip > iend-2) return ERROR(srcSize_wrong); /* min : "raw", hence no header, but at least xxLo… in ZSTDv05_decodeSeqHeaders()
3088 headerSize = FSEv05_readNCount(norm, &max, &Offlog, ip, iend-ip); in ZSTDv05_decodeSeqHeaders()
3099 …if (ip > iend-2) return ERROR(srcSize_wrong); /* min : "raw", hence no header, but at least xxLog … in ZSTDv05_decodeSeqHeaders()
3112 headerSize = FSEv05_readNCount(norm, &max, &MLlog, ip, iend-ip); in ZSTDv05_decodeSeqHeaders()
3308 const BYTE* const iend = ip + seqSize; in ZSTDv05_decompressSequences() local
3341 errorCode = BITv05_initDStream(&(seqState.DStream), ip, iend-ip); in ZSTDv05_decompressSequences()
3421 const BYTE* iend = ip + srcSize; in ZSTDv05_decompress_continueDCtx() local
3444 size_t cBlockSize = ZSTDv05_getcBlockSize(ip, iend-ip, &blockProperties); in ZSTDv05_decompress_continueDCtx()
3891 const char* const iend = istart + *srcSizePtr; in ZBUFFv05_decompressContinue() local
3973 if ((size_t)(iend-ip) >= neededInSize) { in ZBUFFv05_decompressContinue()
3985 if (ip==iend) { notDone = 0; break; } /* no more input */ in ZBUFFv05_decompressContinue()
3995 loadedSize = ZBUFFv05_limitCopy(zbc->inBuff + zbc->inPos, toLoad, ip, iend-ip); in ZBUFFv05_decompressContinue()