Home
last modified time | relevance | path

Searched defs:dstCapacity (Results 1 – 25 of 46) sorted by relevance

12

/external/rust/crates/grpcio-sys/grpc/third_party/xxhash/tests/bench/
Dhashes.h69 size_t XXH32_wrapper(const void* src, size_t srcSize, void* dst, size_t dstCapacity, void* customPa… in XXH32_wrapper()
76 size_t XXH64_wrapper(const void* src, size_t srcSize, void* dst, size_t dstCapacity, void* customPa… in XXH64_wrapper()
83 size_t xxh3_wrapper(const void* src, size_t srcSize, void* dst, size_t dstCapacity, void* customPay… in xxh3_wrapper()
90 size_t XXH128_wrapper(const void* src, size_t srcSize, void* dst, size_t dstCapacity, void* customP… in XXH128_wrapper()
/external/zstd/lib/compress/
Dzstd_compress_literals.c16 size_t ZSTD_noCompressLiterals (void* dst, size_t dstCapacity, const void* src, size_t srcSize) in ZSTD_noCompressLiterals()
43 size_t ZSTD_compressRleLiteralsBlock (void* dst, size_t dstCapacity, const void* src, size_t srcSiz… in ZSTD_compressRleLiteralsBlock()
73 void* dst, size_t dstCapacity, in ZSTD_compressLiterals()
Dzstd_compress_sequences.c243 ZSTD_buildCTable(void* dst, size_t dstCapacity, in ZSTD_buildCTable()
292 void* dst, size_t dstCapacity, in ZSTD_encodeSequences_body()
386 void* dst, size_t dstCapacity, in ZSTD_encodeSequences_default()
404 void* dst, size_t dstCapacity, in ZSTD_encodeSequences_bmi2()
420 void* dst, size_t dstCapacity, in ZSTD_encodeSequences()
Dzstd_compress.c2578 void* dst, size_t dstCapacity, in ZSTD_entropyCompressSeqStore_internal()
2696 void* dst, size_t dstCapacity, in ZSTD_entropyCompressSeqStore()
2962 const size_t dstCapacity = ZSTD_compressBound(srcSize); in ZSTD_generateSequences() local
3500 void* dst, size_t dstCapacity, in ZSTD_compressSeqStore_singleBlock()
3644 ZSTD_compressBlock_splitBlock_internal(ZSTD_CCtx* zc, void* dst, size_t dstCapacity, in ZSTD_compressBlock_splitBlock_internal()
3734 void* dst, size_t dstCapacity, in ZSTD_compressBlock_splitBlock()
3764 void* dst, size_t dstCapacity, in ZSTD_compressBlock_internal()
3827 void* dst, size_t dstCapacity, in ZSTD_compressBlock_targetCBlockSize_body()
3882 void* dst, size_t dstCapacity, in ZSTD_compressBlock_targetCBlockSize()
3933 void* dst, size_t dstCapacity, in ZSTD_compress_frameChunk()
[all …]
Dzstd_compress_superblock.c164 void* dst, size_t dstCapacity, in ZSTD_compressSubBlock_sequences()
265 void* dst, size_t dstCapacity, in ZSTD_compressSubBlock()
430 void* dst, size_t dstCapacity, in ZSTD_compressSubBlock_multi()
552 void* dst, size_t dstCapacity, in ZSTD_compressSuperBlock()
/external/zstd/tests/
Dfullbench.c225 void* dst, size_t dstCapacity, in local_ZSTD_compressStream()
248 void* dst, size_t dstCapacity, in local_ZSTD_compressStream_freshCCtx()
264 void* dst, size_t dstCapacity, in local_ZSTD_compress2()
273 void* dst, size_t dstCapacity, in local_ZSTD_compressStream2_end()
291 void* dst, size_t dstCapacity, in local_ZSTD_compressStream2_continue()
310 void* dst, size_t dstCapacity, in local_ZSTD_compress_generic_T2_end()
320 void* dst, size_t dstCapacity, in local_ZSTD_compress_generic_T2_continue()
341 void* dst, size_t dstCapacity, in local_ZSTD_decompressStream()
360 void* dst, size_t dstCapacity, in local_ZSTD_compressContinue()
374 void* dst, size_t dstCapacity, in local_ZSTD_compressContinue_extDict()
[all …]
Dbigdict.c23 void* dst, size_t dstCapacity, in compress()
/external/lz4/ossfuzz/
Ddecompress_frame_fuzzer.c18 static void decompress(LZ4F_dctx* dctx, void* dst, size_t dstCapacity, in decompress()
38 size_t const dstCapacity = FUZZ_getRange_from_uint32( in LLVMFuzzerTestOneInput() local
Dround_trip_stream_fuzzer.c106 int const dstCapacity = state->roundTrip.size - state->roundTrip.pos; in state_decompress() local
146 int const dstCapacity = state->compressed.size - state->compressed.pos; in state_prefixRoundTrip() local
167 int const dstCapacity = state->compressed.size - state->compressed.pos; in state_extDictRoundTrip() local
216 int const dstCapacity = state->compressed.size - state->compressed.pos; in state_prefixHCRoundTrip() local
238 int const dstCapacity = state->compressed.size - state->compressed.pos; in state_extDictHCRoundTrip() local
Dround_trip_frame_uncompressed_fuzzer.c19 size_t dstCapacity, size_t readSize) { in decompress()
60 size_t const dstCapacity = in compress_round_trip() local
Dround_trip_hc_fuzzer.c23 size_t const dstCapacity = LZ4_compressBound(size); in LLVMFuzzerTestOneInput() local
Dround_trip_frame_fuzzer.c23 size_t const dstCapacity = LZ4F_compressFrameBound(LZ4_compressBound(size), &prefs); in LLVMFuzzerTestOneInput() local
Dcompress_frame_fuzzer.c26 size_t const dstCapacity = FUZZ_getRange_from_uint32(dstCapacitySeed, 0, compressBound); in LLVMFuzzerTestOneInput() local
Dcompress_fuzzer.c23 size_t const dstCapacity = FUZZ_getRange_from_uint32(dstCapacitySeed, 0, compressBound); in LLVMFuzzerTestOneInput() local
Ddecompress_fuzzer.c21 size_t const dstCapacity = FUZZ_getRange_from_uint32(dstCapacitySeed, 0, 4 * size); in LLVMFuzzerTestOneInput() local
Dlz4_helpers.c30 size_t FUZZ_decompressFrame(void* dst, const size_t dstCapacity, in FUZZ_decompressFrame()
Dcompress_hc_fuzzer.c24 size_t const dstCapacity = FUZZ_getRange_from_uint32(dstCapacitySeed, 0, size); in LLVMFuzzerTestOneInput() local
Dround_trip_fuzzer.c22 size_t const dstCapacity = LZ4_compressBound(size); in LLVMFuzzerTestOneInput() local
/external/zstd/lib/common/
Dfse_decompress.c308 size_t FSE_decompress_wksp(void* dst, size_t dstCapacity, const void* cSrc, size_t cSrcSize, unsign… in FSE_decompress_wksp()
320 void* dst, size_t dstCapacity, in FSE_decompress_wksp_body()
362 static size_t FSE_decompress_wksp_body_default(void* dst, size_t dstCapacity, const void* cSrc, siz… in FSE_decompress_wksp_body_default()
368 BMI2_TARGET_ATTRIBUTE static size_t FSE_decompress_wksp_body_bmi2(void* dst, size_t dstCapacity, co… in FSE_decompress_wksp_body_bmi2()
374 size_t FSE_decompress_wksp_bmi2(void* dst, size_t dstCapacity, const void* cSrc, size_t cSrcSize, u… in FSE_decompress_wksp_bmi2()
394 size_t FSE_decompress(void* dst, size_t dstCapacity, const void* cSrc, size_t cSrcSize) in FSE_decompress()
/external/lz4/lib/
Dlz4frame.c421 void* dstBuffer, size_t dstCapacity, in LZ4F_compressFrame_usingCDict()
475 size_t LZ4F_compressFrame(void* dstBuffer, size_t dstCapacity, in LZ4F_compressFrame()
678 void* dstBuffer, size_t dstCapacity, in LZ4F_compressBegin_usingCDict()
796 void* dstBuffer, size_t dstCapacity, in LZ4F_compressBegin()
853 static int LZ4F_compressBlock(void* ctx, const char* src, char* dst, int srcSize, int dstCapacity, … in LZ4F_compressBlock()
865 …ssBlock_continue(void* ctx, const char* src, char* dst, int srcSize, int dstCapacity, int level, c… in LZ4F_compressBlock_continue()
873 static int LZ4F_compressBlockHC(void* ctx, const char* src, char* dst, int srcSize, int dstCapacity in LZ4F_compressBlockHC()
882 …BlockHC_continue(void* ctx, const char* src, char* dst, int srcSize, int dstCapacity, int level, c… in LZ4F_compressBlockHC_continue()
888 …NotCompressBlock(void* ctx, const char* src, char* dst, int srcSize, int dstCapacity, int level, c… in LZ4F_doNotCompressBlock()
931 void* dstBuffer, size_t dstCapacity, in LZ4F_compressUpdateImpl()
[all …]
Dlz4hc.c805 int const dstCapacity, in LZ4HC_compress_generic_internal()
871 int const dstCapacity, in LZ4HC_compress_generic_noDictCtx()
886 int const dstCapacity, in LZ4HC_compress_generic_dictCtx()
912 int const dstCapacity, in LZ4HC_compress_generic()
939 …eHC_fastReset (void* state, const char* src, char* dst, int srcSize, int dstCapacity, int compress… in LZ4_compress_HC_extStateHC_fastReset()
951 …HC_extStateHC (void* state, const char* src, char* dst, int srcSize, int dstCapacity, int compress… in LZ4_compress_HC_extStateHC()
958 int LZ4_compress_HC(const char* src, char* dst, int srcSize, int dstCapacity, int compressionLevel) in LZ4_compress_HC()
1114 int* srcSizePtr, int dstCapacity, in LZ4_compressHC_continue_generic()
1151 …ontinue (LZ4_streamHC_t* LZ4_streamHCPtr, const char* src, char* dst, int srcSize, int dstCapacity) in LZ4_compress_HC_continue()
1250 …t_continue (void* LZ4HC_Data, const char* src, char* dst, int srcSize, int dstCapacity, int cLevel) in LZ4_compressHC2_limitedOutput_continue()
[all …]
/external/zstd/lib/decompress/
Dzstd_decompress.c584 ZSTDLIB_API size_t ZSTD_readSkippableFrame(void* dst, size_t dstCapacity, unsigned* magicVariant, in ZSTD_readSkippableFrame()
819 static size_t ZSTD_copyRawBlock(void* dst, size_t dstCapacity, in ZSTD_copyRawBlock()
832 static size_t ZSTD_setRleBlock(void* dst, size_t dstCapacity, in ZSTD_setRleBlock()
877 void* dst, size_t dstCapacity, in ZSTD_decompressFrame()
965 void* dst, size_t dstCapacity, in ZSTD_decompressMultiFrame()
1056 void* dst, size_t dstCapacity, in ZSTD_decompress_usingDict()
1081 size_t ZSTD_decompressDCtx(ZSTD_DCtx* dctx, void* dst, size_t dstCapacity, const void* src, size_t … in ZSTD_decompressDCtx()
1087 size_t ZSTD_decompress(void* dst, size_t dstCapacity, const void* src, size_t srcSize) in ZSTD_decompress()
1159 size_t ZSTD_decompressContinue(ZSTD_DCtx* dctx, void* dst, size_t dstCapacity, const void* src, siz… in ZSTD_decompressContinue()
1538 void* dst, size_t dstCapacity, in ZSTD_decompress_usingDDict()
[all …]
/external/skia/src/base/
DSkUTF.cpp254 int SkUTF::UTF8ToUTF16(uint16_t dst[], int dstCapacity, const char src[], size_t srcByteLength) { in UTF8ToUTF16()
286 int SkUTF::UTF16ToUTF8(char dst[], int dstCapacity, const uint16_t src[], size_t srcLength) { in UTF16ToUTF8()
/external/lz4/tests/
Dframetest.c486 { size_t const dstCapacity = LZ4F_compressFrameBound(testSize, &prefs); in basicTests() local
494 { size_t const dstCapacity = LZ4F_compressFrameBound(testSize, &prefs); in basicTests() local
590 size_t const dstCapacity = LZ4F_compressFrameBound(srcSize, NULL); in basicTests() local
873 void* dst, size_t dstCapacity, o_scenario_e o_scenario, in test_lz4f_decompression_wBuffers()
970 size_t const dstCapacity = (o_scenario == o_noncontiguous) ? in test_lz4f_decompression() local
/external/lz4/examples/
DframeCompress.c204 void* dst, size_t dstCapacity) in decompress_file_internal()
299 size_t const dstCapacity = get_block_size(&info); in decompress_file_allocDst() local

12