Lines Matching defs:oend
838 BYTE* const oend = dstCapacity != 0 ? ostart + dstCapacity : ostart;
861 BYTE* oBlockEnd = oend;
894 /* Use oend instead of oBlockEnd because this function is safe to overlap. It uses memmove. */
895 decodedSize = ZSTD_copyRawBlock(op, (size_t)(oend-op), ip, cBlockSize);
1850 ZSTD_DStream* zds, char** op, char* oend,
1866 size_t const dstSize = isSkipFrame ? 0 : (size_t)(oend - *op);
1872 assert(*op <= oend);
1886 char* const oend = output->size != 0 ? dst + output->size : dst;
1945 && (U64)(size_t)(oend-op) >= zds->fParams.frameContentSize) {
1949 size_t const decompressedSize = ZSTD_decompress_usingDDict(zds, op, (size_t)(oend-op), istart, cSize, ZSTD_getDDict(zds));
1964 && (U64)(size_t)(oend-op) < zds->fParams.frameContentSize) {
2036 FORWARD_IF_ERROR(ZSTD_decompressContinueStream(zds, &op, oend, ip, neededInSize), "");
2066 FORWARD_IF_ERROR(ZSTD_decompressContinueStream(zds, &op, oend, zds->inBuff, neededInSize), "");
2072 size_t const flushedSize = ZSTD_limitCopy(op, (size_t)(oend-op), zds->outBuff + zds->outStart, toFlushSize);
2105 RETURN_ERROR_IF(op==oend, dstSize_tooSmall, "");