Lines Matching defs:oend
166 * oend [in] - The end of the output stream. op[3] must not cross oend.
176 BYTE* oend;
195 BYTE* const oend = ZSTD_maybeNullPtrAdd((BYTE*)dst, dstSize);
250 if (args->op[3] >= oend)
272 args->oend = oend;
578 BYTE* const oend = ZSTD_maybeNullPtrAdd(op, dstSize);
587 HUF_decodeStreamX1(op, &bitD, oend, dt, dtLog);
610 BYTE* const oend = ostart + dstSize;
611 BYTE* const olimit = oend - 3;
641 if (opStart4 > oend) return ERROR(corruption_detected); /* overflow */
649 if ((size_t)(oend - op4) >= sizeof(size_t)) {
686 HUF_decodeStreamX1(op4, &bitD4, oend, dt, dtLog);
724 BYTE* const oend = args->oend;
742 assert(op[stream] <= (stream == 3 ? oend : op[stream + 1]));
749 size_t const oiters = (size_t)(oend - op[3]) / 5;
845 BYTE* const oend = ZSTD_maybeNullPtrAdd((BYTE*)dst, dstSize);
864 assert(args.op[3] <= oend);
876 if (segmentSize <= (size_t)(oend - segmentEnd))
879 segmentEnd = oend;
1362 BYTE* const oend = ZSTD_maybeNullPtrAdd(ostart, dstSize);
1366 HUF_decodeStreamX2(ostart, &bitD, oend, dt, dtd.tableLog);
1391 BYTE* const oend = ostart + dstSize;
1392 BYTE* const olimit = oend - (sizeof(size_t)-1);
1422 if (opStart4 > oend) return ERROR(corruption_detected); /* overflow */
1430 if ((size_t)(oend - op4) >= sizeof(size_t)) {
1489 HUF_decodeStreamX2(op4, &bitD4, oend, dt, dtLog);
1526 BYTE* oend[4];
1535 oend[0] = op[1];
1536 oend[1] = op[2];
1537 oend[2] = op[3];
1538 oend[3] = args->oend;
1550 assert(op[stream] <= oend[stream]);
1570 size_t const oiters = (size_t)(oend[stream] - op[stream]) / 10;
1671 BYTE* const oend = ZSTD_maybeNullPtrAdd((BYTE*)dst, dstSize);
1688 assert(args.op[3] <= oend);
1701 if (segmentSize <= (size_t)(oend - segmentEnd))
1704 segmentEnd = oend;