Searched refs:ZSTD_malloc (Results 1 - 8 of 8) sorted by relevance

/freebsd-13-stable/sys/contrib/zstd/lib/common/
H A Dthreading.c86 *mutex = (pthread_mutex_t*)ZSTD_malloc(sizeof(pthread_mutex_t));
105 *cond = (pthread_cond_t*)ZSTD_malloc(sizeof(pthread_cond_t));
H A Dzstd_common.c17 #include "zstd_deps.h" /* ZSTD_malloc, ZSTD_calloc, ZSTD_free, ZSTD_memset */
60 return ZSTD_malloc(size);
H A Dzstd_deps.h44 * ZSTD_malloc()
54 #define ZSTD_malloc(s) malloc(s) macro
H A Dfse_decompress.c63 return (FSE_DTable*)ZSTD_malloc( FSE_DTABLE_SIZE_U32(tableLog) * sizeof (U32) );
H A Dxxhash.c80 /* for ZSTD_malloc(), ZSTD_free() */
82 #include "zstd_deps.h" /* size_t, ZSTD_malloc, ZSTD_free, ZSTD_memcpy */
83 static void* XXH_malloc(size_t s) { return ZSTD_malloc(s); }
/freebsd-13-stable/sys/contrib/openzfs/module/zstd/include/
H A Dzstd_compat_wrapper.h421 #define ZSTD_malloc zfs_ZSTD_malloc macro
/freebsd-13-stable/sys/contrib/zstd/lib/compress/
H A Dfse_compress.c28 #include "../common/zstd_deps.h" /* ZSTD_malloc, ZSTD_free, ZSTD_memcpy, ZSTD_memset */
314 return (FSE_CTable*)ZSTD_malloc(size);
/freebsd-13-stable/sys/contrib/openzfs/module/zstd/lib/
H A Dzstd.c6684 void* ZSTD_malloc(size_t size, ZSTD_customMem customMem);
7096 ctx->queue = (POOL_job*)ZSTD_malloc(ctx->queueSize * sizeof(POOL_job), customMem);
7110 ctx->threads = (ZSTD_pthread_t*)ZSTD_malloc(numThreads * sizeof(ZSTD_pthread_t), customMem);
7177 { ZSTD_pthread_t* const threadPool = (ZSTD_pthread_t*)ZSTD_malloc(numThreads * sizeof(ZSTD_pthread_t), ctx->customMem);
7373 void* ZSTD_malloc(size_t size, ZSTD_customMem customMem) function
9673 void* workspace = ZSTD_malloc(size, customMem);
13170 { ZSTD_CCtx* const cctx = (ZSTD_CCtx*)ZSTD_malloc(sizeof(ZSTD_CCtx), customMem);
13990 void* dictBuffer = ZSTD_malloc(dictSize, cctx->customMem);
15453 void* dst = ZSTD_malloc(dstCapacity, ZSTD_defaultCMem);
16502 void* const workspace = ZSTD_malloc(workspaceSiz
[all...]

Completed in 225 milliseconds