Home
last modified time | relevance | path

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

/f-stack/freebsd/contrib/zstd/lib/common/
H A Dthreading.c86 *mutex = (pthread_mutex_t*)ZSTD_malloc(sizeof(pthread_mutex_t)); in ZSTD_pthread_mutex_init()
105 *cond = (pthread_cond_t*)ZSTD_malloc(sizeof(pthread_cond_t)); in ZSTD_pthread_cond_init()
H A Dzstd_common.c60 return ZSTD_malloc(size); in ZSTD_customMalloc()
H A Dzstd_deps.h54 #define ZSTD_malloc(s) malloc(s) macro
H A Dfse_decompress.c63 return (FSE_DTable*)ZSTD_malloc( FSE_DTABLE_SIZE_U32(tableLog) * sizeof (U32) ); in FSE_createDTable()
H A Dxxhash.c83 static void* XXH_malloc(size_t s) { return ZSTD_malloc(s); } in XXH_malloc()
/f-stack/freebsd/contrib/openzfs/module/zstd/include/
H A Dzstd_compat_wrapper.h421 #define ZSTD_malloc zfs_ZSTD_malloc macro
/f-stack/freebsd/contrib/zstd/lib/compress/
H A Dfse_compress.c314 return (FSE_CTable*)ZSTD_malloc(size); in FSE_createCTable()
/f-stack/freebsd/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); in POOL_create_advanced()
7373 void* ZSTD_malloc(size_t size, ZSTD_customMem customMem) in ZSTD_malloc() function
9673 void* workspace = ZSTD_malloc(size, customMem); in ZSTD_cwksp_create()
13170 { ZSTD_CCtx* const cctx = (ZSTD_CCtx*)ZSTD_malloc(sizeof(ZSTD_CCtx), customMem); in ZSTD_createCCtx_advanced()
13990 void* dictBuffer = ZSTD_malloc(dictSize, cctx->customMem); in ZSTD_CCtx_loadDictionary_advanced()
15453 void* dst = ZSTD_malloc(dstCapacity, ZSTD_defaultCMem); in ZSTD_getSequences()
16502 void* const workspace = ZSTD_malloc(workspaceSize, customMem); in ZSTD_createCDict_advanced()
24330 void* const internalBuffer = ZSTD_malloc(dictSize, ddict->cMem); in ZSTD_initDDict_internal()
24645 { ZSTD_DCtx* const dctx = (ZSTD_DCtx*)ZSTD_malloc(sizeof(*dctx), customMem); in ZSTD_createDCtx_advanced()
[all …]