HomeSort by: relevance | last modified time | path
    Searched refs:ZSTD_customMem (Results 1 - 18 of 18) sorted by relevancy

  /src/external/bsd/zstd/dist/lib/common/
allocations.h 19 #include "../zstd.h" /* ZSTD_customMem */
26 MEM_STATIC void* ZSTD_customMalloc(size_t size, ZSTD_customMem customMem)
33 MEM_STATIC void* ZSTD_customCalloc(size_t size, ZSTD_customMem customMem)
45 MEM_STATIC void ZSTD_customFree(void* ptr, ZSTD_customMem customMem)
pool.h 20 #define ZSTD_STATIC_LINKING_ONLY /* ZSTD_customMem */
34 ZSTD_customMem customMem);
pool.c 35 ZSTD_customMem customMem;
116 ZSTD_customMem customMem)
331 POOL_create_advanced(size_t numThreads, size_t queueSize, ZSTD_customMem customMem)
  /src/external/bsd/zstd/dist/lib/compress/
zstdmt_compress.h 54 ZSTD_customMem cMem,
zstdmt_compress.c 102 ZSTD_customMem cMem;
122 static ZSTDMT_bufferPool* ZSTDMT_createBufferPool(unsigned maxNbBuffers, ZSTD_customMem cMem)
177 { ZSTD_customMem const cMem = srcBufPool->cMem;
334 static ZSTDMT_seqPool* ZSTDMT_createSeqPool(unsigned nbWorkers, ZSTD_customMem cMem)
360 ZSTD_customMem cMem;
381 ZSTD_customMem cMem)
411 { ZSTD_customMem const cMem = srcPool->cMem;
508 ZSTD_customMem cMem = params.customMem;
571 ZSTD_customMem cMem = serialState->params.customMem;
872 ZSTD_customMem cMem
    [all...]
zstd_cwksp.h 668 MEM_STATIC size_t ZSTD_cwksp_create(ZSTD_cwksp* ws, size_t size, ZSTD_customMem customMem) {
676 MEM_STATIC void ZSTD_cwksp_free(ZSTD_cwksp* ws, ZSTD_customMem customMem) {
zstd_compress_internal.h 355 ZSTD_customMem customMem;
422 ZSTD_customMem customMem;
zstd_compress.c 87 ZSTD_customMem customMem;
101 static void ZSTD_initCCtx(ZSTD_CCtx* cctx, ZSTD_customMem memManager)
113 ZSTD_CCtx* ZSTD_createCCtx_advanced(ZSTD_customMem customMem)
336 ZSTD_customMem customMem)
2510 ZSTD_memcpy(&dstCCtx->customMem, &srcCCtx->customMem, sizeof(ZSTD_customMem));
5484 ZSTD_customMem customMem)
5519 ZSTD_customMem customMem)
5537 ZSTD_customMem customMem)
5607 { ZSTD_customMem const cMem = cdict->customMem;
5811 ZSTD_CStream* ZSTD_createCStream_advanced(ZSTD_customMem customMem
    [all...]
  /src/external/bsd/zstd/dist/lib/decompress/
zstd_ddict.c 43 ZSTD_customMem cMem;
148 ZSTD_customMem customMem)
172 ZSTD_customMem const allocator = { NULL, NULL, NULL };
182 ZSTD_customMem const allocator = { NULL, NULL, NULL };
215 { ZSTD_customMem const cMem = ddict->cMem;
zstd_decompress_internal.h 152 ZSTD_customMem customMem;
zstd_decompress.c 131 static size_t ZSTD_DDictHashSet_expand(ZSTD_DDictHashSet* hashSet, ZSTD_customMem customMem) {
178 static ZSTD_DDictHashSet* ZSTD_createDDictHashSet(ZSTD_customMem customMem) {
196 static void ZSTD_freeDDictHashSet(ZSTD_DDictHashSet* hashSet, ZSTD_customMem customMem) {
209 static size_t ZSTD_DDictHashSet_addDDict(ZSTD_DDictHashSet* hashSet, const ZSTD_DDict* ddict, ZSTD_customMem customMem) {
294 static ZSTD_DCtx* ZSTD_createDCtx_internal(ZSTD_customMem customMem) {
305 ZSTD_DCtx* ZSTD_createDCtx_advanced(ZSTD_customMem customMem)
328 { ZSTD_customMem const cMem = dctx->customMem;
1681 ZSTD_DStream* ZSTD_createDStream_advanced(ZSTD_customMem customMem)
  /src/external/bsd/zstd/dist/lib/deprecated/
zbuff.h 188 #define ZSTD_STATIC_LINKING_ONLY /* ZSTD_parameters, ZSTD_customMem */
195 ZBUFF_DEPRECATED("use ZSTD_createCStream_advanced") ZBUFF_CCtx* ZBUFF_createCCtx_advanced(ZSTD_customMem customMem);
199 ZBUFF_DEPRECATED("use ZSTD_createDStream_advanced") ZBUFF_DCtx* ZBUFF_createDCtx_advanced(ZSTD_customMem customMem);
zbuff_decompress.c 27 ZBUFF_DCtx* ZBUFF_createDCtx_advanced(ZSTD_customMem customMem)
zbuff_compress.c 59 ZBUFF_CCtx* ZBUFF_createCCtx_advanced(ZSTD_customMem customMem)
  /src/external/bsd/zstd/dist/lib/
zstd.h 1789 * ZSTD_customMem is provided at creation time, using ZSTD_create*_advanced() variants listed below.
1794 typedef struct { ZSTD_allocFunction customAlloc; ZSTD_freeFunction customFree; void* opaque; } ZSTD_customMem;
1799 ZSTD_customMem const ZSTD_defaultCMem = { NULL, NULL, NULL }; /**< this constant defers to stdlib's functions */
1801 ZSTDLIB_STATIC_API ZSTD_CCtx* ZSTD_createCCtx_advanced(ZSTD_customMem customMem);
1802 ZSTDLIB_STATIC_API ZSTD_CStream* ZSTD_createCStream_advanced(ZSTD_customMem customMem);
1803 ZSTDLIB_STATIC_API ZSTD_DCtx* ZSTD_createDCtx_advanced(ZSTD_customMem customMem);
1804 ZSTDLIB_STATIC_API ZSTD_DStream* ZSTD_createDStream_advanced(ZSTD_customMem customMem);
1810 ZSTD_customMem customMem);
1836 ZSTD_customMem customMem);
1842 ZSTD_customMem customMem)
    [all...]
  /src/external/bsd/zstd/dist/zlibWrapper/
zstd_zlibwrapper.c 27 #define ZSTD_STATIC_LINKING_ONLY /* ZSTD_isFrame, ZSTD_MAGICNUMBER, ZSTD_customMem */
121 static void* ZWRAP_customMalloc(size_t size, ZSTD_customMem customMem)
128 static void* ZWRAP_customCalloc(size_t size, ZSTD_customMem customMem)
140 static void ZWRAP_customFree(void* ptr, ZSTD_customMem customMem)
160 ZSTD_customMem customMem;
184 ZSTD_customMem customMem = { NULL, NULL, NULL };
529 ZSTD_customMem customMem;
544 ZSTD_customMem customMem = { NULL, NULL, NULL };
  /src/external/bsd/zstd/dist/tests/
fuzzer.c 213 ZSTD_customMem const cMem = { FUZ_mallocDebug, FUZ_freeDebug, &malcount };
226 ZSTD_customMem const cMem = { FUZ_mallocDebug, FUZ_freeDebug, &malcount };
245 ZSTD_customMem const cMem = { FUZ_mallocDebug, FUZ_freeDebug, &malcount };
263 ZSTD_customMem const cMem = { FUZ_mallocDebug, FUZ_freeDebug, &malcount };
740 ZSTD_customMem customMem) = ZSTD_createDStream_advanced;
3094 ZSTD_customMem customMem = {NULL, NULL, NULL};
3121 ZSTD_customMem customMem = {NULL, NULL, NULL};
3148 ZSTD_customMem customMem = {NULL, NULL, NULL};
  /src/external/bsd/zstd/dist/zlibWrapper/examples/
zwrapbench.c 237 ZSTD_customMem const cmem = { NULL, NULL, NULL };

Completed in 55 milliseconds