Lines Matching refs:oend
531 const BYTE *const oend = (BYTE *) dest + osize; in LZ4_compressCtx() local
588 (length >> 8) > oend) in LZ4_compressCtx()
638 if unlikely(op + (1 + LASTLITERALS) + (len >> 8) > oend) in LZ4_compressCtx()
681 oend) in LZ4_compressCtx()
726 const BYTE *const oend = (BYTE *) dest + osize; in LZ4_compress64kCtx() local
781 (length >> 8) > oend) in LZ4_compress64kCtx()
831 if unlikely(op + (1 + LASTLITERALS) + (len >> 8) > oend) in LZ4_compress64kCtx()
874 oend) in LZ4_compress64kCtx()
940 BYTE *const oend = op + osize; in real_LZ4_uncompress() local
966 if unlikely(cpy > oend - COPYLENGTH) { in real_LZ4_uncompress()
967 if (cpy != oend) in real_LZ4_uncompress()
1016 if (cpy > oend - COPYLENGTH) { in real_LZ4_uncompress()
1017 if (cpy > oend) in real_LZ4_uncompress()
1023 LZ4_SECURECOPY(ref, op, (oend - COPYLENGTH)); in real_LZ4_uncompress()
1027 if (op == oend) in real_LZ4_uncompress()
1057 BYTE *const oend = op + maxOutputSize; in LZ4_uncompress_unknownOutputSize() local
1084 if ((cpy > oend - COPYLENGTH) || in LZ4_uncompress_unknownOutputSize()
1086 if (cpy > oend) in LZ4_uncompress_unknownOutputSize()
1145 if (cpy > oend - COPYLENGTH) { in LZ4_uncompress_unknownOutputSize()
1146 if (cpy > oend) in LZ4_uncompress_unknownOutputSize()
1152 LZ4_SECURECOPY(ref, op, (oend - COPYLENGTH)); in LZ4_uncompress_unknownOutputSize()
1156 if (op == oend) in LZ4_uncompress_unknownOutputSize()