Home
last modified time | relevance | path

Searched refs:oend (Results 1 – 5 of 5) sorted by relevance

/lib/
A Dlz4.c162 BYTE * const oend = op + outputSize; in LZ4_decompress_generic() local
301 if (cpy > oend) { in LZ4_decompress_generic()
306 cpy = oend; in LZ4_decompress_generic()
307 length = oend - op; in LZ4_decompress_generic()
320 && (cpy != oend)) { in LZ4_decompress_generic()
330 || (cpy > oend))) { in LZ4_decompress_generic()
377 assert(oend > op); in LZ4_decompress_generic()
378 assert(oend - op >= 4); in LZ4_decompress_generic()
454 assert(op <= oend); in LZ4_decompress_generic()
469 if (op == oend) in LZ4_decompress_generic()
[all …]
/lib/zstd/decompress/
A Dzstd_decompress_block.c786 BYTE* const oend = op + length; in ZSTD_safecopy() local
793 while (op < oend) *op++ = *ip++; in ZSTD_safecopy()
802 assert(op <= oend); in ZSTD_safecopy()
805 if (oend <= oend_w) { in ZSTD_safecopy()
812 assert(oend > oend_w); in ZSTD_safecopy()
818 while (op < oend) *op++ = *ip++; in ZSTD_safecopy()
826 BYTE* const oend = op + length; in ZSTD_safecopyDstBeforeSrc() local
841 while (op < oend) *op++ = *ip++; in ZSTD_safecopyDstBeforeSrc()
854 BYTE* const oend, seq_t sequence, in ZSTD_execSequenceEnd() argument
945 BYTE* const oend, seq_t sequence, in ZSTD_execSequence() argument
[all …]
A Dhuf_decompress.c149 BYTE* oend; member
166 BYTE* const oend = (BYTE*)dst + dstSize; in HUF_DecompressAsmArgs_init() local
217 if (args->op[3] >= oend) in HUF_DecompressAsmArgs_init()
238 args->oend = oend; in HUF_DecompressAsmArgs_init()
526 BYTE* const oend = op + dstSize; in HUF_decompress1X1_usingDTable_internal_body() local
553 BYTE* const oend = ostart + dstSize; in HUF_decompress4X1_usingDTable_internal_body() local
554 BYTE* const olimit = oend - 3; in HUF_decompress4X1_usingDTable_internal_body()
687 assert(args.op[3] <= oend); in HUF_decompress4X1_usingDTable_internal_bmi2_asm()
700 segmentEnd = oend; in HUF_decompress4X1_usingDTable_internal_bmi2_asm()
1394 assert(args.op[3] <= oend); in HUF_decompress4X2_usingDTable_internal_bmi2_asm()
[all …]
A Dzstd_decompress.c825 BYTE* const oend = dstCapacity != 0 ? ostart + dstCapacity : ostart; in ZSTD_decompressFrame() local
863 decodedSize = ZSTD_copyRawBlock(op, (size_t)(oend-op), ip, cBlockSize); in ZSTD_decompressFrame()
866 decodedSize = ZSTD_setRleBlock(op, (size_t)(oend-op), *ip, blockProperties.origSize); in ZSTD_decompressFrame()
1805 ZSTD_DStream* zds, char** op, char* oend, in ZSTD_decompressContinueStream() argument
1821 size_t const dstSize = isSkipFrame ? 0 : (size_t)(oend - *op); in ZSTD_decompressContinueStream()
1827 assert(*op <= oend); in ZSTD_decompressContinueStream()
1841 char* const oend = output->size != 0 ? dst + output->size : dst; in ZSTD_decompressStream() local
1900 && (U64)(size_t)(oend-op) >= zds->fParams.frameContentSize) { in ZSTD_decompressStream()
1919 && (U64)(size_t)(oend-op) < zds->fParams.frameContentSize) { in ZSTD_decompressStream()
1991 … FORWARD_IF_ERROR(ZSTD_decompressContinueStream(zds, &op, oend, ip, neededInSize), ""); in ZSTD_decompressStream()
[all …]
/lib/zstd/common/
A Dzstd_internal.h209 BYTE* const oend = op + length; in ZSTD_wildcopy() local
215 } while (op < oend); in ZSTD_wildcopy()
228 while (op < oend); in ZSTD_wildcopy()
238 while (op < oend); in ZSTD_wildcopy()

Completed in 26 milliseconds