Searched refs:tsan_load (Results 1 - 4 of 4) sorted by relevance

/freebsd-12-stable/crypto/openssl/include/internal/
H A Dtsan_assist.h25 * if (tsan_load(&var) == NOT_YET_INITIALIZED)
57 # define tsan_load(ptr) atomic_load_explicit((ptr), memory_order_relaxed) macro
70 # define tsan_load(ptr) __atomic_load_n((ptr), __ATOMIC_RELAXED) macro
101 # define tsan_load(ptr) (sizeof(*(ptr)) == 8 ? __iso_volatile_load64(ptr) \ macro
106 # define tsan_load(ptr) __iso_volatile_load32(ptr) macro
110 # define tsan_load(ptr) (*(ptr)) macro
134 # define tsan_load(ptr) (*(ptr)) macro
/freebsd-12-stable/crypto/openssl/crypto/
H A Dmem.c101 *mcount = tsan_load(&malloc_count);
103 *rcount = tsan_load(&realloc_count);
105 *fcount = tsan_load(&free_count);
/freebsd-12-stable/crypto/openssl/crypto/rand/
H A Ddrbg_lib.c362 tsan_load(&drbg->parent->reseed_counter));
452 tsan_load(&drbg->parent->reseed_counter));
624 if (drbg->reseed_counter != tsan_load(&drbg->parent->reseed_counter))
/freebsd-12-stable/crypto/openssl/ssl/
H A Dssl_lib.c2344 return tsan_load(&ctx->stats.sess_connect);
2346 return tsan_load(&ctx->stats.sess_connect_good);
2348 return tsan_load(&ctx->stats.sess_connect_renegotiate);
2350 return tsan_load(&ctx->stats.sess_accept);
2352 return tsan_load(&ctx->stats.sess_accept_good);
2354 return tsan_load(&ctx->stats.sess_accept_renegotiate);
2356 return tsan_load(&ctx->stats.sess_hit);
2358 return tsan_load(&ctx->stats.sess_cb_hit);
2360 return tsan_load(&ctx->stats.sess_miss);
2362 return tsan_load(
[all...]

Completed in 74 milliseconds