Home
last modified time | relevance | path

Searched refs:ZSTD_pthread_cond_wait (Results 1 – 5 of 5) sorted by relevance

/freebsd/sys/contrib/zstd/lib/common/
H A Dthreading.h60 #define ZSTD_pthread_cond_wait(a, b) SleepConditionVariableCS((a), (b), INFINITE) macro
96 #define ZSTD_pthread_cond_wait(a, b) pthread_cond_wait((a), (b))
121 #define ZSTD_pthread_cond_wait(a, b) pthread_cond_wait(*(a), *(b))
143 #define ZSTD_pthread_cond_wait(a, b) ((void)(a), (void)(b))
H A Dpool.c83 ZSTD_pthread_cond_wait(&ctx->queuePopCond, &ctx->queueMutex); in POOL_thread()
281 ZSTD_pthread_cond_wait(&ctx->queuePushCond, &ctx->queueMutex); in POOL_add()
/freebsd/sys/contrib/openzfs/module/zstd/lib/common/
H A Dpool.c84 ZSTD_pthread_cond_wait(&ctx->queuePopCond, &ctx->queueMutex); in POOL_thread()
273 ZSTD_pthread_cond_wait(&ctx->queuePushCond, &ctx->queueMutex); in POOL_add()
/freebsd/sys/contrib/zstd/lib/compress/
H A Dzstdmt_compress.c570 ZSTD_pthread_cond_wait(&serialState->cond, &serialState->mutex); in ZSTDMT_serialState_update()
1005 ZSTD_pthread_cond_wait(&mtctx->jobs[jobID].job_cond, &mtctx->jobs[jobID].job_mutex); in ZSTDMT_waitForAllJobsCompleted()
1455ZSTD_pthread_cond_wait(&mtctx->jobs[wJobID].job_cond, &mtctx->jobs[wJobID].job_mutex); /* block w… in ZSTDMT_flushProduced()
1611 ZSTD_pthread_cond_wait(&mtctx->serial.ldmWindowCond, mutex); in ZSTDMT_waitForLdmComplete()
/freebsd/sys/contrib/zstd/lib/dictBuilder/
H A Dcover.c871 ZSTD_pthread_cond_wait(&best->cond, &best->mutex); in COVER_best_wait()