Home
last modified time | relevance | path

Searched refs:XXH_malloc (Results 1 – 3 of 3) sorted by relevance

/freebsd-src/contrib/libarchive/libarchive/
H A Dxxhash.c91 #define XXH_malloc malloc macro
363 void* state = XXH_malloc (sizeof(struct XXH_state32_t)); in XXH32_init()
/freebsd-src/sys/contrib/openzfs/module/zstd/lib/common/
H A Dxxhash.c83 static void* XXH_malloc(size_t s) { return malloc(s); } in XXH_malloc() function
533 return (XXH32_state_t*)XXH_malloc(sizeof(XXH32_state_t)); in XXH32_createState()
543 return (XXH64_state_t*)XXH_malloc(sizeof(XXH64_state_t)); in XXH64_createState()
/freebsd-src/sys/contrib/zstd/lib/common/
H A Dxxhash.h1458 static void* XXH_malloc(size_t s) { return ZSTD_malloc(s); } in XXH_malloc() function
2118 return (XXH32_state_t*)XXH_malloc(sizeof(XXH32_state_t)); in XXH32_createState()
2532 return (XXH64_state_t*)XXH_malloc(sizeof(XXH64_state_t)); in XXH64_createState()
4722 xxh_u8* base = (xxh_u8*)XXH_malloc(s + align); in XXH_alignedMalloc()