Home
last modified time | relevance | path

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

/third_party/openssl/include/internal/
Dtsan_assist.h57 # 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
/third_party/openssl/crypto/
Dmem.c101 *mcount = tsan_load(&malloc_count); in CRYPTO_get_alloc_counts()
103 *rcount = tsan_load(&realloc_count); in CRYPTO_get_alloc_counts()
105 *fcount = tsan_load(&free_count); in CRYPTO_get_alloc_counts()
/third_party/openssl/crypto/rand/
Ddrbg_lib.c362 tsan_load(&drbg->parent->reseed_counter)); in RAND_DRBG_instantiate()
452 tsan_load(&drbg->parent->reseed_counter)); in RAND_DRBG_reseed()
624 if (drbg->reseed_counter != tsan_load(&drbg->parent->reseed_counter)) in RAND_DRBG_generate()
/third_party/openssl/ssl/
Dssl_lib.c2344 return tsan_load(&ctx->stats.sess_connect); in SSL_CTX_ctrl()
2346 return tsan_load(&ctx->stats.sess_connect_good); in SSL_CTX_ctrl()
2348 return tsan_load(&ctx->stats.sess_connect_renegotiate); in SSL_CTX_ctrl()
2350 return tsan_load(&ctx->stats.sess_accept); in SSL_CTX_ctrl()
2352 return tsan_load(&ctx->stats.sess_accept_good); in SSL_CTX_ctrl()
2354 return tsan_load(&ctx->stats.sess_accept_renegotiate); in SSL_CTX_ctrl()
2356 return tsan_load(&ctx->stats.sess_hit); in SSL_CTX_ctrl()
2358 return tsan_load(&ctx->stats.sess_cb_hit); in SSL_CTX_ctrl()
2360 return tsan_load(&ctx->stats.sess_miss); in SSL_CTX_ctrl()
2362 return tsan_load(&ctx->stats.sess_timeout); in SSL_CTX_ctrl()
[all …]