Lines Matching defs:oend
87 BYTE * const oend = op + outputSize;
100 const BYTE *const shortoend = oend -
224 if (((endOnInput) && ((cpy > oend - MFLIMIT)
226 || ((!endOnInput) && (cpy > oend - WILDCOPYLENGTH))) {
228 if (cpy > oend) {
233 cpy = oend;
234 length = oend - op;
247 && (cpy != oend)) {
257 || (cpy > oend))) {
279 if (!partialDecoding || (cpy == oend) || (ip >= (iend - 2)))
308 assert(oend > op);
309 assert(oend - op >= 4);
338 if (unlikely(op + length > oend - LASTLITERALS)) {
342 length = min(length, (size_t)(oend - op));
385 assert(op <= oend);
387 (cpy > oend - MATCH_SAFEGUARD_DISTANCE)) {
388 size_t const mlen = min(length, (size_t)(oend - op));
400 if (op == oend)
420 if (unlikely(cpy > oend - MATCH_SAFEGUARD_DISTANCE)) {
421 BYTE * const oCopyLimit = oend - (WILDCOPYLENGTH - 1);
423 if (cpy > oend - LASTLITERALS) {