Home
last modified time | relevance | path

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

/external/zstd/lib/common/
Dthreading.c40 ZSTD_pthread_t* const thread = (ZSTD_pthread_t*) arg; in worker()
45 int ZSTD_pthread_create(ZSTD_pthread_t* thread, const void* unused, in ZSTD_pthread_create()
59 int ZSTD_pthread_join(ZSTD_pthread_t thread, void **value_ptr) in ZSTD_pthread_join()
Dthreading.h69 } ZSTD_pthread_t; typedef
71 int ZSTD_pthread_create(ZSTD_pthread_t* thread, const void* unused,
74 int ZSTD_pthread_join(ZSTD_pthread_t thread, void** value_ptr);
100 #define ZSTD_pthread_t pthread_t
125 #define ZSTD_pthread_t pthread_t
Dpool.c37 ZSTD_pthread_t* threads;
143 … ctx->threads = (ZSTD_pthread_t*)ZSTD_customMalloc(numThreads * sizeof(ZSTD_pthread_t), customMem); in POOL_create_advanced()
199 + ctx->threadCapacity * sizeof(ZSTD_pthread_t); in POOL_sizeof()
212 …{ ZSTD_pthread_t* const threadPool = (ZSTD_pthread_t*)ZSTD_customMalloc(numThreads * sizeof(ZSTD… in POOL_resize_internal()