| /src/lib/libc/citrus/ |
| citrus_prop.c | 359 _citrus_prop_object_t ostart, oend; local 380 _citrus_prop_object_init(&oend, hint->type); 393 errnum = (*readers[hint->type])(ms, &oend); 409 hint->name, ostart.u._func_, oend.u._func_);\ 437 _citrus_prop_object_uninit(&oend);
|
| /src/external/bsd/zstd/dist/tests/ |
| seqgen.c | 53 BYTE* const oend = ostart + out->size; local 59 if (op >= oend) { 74 size_t const setLength = MIN(stream->bytesLeft, (size_t)(oend - op)); 88 if (op >= oend) { 122 BYTE* const oend = ostart + out->size; local 132 while (stream->bytesLeft > 0 && op < oend) { 143 while (stream->bytesLeft > 0 && op < oend) { 154 while (stream->bytesLeft > 0 && op < oend) { 187 BYTE* const oend = ostart + out->size; local 197 while (stream->bytesLeft > 0 && op < oend) { [all...] |
| decodecorpus.c | 819 BYTE* const oend = (BYTE*)frame->dataEnd; local 827 if ((oend-op) < 3 /*max nbSeq Size*/ + 1 /*seqHead */) return ERROR(dstSize_tooSmall); 867 { size_t const NCountSize = FSE_writeNCount(op, oend-op, norm, max, tableLog); /* overflow protected */ 895 { size_t const NCountSize = FSE_writeNCount(op, oend-op, norm, max, tableLog); /* overflow protected */ 925 { size_t const NCountSize = FSE_writeNCount(op, oend-op, norm, max, tableLog); /* overflow protected */ 947 ERR_isError(BIT_initCStream(&blockStream, op, oend-op)),
|
| /src/external/bsd/zstd/dist/contrib/linux-kernel/test/ |
| test.c | 69 char *oend = op + data->compSize; local 88 out.size = MIN(4096, oend - op); 109 oend = op + size; 125 out.size = MIN(4096, oend - op);
|
| /src/external/bsd/zstd/dist/lib/compress/ |
| zstd_compress_sequences.c | 252 const BYTE* const oend = op + dstCapacity; local 279 assert(oend >= op); 280 { size_t const NCountSize = FSE_writeNCount(op, (size_t)(oend - op), wksp->norm, max, tableLog); /* overflow protected */
|
| fse_compress.c | 240 BYTE* const oend = ostart + headerBufferSize; local 268 if ((!writeIsSafe) && (out > oend-2)) 283 if ((!writeIsSafe) && (out > oend - 2)) 305 if ((!writeIsSafe) && (out > oend - 2)) 319 if ((!writeIsSafe) && (out > oend - 2))
|
| zstd_compress_superblock.c | 51 BYTE* const oend = ostart + dstSize; local 79 const size_t cSize = singleStream ? HUF_compress1X_usingCTable(op, (size_t)(oend-op), literals, litSize, hufTable, flags) 80 : HUF_compress4X_usingCTable(op, (size_t)(oend-op), literals, litSize, hufTable, flags); 173 BYTE* const oend = ostart + dstCapacity; local 181 RETURN_ERROR_IF((oend-op) < 3 /*max nbSeq Size*/ + 1 /*seqHead*/, 212 op, (size_t)(oend - op), 276 BYTE* const oend = ostart + dstCapacity; local 282 op, (size_t)(oend-op), 293 op, (size_t)(oend-op), 500 BYTE* const oend = ostart + dstCapacity local [all...] |
| huf_compress.c | 153 BYTE* const oend = ostart + dstSize; local 174 { CHECK_V_F(hSize, FSE_writeNCount(op, (size_t)(oend-op), wksp->norm, maxSymbolValue, tableLog) ); 180 { CHECK_V_F(cSize, FSE_compress_usingCTable(op, (size_t)(oend - op), weightTable, wtSize, wksp->CTable) ); 1064 BYTE* const oend = ostart + dstSize; local 1070 size_t const initErr = HUF_initCStream(&bitC, op, (size_t)(oend-op)); 1176 BYTE* const oend = ostart + dstSize; local 1183 assert(op <= oend); 1184 { CHECK_V_F(cSize, HUF_compress1X_usingCTable_internal(op, (size_t)(oend-op), ip, segmentSize, CTable, flags) ); 1191 assert(op <= oend); 1192 { CHECK_V_F(cSize, HUF_compress1X_usingCTable_internal(op, (size_t)(oend-op), ip, segmentSize, CTable, flags) ) 1342 BYTE* const oend = ostart + dstSize; local [all...] |
| zstdmt_compress.c | 750 BYTE* oend = op + dstBuff.capacity; local 756 size_t const cSize = ZSTD_compressContinue_public(cctx, op, oend-op, ip, chunkSize); 759 op += cSize; assert(op < oend); 776 ZSTD_compressEnd_public(cctx, op, oend-op, ip, lastBlockSize) : 777 ZSTD_compressContinue_public(cctx, op, oend-op, ip, lastBlockSize);
|
| zstd_compress.c | 2759 const BYTE* const oend = dstEnd; local 2772 assert(op <= oend); 2787 op, (size_t)(oend - op), 2802 assert(op <= oend); 2819 op, (size_t)(oend - op), 2834 assert(op <= oend); 2840 DEBUGLOG(5, "Building ML table (remaining space : %i)", (int)(oend-op)); 2849 op, (size_t)(oend - op), 2864 assert(op <= oend); 2896 BYTE* const oend = ostart + dstCapacity local 3706 BYTE* const oend = ostart + sizeof(fseMetadata->fseTablesBuffer); local 5985 char* const oend = (ostart != NULL) ? ostart + output->size : ostart; local [all...] |
| /src/external/bsd/zstd/dist/tests/fuzz/ |
| sequence_compression_api.c | 86 const uint8_t* const oend = (uint8_t*)dst + ZSTD_FUZZ_GENERATED_SRC_MAXSIZE; local 130 if (lastLLSize <= oend - op) {
|
| /src/external/cddl/osnet/dist/uts/common/fs/zfs/ |
| lz4.c | 479 const BYTE *const oend = (BYTE *) dest + osize; local 536 (length >> 8) > oend) 586 if unlikely(op + (1 + LASTLITERALS) + (len >> 8) > oend) 629 oend) 674 const BYTE *const oend = (BYTE *) dest + osize; local 729 (length >> 8) > oend) 779 if unlikely(op + (1 + LASTLITERALS) + (len >> 8) > oend) 822 oend) 899 BYTE *const oend = op + maxOutputSize; local 926 if ((cpy > oend - COPYLENGTH) | [all...] |
| /src/usr.sbin/acpitools/aml/ |
| aml_parse.c | 332 u_int8_t *start, *end, *oend; local 346 oend = env->end; 353 env->end = oend; 1083 u_int8_t *start, *end, *oend; local 1089 oend = env->end; 1101 env->end = oend; 1108 u_int8_t *start, *end, *oend; local 1120 oend = env->end; 1131 env->end = oend; 1132 if ((end < oend) && *(env->dp) == 0xa1) 1143 u_int8_t *start, *end, *oend; local [all...] |
| /src/external/bsd/zstd/dist/lib/common/ |
| zstd_internal.h | 225 BYTE* const oend = op + length; local 231 } while (op < oend); 248 while (op < oend);
|
| /src/external/bsd/zstd/dist/lib/decompress/ |
| huf_decompress.c | 169 * oend [in] - The end of the output stream. op[3] must not cross oend. 179 BYTE* oend; member in struct:__anon8668 198 BYTE* const oend = ZSTD_maybeNullPtrAdd((BYTE*)dst, dstSize); local 253 if (args->op[3] >= oend) 275 args->oend = oend; 581 BYTE* const oend = ZSTD_maybeNullPtrAdd(op, dstSize); local 590 HUF_decodeStreamX1(op, &bitD, oend, dt, dtLog); 613 BYTE* const oend = ostart + dstSize local 727 BYTE* const oend = args->oend; local 848 BYTE* const oend = ZSTD_maybeNullPtrAdd((BYTE*)dst, dstSize); local 1365 BYTE* const oend = ZSTD_maybeNullPtrAdd(ostart, dstSize); local 1394 BYTE* const oend = ostart + dstSize; local 1529 BYTE* oend[4]; local 1674 BYTE* const oend = ZSTD_maybeNullPtrAdd((BYTE*)dst, dstSize); local [all...] |
| zstd_decompress.c | 958 BYTE* const oend = dstCapacity != 0 ? ostart + dstCapacity : ostart; local 985 BYTE* oBlockEnd = oend; 1019 /* Use oend instead of oBlockEnd because this function is safe to overlap. It uses memmove. */ 1020 decodedSize = ZSTD_copyRawBlock(op, (size_t)(oend-op), ip, cBlockSize); 2056 ZSTD_DStream* zds, char** op, char* oend, 2072 size_t const dstSize = isSkipFrame ? 0 : (size_t)(oend - *op); 2078 assert(*op <= oend); 2092 char* const oend = output->size != 0 ? dst + output->size : dst; local 2185 && (U64)(size_t)(oend-op) >= zds->fParams.frameContentSize) { 2189 size_t const decompressedSize = ZSTD_decompress_usingDDict(zds, op, (size_t)(oend-op), istart, cSize, ZSTD_getDDict(zds)) [all...] |
| zstd_decompress_block.c | 839 BYTE* const oend = op + length; local 846 while (op < oend) *op++ = *ip++; 855 assert(op <= oend); 858 if (oend <= oend_w) { 865 assert(oend > oend_w); 871 while (op < oend) *op++ = *ip++; 879 BYTE* const oend = op + length; local 883 while (op < oend) *op++ = *ip++; 887 if (op <= oend - WILDCOPY_OVERLENGTH && diff < -WILDCOPY_VECLEN) { 888 ZSTD_wildcopy(op, ip, oend - WILDCOPY_OVERLENGTH - op, ZSTD_no_overlap) 1411 BYTE* const oend = ZSTD_maybeNullPtrAdd(ostart, maxDstSize); local 1623 BYTE* const oend = dctx->litBufferLocation == ZSTD_not_in_dst ? ZSTD_maybeNullPtrAdd(ostart, maxDstSize) : dctx->litBuffer; local 1742 BYTE* const oend = dctx->litBufferLocation == ZSTD_in_dst ? dctx->litBuffer : ZSTD_maybeNullPtrAdd(ostart, maxDstSize); local [all...] |
| /src/external/bsd/zstd/dist/lib/legacy/ |
| zstd_v01.c | 1333 BYTE* const oend = op + length; local 1334 while (op < oend) COPY8(op, ip); 1460 BYTE* const oend = op + maxDstSize; local 1470 op = oend - litSize; 1488 BYTE* const oend = ostart + maxDstSize; local 1509 memset(oend - rleSize, *ip, rleSize); 1511 *litStart = oend - rleSize; 1520 *litStart = oend - decodedLitSize; 1719 BYTE* const base, BYTE* const oend) 1732 if (seqLength > (size_t)(oend - op)) return ERROR(dstSize_tooSmall) 1825 BYTE* const oend = ostart + maxDstSize; local 1914 BYTE* const oend = ostart + maxDstSize; local [all...] |
| zstd_v03.c | 1662 BYTE* const oend = ostart + dstSize; local 1705 for ( ; (endSignal==BIT_DStream_unfinished) && (op4<(oend-7)) ; ) 1737 HUF_decodeStreamX2(op4, &bitD4, oend, dt, dtLog); 2024 BYTE* const oend = ostart + dstSize; local 2067 for ( ; (endSignal==BIT_DStream_unfinished) && (op4<(oend-7)) ; ) 2099 HUF_decodeStreamX4(op4, &bitD4, oend, dt, dtLog); 2335 BYTE* const oend = op + length; local 2336 do COPY8(op, ip) while (op < oend); 2685 BYTE* const base, BYTE* const oend) 2692 BYTE* const oend_8 = oend-8 2767 BYTE* const oend = ostart + maxDstSize; local 2854 BYTE* const oend = ostart + maxDstSize; local [all...] |
| zstd_v02.c | 1666 BYTE* const oend = ostart + dstSize; local 1709 for ( ; (endSignal==BIT_DStream_unfinished) && (op4<(oend-7)) ; ) 1741 HUF_decodeStreamX2(op4, &bitD4, oend, dt, dtLog); 2028 BYTE* const oend = ostart + dstSize; local 2071 for ( ; (endSignal==BIT_DStream_unfinished) && (op4<(oend-7)) ; ) 2103 HUF_decodeStreamX4(op4, &bitD4, oend, dt, dtLog); 2383 BYTE* const oend = ostart + dstSize; local 2428 for ( ; (op3 <= opStart4) && (endSignal==BIT_DStream_unfinished) && (op4<=(oend-16)) ; ) 2460 HUF_decodeStreamX6(op4, &bitD4, oend, DTable, dtLog); 2695 BYTE* const oend = op + length local 3128 BYTE* const oend = ostart + maxDstSize; local 3215 BYTE* const oend = ostart + maxDstSize; local [all...] |
| zstd_v04.c | 343 BYTE* const oend = op + length; local 346 while (op < oend); 1820 BYTE* const oend = ostart + dstSize; local 1862 for ( ; (endSignal==BIT_DStream_unfinished) && (op4<(oend-7)) ; ) 1894 HUF_decodeStreamX2(op4, &bitD4, oend, dt, dtLog); 2178 BYTE* const oend = ostart + dstSize; local 2220 for ( ; (endSignal==BIT_DStream_unfinished) && (op4<(oend-7)) ; ) 2252 HUF_decodeStreamX4(op4, &bitD4, oend, dt, dtLog); 2810 BYTE* const oend, seq_t sequence, 2819 BYTE* const oend_8 = oend-8 2909 BYTE* const oend = ostart + maxDstSize; local 3015 BYTE* const oend = ostart + maxDstSize; local 3380 char* const oend = ostart + *maxDstSizePtr; local [all...] |
| zstd_v05.c | 461 BYTE* const oend = op + length; local 464 while (op < oend); 1910 BYTE* const oend = op + dstSize; local 1920 HUFv05_decodeStreamX2(op, &bitD, oend, dt, dtLog); 1954 BYTE* const oend = ostart + dstSize; local 1996 for ( ; (endSignal==BITv05_DStream_unfinished) && (op4<(oend-7)) ; ) { 2026 HUFv05_decodeStreamX2(op4, &bitD4, oend, dt, dtLog); 2290 BYTE* const oend = ostart + dstSize; local 2303 HUFv05_decodeStreamX4(ostart, &bitD, oend, dt, dtLog); 2336 BYTE* const oend = ostart + dstSize local 3265 BYTE* const oend = ostart + maxDstSize; local 3378 BYTE* const oend = ostart + maxDstSize; local 3849 char* const oend = ostart + *maxDstSizePtr; local [all...] |
| zstd_v06.c | 492 BYTE* const oend = op + length; local 495 while (op < oend); 2042 BYTE* const oend = op + dstSize; local 2051 HUFv06_decodeStreamX2(op, &bitD, oend, dt, dtLog); 2084 BYTE* const oend = ostart + dstSize; local 2126 for ( ; (endSignal==BITv06_DStream_unfinished) && (op4<(oend-7)) ; ) { 2156 HUFv06_decodeStreamX2(op4, &bitD4, oend, dt, dtLog); 2415 BYTE* const oend = ostart + dstSize; local 2427 HUFv06_decodeStreamX4(ostart, &bitD, oend, dt, dtLog); 2459 BYTE* const oend = ostart + dstSize local 3395 BYTE* const oend = ostart + maxDstSize; local 3512 BYTE* const oend = ostart + dstCapacity; local 3973 char* const oend = ostart + *dstCapacityPtr; local [all...] |
| zstd_v07.c | 1818 BYTE* const oend = op + dstSize; local 1828 HUFv07_decodeStreamX2(op, &bitD, oend, dt, dtLog); 1875 BYTE* const oend = ostart + dstSize; local 1916 for ( ; (endSignal==BITv07_DStream_unfinished) && (op4<(oend-7)) ; ) { 1946 HUFv07_decodeStreamX2(op4, &bitD4, oend, dt, dtLog); 2234 BYTE* const oend = ostart + dstSize; local 2238 HUFv07_decodeStreamX4(ostart, &bitD, oend, dt, dtd.tableLog); 2285 BYTE* const oend = ostart + dstSize; local 2326 for ( ; (endSignal==BITv07_DStream_unfinished) && (op4<(oend-7)) ; ) { 2357 HUFv07_decodeStreamX4(op4, &bitD4, oend, dt, dtLog) 2726 BYTE* const oend = op + length; local 3620 BYTE* const oend = ostart + maxDstSize; local 3747 BYTE* const oend = ostart + dstCapacity; local 4352 char* const oend = ostart + *dstCapacityPtr; local [all...] |