Lines Matching refs:oend
60 BYTE * const oend = op + osize; in lz4_uncompress() local
83 if (unlikely(cpy > oend - COPYLENGTH)) { in lz4_uncompress()
88 if (cpy != oend) in lz4_uncompress()
138 if (cpy > (oend - COPYLENGTH)) { in lz4_uncompress()
141 if (cpy > oend) in lz4_uncompress()
143 if ((ref + COPYLENGTH) > oend || in lz4_uncompress()
144 (op + COPYLENGTH) > oend) in lz4_uncompress()
146 LZ4_SECURECOPY(ref, op, (oend - COPYLENGTH)); in lz4_uncompress()
154 if (op == oend) in lz4_uncompress()
178 BYTE * const oend = op + maxoutputsize; in lz4_uncompress_unknownoutputsize() local
201 if ((cpy > oend - COPYLENGTH) || in lz4_uncompress_unknownoutputsize()
204 if (cpy > oend) in lz4_uncompress_unknownoutputsize()
266 if (cpy > oend - COPYLENGTH) { in lz4_uncompress_unknownoutputsize()
267 if (cpy > oend) in lz4_uncompress_unknownoutputsize()
270 LZ4_SECURECOPY(ref, op, (oend - COPYLENGTH)); in lz4_uncompress_unknownoutputsize()
278 if (op == oend) in lz4_uncompress_unknownoutputsize()