Lines Matching refs:oend
487 const BYTE *const oend = (BYTE *) dest + osize; in LZ4_compressCtx() local
544 (length >> 8) > oend) in LZ4_compressCtx()
594 if unlikely(op + (1 + LASTLITERALS) + (len >> 8) > oend) in LZ4_compressCtx()
637 oend) in LZ4_compressCtx()
682 const BYTE *const oend = (BYTE *) dest + osize; in LZ4_compress64kCtx() local
737 (length >> 8) > oend) in LZ4_compress64kCtx()
787 if unlikely(op + (1 + LASTLITERALS) + (len >> 8) > oend) in LZ4_compress64kCtx()
830 oend) in LZ4_compress64kCtx()
907 BYTE *const oend = op + maxOutputSize; in LZ4_uncompress_unknownOutputSize() local
934 if ((cpy > oend - COPYLENGTH) || in LZ4_uncompress_unknownOutputSize()
936 if (cpy > oend) in LZ4_uncompress_unknownOutputSize()
995 if (cpy > oend - COPYLENGTH) { in LZ4_uncompress_unknownOutputSize()
996 if (cpy > oend) in LZ4_uncompress_unknownOutputSize()
1002 LZ4_SECURECOPY(ref, op, (oend - COPYLENGTH)); in LZ4_uncompress_unknownOutputSize()
1006 if (op == oend) in LZ4_uncompress_unknownOutputSize()