/external/zstd/lib/ |
D | zstd.h | 202 typedef struct ZSTD_CCtx_s ZSTD_CCtx; typedef 203 ZSTDLIB_API ZSTD_CCtx* ZSTD_createCCtx(void); 204 ZSTDLIB_API size_t ZSTD_freeCCtx(ZSTD_CCtx* cctx); /* accept NULL pointer */ 214 ZSTDLIB_API size_t ZSTD_compressCCtx(ZSTD_CCtx* cctx, 471 ZSTDLIB_API size_t ZSTD_CCtx_setParameter(ZSTD_CCtx* cctx, ZSTD_cParameter param, int value); 488 ZSTDLIB_API size_t ZSTD_CCtx_setPledgedSrcSize(ZSTD_CCtx* cctx, unsigned long long pledgedSrcSize); 510 ZSTDLIB_API size_t ZSTD_CCtx_reset(ZSTD_CCtx* cctx, ZSTD_ResetDirective reset); 522 ZSTDLIB_API size_t ZSTD_compress2( ZSTD_CCtx* cctx, 671 typedef ZSTD_CCtx ZSTD_CStream; /**< CCtx and CStream are now effectively same object (>= v1.3.0) … 713 ZSTDLIB_API size_t ZSTD_compressStream2( ZSTD_CCtx* cctx, [all …]
|
/external/zstd/lib/compress/ |
D | zstd_compress.c | 92 ZSTD_CCtx* ZSTD_createCCtx(void) in ZSTD_createCCtx() 97 static void ZSTD_initCCtx(ZSTD_CCtx* cctx, ZSTD_customMem memManager) in ZSTD_initCCtx() 109 ZSTD_CCtx* ZSTD_createCCtx_advanced(ZSTD_customMem customMem) in ZSTD_createCCtx_advanced() 114 { ZSTD_CCtx* const cctx = (ZSTD_CCtx*)ZSTD_customMalloc(sizeof(ZSTD_CCtx), customMem); in ZSTD_createCCtx_advanced() 121 ZSTD_CCtx* ZSTD_initStaticCCtx(void* workspace, size_t workspaceSize) in ZSTD_initStaticCCtx() 124 ZSTD_CCtx* cctx; in ZSTD_initStaticCCtx() 125 if (workspaceSize <= sizeof(ZSTD_CCtx)) return NULL; /* minimum size */ in ZSTD_initStaticCCtx() 129 cctx = (ZSTD_CCtx*)ZSTD_cwksp_reserve_object(&ws, sizeof(ZSTD_CCtx)); in ZSTD_initStaticCCtx() 132 ZSTD_memset(cctx, 0, sizeof(ZSTD_CCtx)); in ZSTD_initStaticCCtx() 148 static void ZSTD_clearAllDicts(ZSTD_CCtx* cctx) in ZSTD_clearAllDicts() [all …]
|
D | zstd_compress_superblock.h | 27 size_t ZSTD_compressSuperBlock(ZSTD_CCtx* zc,
|
/external/zstd/tests/ |
D | fuzzer.c | 212 ZSTD_CCtx* const cctx = ZSTD_createCCtx_advanced(cMem); in FUZ_mallocTests_internal() 225 ZSTD_CCtx* const cstream = ZSTD_createCStream_advanced(cMem); in FUZ_mallocTests_internal() 244 ZSTD_CCtx* const cctx = ZSTD_createCCtx_advanced(cMem); in FUZ_mallocTests_internal() 262 ZSTD_CCtx* const cctx = ZSTD_createCCtx_advanced(cMem); in FUZ_mallocTests_internal() 342 ZSTD_CCtx* cctx; 378 ZSTD_CCtx* cctx = ZSTD_createCCtx(); in threadPoolTests() 415 ZSTD_CCtx* cctx1 = ZSTD_createCCtx(); in threadPoolTests() 416 ZSTD_CCtx* cctx2 = ZSTD_createCCtx(); in threadPoolTests() 524 { ZSTD_CCtx* const cctx = ZSTD_createCCtx(); in basicUnitTests() 591 { ZSTD_CCtx* const cctx = ZSTD_createCCtx(); in basicUnitTests() [all …]
|
D | bigdict.c | 22 compress(ZSTD_CCtx* cctx, ZSTD_DCtx* dctx, in compress() 65 ZSTD_CCtx* cctx = ZSTD_createCCtx(); in main()
|
/external/zstd/tests/fuzz/ |
D | zstd_helpers.c | 24 static void set(ZSTD_CCtx *cctx, ZSTD_cParameter param, int value) in set() 29 static void setRand(ZSTD_CCtx *cctx, ZSTD_cParameter param, unsigned min, in setRand() 68 void FUZZ_setRandomParameters(ZSTD_CCtx *cctx, size_t srcSize, FUZZ_dataProducer_t *producer) in FUZZ_setRandomParameters()
|
D | zstd_helpers.h | 30 void FUZZ_setRandomParameters(ZSTD_CCtx *cctx, size_t srcSize, FUZZ_dataProducer_t *producer);
|
D | simple_compress.c | 26 static ZSTD_CCtx *cctx = NULL;
|
D | decompress_dstSize_tooSmall.c | 26 static ZSTD_CCtx *cctx = NULL;
|
D | block_round_trip.c | 27 static ZSTD_CCtx *cctx = NULL;
|
D | raw_dictionary_round_trip.c | 25 static ZSTD_CCtx *cctx = NULL;
|
D | dictionary_loader.c | 34 ZSTD_CCtx* cctx = ZSTD_createCCtx(); in compress()
|
D | simple_round_trip.c | 26 static ZSTD_CCtx *cctx = NULL;
|
/external/squashfs-tools/squashfs-tools/ |
D | zstd_wrapper.c | 187 ZSTD_CCtx *cctx = ZSTD_createCCtx(); in zstd_init() 202 const size_t res = ZSTD_compressCCtx((ZSTD_CCtx*)strm, dest, block_size, in zstd_compress()
|
/external/zstd/programs/ |
D | benchzstd.c | 165 BMK_initCCtx(ZSTD_CCtx* ctx, in BMK_initCCtx() 203 ZSTD_CCtx* cctx; 236 ZSTD_CCtx* const cctx = (ZSTD_CCtx*)addArgs; in local_defaultCompress() 314 ZSTD_CCtx* cctx, ZSTD_DCtx* dctx, in BMK_benchMemAdvancedNoAlloc() 585 ZSTD_CCtx* const cctx = ZSTD_createCCtx(); in BMK_benchMemAdvanced()
|
D | zstdcli_trace.c | 127 ZSTD_TraceCtx ZSTD_trace_compress_begin(ZSTD_CCtx const* cctx) in ZSTD_trace_compress_begin()
|
/external/zstd/tests/regression/ |
D | method.c | 163 ZSTD_CCtx* cctx = ZSTD_createCCtx(); in compress_cctx_compress() 314 ZSTD_CCtx* cctx, in advanced_config() 342 ZSTD_CCtx* cctx = ZSTD_createCCtx(); in advanced_one_pass_compress_output_adjustment() 399 ZSTD_CCtx* cctx = ZSTD_createCCtx(); in advanced_streaming_compress()
|
/external/zstd/lib/common/ |
D | zstd_internal.h | 354 const seqStore_t* ZSTD_getSeqStore(const ZSTD_CCtx* ctx); /* compress & dictBuilder */ 459 void ZSTD_invalidateRepCodes(ZSTD_CCtx* cctx); /* zstdmt, adaptive_compression (shouldn't get thi…
|
/external/zstd/examples/ |
D | dictionary_compression.c | 43 ZSTD_CCtx* const cctx = ZSTD_createCCtx(); in compress()
|
D | streaming_compression.c | 37 ZSTD_CCtx* const cctx = ZSTD_createCCtx(); in compressFile_orDie()
|
D | streaming_memory_usage.c | 84 ZSTD_CCtx* const cctx = ZSTD_createCCtx(); in main()
|
D | multiple_simple_compression.c | 22 ZSTD_CCtx* cctx;
|
D | multiple_streaming_compression.c | 28 ZSTD_CCtx* cctx;
|
/external/trace-cmd/lib/trace-cmd/ |
D | trace-compress-zstd.c | 16 ZSTD_CCtx *ctx_c;
|
/external/zstd/contrib/linux-kernel/ |
D | linux_zstd.h | 141 typedef ZSTD_CCtx zstd_cctx;
|