Home
last modified time | relevance | path

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

/external/zstd/lib/common/
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))
Dpool.c83 ZSTD_pthread_cond_wait(&ctx->queuePopCond, &ctx->queueMutex); in POOL_thread()
278 ZSTD_pthread_cond_wait(&ctx->queuePushCond, &ctx->queueMutex); in POOL_add()
/external/zstd/tests/
DpoolTests.c131 ZSTD_pthread_cond_wait(&test.cond, &test.mut); in testThreadReduction_internal()
146 ZSTD_pthread_cond_wait(&test.cond, &test.mut); in testThreadReduction_internal()
/external/zstd/lib/compress/
Dzstdmt_compress.c564 ZSTD_pthread_cond_wait(&serialState->cond, &serialState->mutex); in ZSTDMT_serialState_update()
977 ZSTD_pthread_cond_wait(&mtctx->jobs[jobID].job_cond, &mtctx->jobs[jobID].job_mutex); in ZSTDMT_waitForAllJobsCompleted()
1425ZSTD_pthread_cond_wait(&mtctx->jobs[wJobID].job_cond, &mtctx->jobs[wJobID].job_mutex); /* block w… in ZSTDMT_flushProduced()
1577 ZSTD_pthread_cond_wait(&mtctx->serial.ldmWindowCond, mutex); in ZSTDMT_waitForLdmComplete()
/external/zstd/lib/dictBuilder/
Dcover.c863 ZSTD_pthread_cond_wait(&best->cond, &best->mutex); in COVER_best_wait()