Lines Matching refs:iend
1160 const BYTE* const iend = istart + hbSize; in FSE_readNCount() local
1189 if (ip < iend-5) in FSE_readNCount()
1210 if ((ip <= iend-7) || (ip + (bitCount>>3) <= iend-4)) in FSE_readNCount()
1246 if ((ip <= iend-7) || (ip + (bitCount>>3) <= iend-4)) in FSE_readNCount()
1253 bitCount -= (int)(8 * (iend - 4 - ip)); in FSE_readNCount()
1254 ip = iend - 4; in FSE_readNCount()
2693 const BYTE* const iend = istart + srcSize; in ZSTD_decodeSeqHeaders() local
2723 …if (ip > iend-3) return ERROR(srcSize_wrong); /* min : all 3 are "raw", hence no header, but at le… in ZSTD_decodeSeqHeaders()
2741 headerSize = FSE_readNCount(norm, &max, &LLlog, ip, iend-ip); in ZSTD_decodeSeqHeaders()
2752 …if (ip > iend-2) return ERROR(srcSize_wrong); /* min : "raw", hence no header, but at least xxLo… in ZSTD_decodeSeqHeaders()
2760 headerSize = FSE_readNCount(norm, &max, &Offlog, ip, iend-ip); in ZSTD_decodeSeqHeaders()
2771 …if (ip > iend-2) return ERROR(srcSize_wrong); /* min : "raw", hence no header, but at least xxLog … in ZSTD_decodeSeqHeaders()
2778 headerSize = FSE_readNCount(norm, &max, &MLlog, ip, iend-ip); in ZSTD_decodeSeqHeaders()
2956 const BYTE* const iend = ip + seqSize; in ZSTD_decompressSequences() local
2975 ip, iend-ip); in ZSTD_decompressSequences()
2989 errorCode = BIT_initDStream(&(seqState.DStream), ip, iend-ip); in ZSTD_decompressSequences()
3062 const BYTE* iend = ip + srcSize; in ZSTD_decompress_usingDict() local
3099 size_t cBlockSize = ZSTD_getcBlockSize(ip, iend-ip, &blockProperties); in ZSTD_decompress_usingDict()
3426 const char* const iend = istart + *srcSizePtr; in ZBUFF_decompressContinue() local
3511 if ((size_t)(iend-ip) >= neededInSize) in ZBUFF_decompressContinue()
3524 if (ip==iend) { notDone = 0; break; } /* no more input */ in ZBUFF_decompressContinue()
3534 loadedSize = ZBUFF_limitCopy(zbc->inBuff + zbc->inPos, toLoad, ip, iend-ip); in ZBUFF_decompressContinue()