| /src/external/bsd/zstd/dist/lib/compress/ |
| zstd_compress_superblock.h | 18 #include "../zstd.h" /* ZSTD_CCtx */ 27 size_t ZSTD_compressSuperBlock(ZSTD_CCtx* zc,
|
| zstd_compress.c | 97 ZSTD_CCtx* ZSTD_createCCtx(void) 102 static void ZSTD_initCCtx(ZSTD_CCtx* cctx, ZSTD_customMem memManager) 114 ZSTD_CCtx* ZSTD_createCCtx_advanced(ZSTD_customMem customMem) 119 { ZSTD_CCtx* const cctx = (ZSTD_CCtx*)ZSTD_customMalloc(sizeof(ZSTD_CCtx), customMem); 126 ZSTD_CCtx* ZSTD_initStaticCCtx(void* workspace, size_t workspaceSize) 129 ZSTD_CCtx* cctx; 130 if (workspaceSize <= sizeof(ZSTD_CCtx)) return NULL; /* minimum size */ 134 cctx = (ZSTD_CCtx*)ZSTD_cwksp_reserve_object(&ws, sizeof(ZSTD_CCtx)) [all...] |
| zstd_compress_internal.h | 142 const SeqStore_t* ZSTD_getSeqStore(const ZSTD_CCtx* ctx); /* compress & dictBuilder */ 1524 size_t ZSTD_convertBlockSequences(ZSTD_CCtx* cctx, 1567 size_t ZSTD_compressBegin_advanced_internal(ZSTD_CCtx* cctx, 1577 size_t ZSTD_compress_advanced_internal(ZSTD_CCtx* cctx, 1601 void ZSTD_referenceExternalSequences(ZSTD_CCtx* cctx, rawSeq* seq, size_t nbSeq); 1610 void ZSTD_CCtx_trace(ZSTD_CCtx* cctx, size_t extraCSize); 1623 size_t ZSTD_compressBegin_usingCDict_deprecated(ZSTD_CCtx* cctx, const ZSTD_CDict* cdict); 1625 size_t ZSTD_compressContinue_public(ZSTD_CCtx* cctx, 1629 size_t ZSTD_compressEnd_public(ZSTD_CCtx* cctx, 1633 size_t ZSTD_compressBlock_deprecated(ZSTD_CCtx* cctx, void* dst, size_t dstCapacity, const void* src, size_t srcSize) [all...] |
| /src/external/bsd/zstd/dist/lib/ |
| zstd.h | 280 typedef struct ZSTD_CCtx_s ZSTD_CCtx; 281 ZSTDLIB_API ZSTD_CCtx* ZSTD_createCCtx(void); 282 ZSTDLIB_API size_t ZSTD_freeCCtx(ZSTD_CCtx* cctx); /* compatible with NULL pointer */ 285 * Same as ZSTD_compress(), using an explicit ZSTD_CCtx. 292 ZSTDLIB_API size_t ZSTD_compressCCtx(ZSTD_CCtx* cctx, 570 ZSTDLIB_API size_t ZSTD_CCtx_setParameter(ZSTD_CCtx* cctx, ZSTD_cParameter param, int value); 587 ZSTDLIB_API size_t ZSTD_CCtx_setPledgedSrcSize(ZSTD_CCtx* cctx, unsigned long long pledgedSrcSize); 609 ZSTDLIB_API size_t ZSTD_CCtx_reset(ZSTD_CCtx* cctx, ZSTD_ResetDirective reset); 623 ZSTDLIB_API size_t ZSTD_compress2( ZSTD_CCtx* cctx, 725 * note : since v1.3.0, ZSTD_CStream and ZSTD_CCtx are the same thing [all...] |
| /src/external/bsd/zstd/dist/tests/fuzz/ |
| zstd_helpers.h | 31 void FUZZ_setRandomParameters(ZSTD_CCtx *cctx, size_t srcSize, FUZZ_dataProducer_t *producer);
|
| simple_compress.c | 27 static ZSTD_CCtx *cctx = NULL;
|
| generate_sequences.c | 27 static void testRoundTrip(ZSTD_CCtx* cctx, ZSTD_Sequence const* seqs, size_t nbSeqs, const void* src, size_t srcSize) { 54 ZSTD_CCtx* cctx = ZSTD_createCCtx();
|
| decompress_dstSize_tooSmall.c | 27 static ZSTD_CCtx *cctx = NULL;
|
| zstd_helpers.c | 28 static void set(ZSTD_CCtx *cctx, ZSTD_cParameter param, int value) 38 static void setRand(ZSTD_CCtx *cctx, ZSTD_cParameter param, unsigned min, 77 static void setSequenceProducerParams(ZSTD_CCtx *cctx, FUZZ_dataProducer_t *producer) { 101 void FUZZ_setRandomParameters(ZSTD_CCtx *cctx, size_t srcSize, FUZZ_dataProducer_t *producer)
|
| block_round_trip.c | 28 static ZSTD_CCtx *cctx = NULL;
|
| raw_dictionary_round_trip.c | 26 static ZSTD_CCtx *cctx = NULL;
|
| dictionary_loader.c | 35 ZSTD_CCtx* cctx = ZSTD_createCCtx();
|
| /src/external/bsd/zstd/dist/tests/ |
| bigdict.c | 22 compress(ZSTD_CCtx* cctx, ZSTD_DCtx* dctx, 65 ZSTD_CCtx* cctx = ZSTD_createCCtx();
|
| largeDictionary.c | 22 compress(ZSTD_CCtx* cctx, ZSTD_DCtx* dctx, 65 ZSTD_CCtx* cctx = ZSTD_createCCtx();
|
| fuzzer.c | 213 ZSTD_CCtx* const cctx = ZSTD_createCCtx_advanced(cMem); 226 ZSTD_CCtx* const cstream = ZSTD_createCStream_advanced(cMem); 245 ZSTD_CCtx* const cctx = ZSTD_createCCtx_advanced(cMem); 263 ZSTD_CCtx* const cctx = ZSTD_createCCtx_advanced(cMem); 373 ZSTD_CCtx* cctx; 409 ZSTD_CCtx* cctx = ZSTD_createCCtx(); 446 ZSTD_CCtx* cctx1 = ZSTD_createCCtx(); 447 ZSTD_CCtx* cctx2 = ZSTD_createCCtx(); 533 ZSTD_CCtx* const cctx = ZSTD_createCCtx(); 552 ZSTD_CCtx* const cctx = ZSTD_createCCtx() [all...] |
| /src/external/bsd/zstd/dist/contrib/seqBench/ |
| seqBench.c | 9 ZSTD_CCtx* zc = ZSTD_createCCtx();
|
| /src/external/bsd/zstd/dist/contrib/externalSequenceProducer/ |
| main.c | 35 ZSTD_CCtx* const zc = ZSTD_createCCtx();
|
| /src/external/bsd/zstd/dist/examples/ |
| dictionary_compression.c | 53 ZSTD_CCtx* const cctx = ZSTD_createCCtx();
|
| multiple_simple_compression.c | 22 ZSTD_CCtx* cctx; 65 /* compress with pre-allocated context (ZSTD_CCtx) and input/output buffers*/
|
| multiple_streaming_compression.c | 28 ZSTD_CCtx* cctx;
|
| streaming_compression.c | 37 ZSTD_CCtx* const cctx = ZSTD_createCCtx();
|
| streaming_memory_usage.c | 84 ZSTD_CCtx* const cctx = ZSTD_createCCtx();
|
| streaming_compression_thread_pool.c | 48 ZSTD_CCtx* const cctx = ZSTD_createCCtx();
|
| /src/external/bsd/zstd/dist/programs/ |
| zstdcli_trace.c | 127 ZSTD_TraceCtx ZSTD_trace_compress_begin(ZSTD_CCtx const* cctx)
|
| /src/external/bsd/zstd/dist/contrib/linux-kernel/ |
| linux_zstd.h | 139 typedef ZSTD_CCtx zstd_cctx; typedef 150 size_t zstd_cctx_set_param(zstd_cctx *cctx, zstd_cparameter param, int value); 155 * zstd_cctx_workspace_bound() - max memory needed to initialize a zstd_cctx 169 * initialize a zstd_cctx when using the block-level external sequence 190 zstd_cctx *zstd_init_cctx(void *workspace, size_t workspace_size); 205 size_t zstd_compress_cctx(zstd_cctx *cctx, void *dst, size_t dst_capacity, 461 zstd_cctx *cctx, 520 size_t zstd_compress_sequences_and_literals(zstd_cctx *cctx, void* dst, size_t dst_capacity,
|