HomeSort by: relevance | last modified time | path
    Searched defs:XXH_malloc (Results 1 - 2 of 2) sorted by relevancy

  /src/external/bsd/libarchive/dist/libarchive/
xxhash.c 91 #define XXH_malloc malloc
363 void* state = XXH_malloc (sizeof(struct XXH_state32_t));
  /src/external/bsd/zstd/dist/lib/common/
xxhash.h 2283 static XXH_CONSTF void* XXH_malloc(size_t s) { (void)s; return NULL; }
2298 static XXH_MALLOCF void* XXH_malloc(size_t s) { return malloc(s); }
3049 return (XXH32_state_t*)XXH_malloc(sizeof(XXH32_state_t));
3495 return (XXH64_state_t*)XXH_malloc(sizeof(XXH64_state_t));
6021 xxh_u8* base = (xxh_u8*)XXH_malloc(s + align);
6050 /* Get the offset byte we added in XXH_malloc. */

Completed in 18 milliseconds