Lines Matching refs:iend
486 const BYTE *const iend = ip + isize; in LZ4_compressCtx() local
488 const BYTE *const mflimit = iend - MFLIMIT; in LZ4_compressCtx()
489 #define matchlimit (iend - LASTLITERALS) in LZ4_compressCtx()
635 int lastRun = iend - anchor; in LZ4_compressCtx()
648 (void) memcpy(op, anchor, iend - anchor); in LZ4_compressCtx()
649 op += iend - anchor; in LZ4_compressCtx()
681 const BYTE *const iend = ip + isize; in LZ4_compress64kCtx() local
683 const BYTE *const mflimit = iend - MFLIMIT; in LZ4_compress64kCtx()
684 #define matchlimit (iend - LASTLITERALS) in LZ4_compress64kCtx()
828 int lastRun = iend - anchor; in LZ4_compress64kCtx()
840 (void) memcpy(op, anchor, iend - anchor); in LZ4_compress64kCtx()
841 op += iend - anchor; in LZ4_compress64kCtx()
903 const BYTE *const iend = ip + isize; in LZ4_uncompress_unknownOutputSize() local
916 while (ip < iend) { in LZ4_uncompress_unknownOutputSize()
924 while ((ip < iend) && (s == 255)) { in LZ4_uncompress_unknownOutputSize()
935 (ip + length > iend - COPYLENGTH)) { in LZ4_uncompress_unknownOutputSize()
939 if (ip + length != iend) in LZ4_uncompress_unknownOutputSize()
966 while (ip < iend) { in LZ4_uncompress_unknownOutputSize()