Lines Matching refs:iend
530 const BYTE *const iend = ip + isize; in LZ4_compressCtx() local
532 const BYTE *const mflimit = iend - MFLIMIT; in LZ4_compressCtx()
533 #define matchlimit (iend - LASTLITERALS) in LZ4_compressCtx()
679 int lastRun = iend - anchor; in LZ4_compressCtx()
692 (void) memcpy(op, anchor, iend - anchor); in LZ4_compressCtx()
693 op += iend - anchor; in LZ4_compressCtx()
725 const BYTE *const iend = ip + isize; in LZ4_compress64kCtx() local
727 const BYTE *const mflimit = iend - MFLIMIT; in LZ4_compress64kCtx()
728 #define matchlimit (iend - LASTLITERALS) in LZ4_compress64kCtx()
872 int lastRun = iend - anchor; in LZ4_compress64kCtx()
884 (void) memcpy(op, anchor, iend - anchor); in LZ4_compress64kCtx()
885 op += iend - anchor; in LZ4_compress64kCtx()
1053 const BYTE *const iend = ip + isize; in LZ4_uncompress_unknownOutputSize() local
1066 while (ip < iend) { in LZ4_uncompress_unknownOutputSize()
1074 while ((ip < iend) && (s == 255)) { in LZ4_uncompress_unknownOutputSize()
1085 (ip + length > iend - COPYLENGTH)) { in LZ4_uncompress_unknownOutputSize()
1089 if (ip + length != iend) in LZ4_uncompress_unknownOutputSize()
1116 while (ip < iend) { in LZ4_uncompress_unknownOutputSize()