Home
last modified time | relevance | path

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

/freebsd/crypto/openssl/include/internal/
H A 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
140 # define tsan_load(ptr) (*(ptr)) macro
/freebsd/crypto/openssl/providers/fips/
H A Dself_test.c248 loclstate = tsan_load(&FIPS_state); in SELF_TEST_post()
260 loclstate = tsan_load(&FIPS_state); in SELF_TEST_post()
384 loclstate = tsan_load(&FIPS_state); in ossl_prov_is_running()
/freebsd/crypto/openssl/providers/implementations/rands/
H A Ddrbg.c126 r = tsan_load(&drbg->reseed_counter) - 2; in get_parent_reseed_count()
449 drbg->reseed_next_counter = tsan_load(&drbg->reseed_counter); in ossl_prov_drbg_instantiate()
552 drbg->reseed_next_counter = tsan_load(&drbg->reseed_counter); in ossl_prov_drbg_reseed()
920 && !OSSL_PARAM_set_uint(p, tsan_load(&drbg->reseed_counter))) in ossl_drbg_get_ctx_params()
/freebsd/crypto/openssl/crypto/
H A Dmem.c38 # define LOAD(x) tsan_load(&x)
H A Dcore_namemap.c111 return namemap == NULL || tsan_load(&namemap->max_number) == 0; in ossl_namemap_empty()
/freebsd/crypto/openssl/crypto/property/
H A Dproperty.c687 state.seed = tsan_load(&global_seed); in ossl_method_cache_flush_some()
/freebsd/crypto/openssl/ssl/
H A Dssl_lib.c2496 res = tsan_load(stat); in ssl_tsan_load()