Lines Matching refs:oend
324 BYTE* const oend = (BYTE*)decodedBuffer + COMPRESSIBLE_NOISE_LENGTH;
336 oSize = (size_t)(oend-op);
340 if (op>oend) { DISPLAY("decompression write overflow \n"); goto _output_error; }
404 BYTE* const oend = (BYTE*)decodedBuffer + COMPRESSIBLE_NOISE_LENGTH;
408 size_t oSize = (size_t)(oend-op);
443 BYTE* const oend = ostart + COMPRESSIBLE_NOISE_LENGTH;
451 size_t oSize = (size_t)(oend-op);
770 BYTE* const oend = (BYTE*)decodedBuffer + COMPRESSIBLE_NOISE_LENGTH;
784 size_t oSize = (size_t)(oend-op);
803 size_t oSize = (size_t)(oend-op);
885 BYTE* const oend = op + dstCapacity;
901 size_t const oSizeMax = MIN(oSizeCand, (size_t)(oend-op));
902 int const sentinelTest = (op + oSizeMax < oend);
941 if (op == oend) return LZ4F_ERROR_GENERIC; /* can theoretically happen with bogus data */
945 if ( (op == oend) /* no more room for output; can happen with bogus input */
1064 BYTE* const oend = op + (neverFlush ? LZ4F_compressFrameBound(srcSize, prefsPtr) : compressedBufferSize); /* when flushes are possible, can't guarantee a max compressed size */
1068 { size_t const fhSize = LZ4F_compressBegin(cCtx, op, (size_t)(oend-op), prefsPtr);
1090 size_t const flushedSize = LZ4F_uncompressedUpdate(cCtx, op, (size_t)(oend-op), ip, uSize, &cOptions);
1108 size_t const flushSize = LZ4F_flush(cCtx, op, (size_t)(oend-op), &cOptions);
1123 CHECK(op>=oend, "LZ4F_compressFrameBound overflow");