Lines Matching refs:oend
276 BYTE* const oend = (BYTE*)decodedBuffer + COMPRESSIBLE_NOISE_LENGTH; in basicTests() local
288 oSize = (size_t)(oend-op); in basicTests()
292 if (op>oend) { DISPLAY("decompression write overflow \n"); goto _output_error; } in basicTests()
356 BYTE* const oend = (BYTE*)decodedBuffer + COMPRESSIBLE_NOISE_LENGTH; in basicTests() local
360 size_t oSize = (size_t)(oend-op); in basicTests()
395 BYTE* const oend = ostart + COMPRESSIBLE_NOISE_LENGTH; in basicTests() local
403 size_t oSize = (size_t)(oend-op); in basicTests()
709 BYTE* const oend = (BYTE*)decodedBuffer + COMPRESSIBLE_NOISE_LENGTH; in basicTests() local
723 size_t oSize = (size_t)(oend-op); in basicTests()
742 size_t oSize = (size_t)(oend-op); in basicTests()
824 BYTE* const oend = op + dstCapacity; in test_lz4f_decompression_wBuffers() local
840 size_t const oSizeMax = MIN(oSizeCand, (size_t)(oend-op)); in test_lz4f_decompression_wBuffers()
841 int const sentinelTest = (op + oSizeMax < oend); in test_lz4f_decompression_wBuffers()
879 … if (op == oend) return LZ4F_ERROR_GENERIC; /* can theoretically happen with bogus data */ in test_lz4f_decompression_wBuffers()
883 if ( (op == oend) /* no more room for output; can happen with bogus input */ in test_lz4f_decompression_wBuffers()
1002 …BYTE* const oend = op + (neverFlush ? LZ4F_compressFrameBound(srcSize, prefsPtr) : compressedBuffe… in fuzzerTests() local
1006 { size_t const fhSize = LZ4F_compressBegin(cCtx, op, (size_t)(oend-op), prefsPtr); in fuzzerTests()
1029 size_t const flushSize = LZ4F_flush(cCtx, op, (size_t)(oend-op), &cOptions); in fuzzerTests()
1047 CHECK(op>=oend, "LZ4F_compressFrameBound overflow"); in fuzzerTests()