Lines Matching refs:iend
941 const BYTE* const iend = ip + inputSize;
942 const BYTE* const mflimitPlusOne = iend - MFLIMIT + 1;
943 const BYTE* const matchlimit = iend - LASTLITERALS;
1268 { size_t lastRun = (size_t)(iend - anchor);
1953 const BYTE* const iend = ip + srcSize;
1965 const BYTE* const shortiend = iend - 14 /*maxLL*/ - 2 /*offset*/;
1999 assert(ip < iend);
2005 size_t const addl = read_variable_length(&ip, iend-RUN_MASK, 1);
2014 if ((cpy>oend-32) || (ip+length>iend-32)) { goto safe_literal_copy; }
2021 if (ip > iend-(16 + 1/*max lit + offset + nextToken*/)) { goto safe_literal_copy; }
2036 size_t const addl = read_variable_length(&ip, iend - LASTLITERALS + 1, 0);
2115 assert(ip < iend);
2162 size_t const addl = read_variable_length(&ip, iend-RUN_MASK, 1);
2175 if ((cpy>oend-MFLIMIT) || (ip+length>iend-(2+1+LASTLITERALS))) {
2188 DEBUGLOG(7, "partialDecoding: remaining space in srcBuffer : %i", (int)(iend - ip));
2192 if (ip+length > iend) {
2193 length = (size_t)(iend-ip);
2208 if ((ip+length != iend) || (cpy > oend)) {
2210 DEBUGLOG(6, "ip(%p) + length(%i) = %p != iend (%p)", ip, (int)length, ip+length, iend);
2223 if (!partialDecoding || (cpy == oend) || (ip >= (iend-2))) {
2240 size_t const addl = read_variable_length(&ip, iend - LASTLITERALS + 1, 0);