Home
last modified time | relevance | path

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

/freebsd/crypto/openssl/include/internal/
H A Dtsan_assist.h61 #define tsan_load(ptr) atomic_load_explicit((ptr), memory_order_relaxed) macro
73 #define tsan_load(ptr) __atomic_load_n((ptr), __ATOMIC_RELAXED) macro
102 #define tsan_load(ptr) (sizeof(*(ptr)) == 8 ? __iso_volatile_load64(ptr) \ macro
107 #define tsan_load(ptr) __iso_volatile_load32(ptr) macro
111 #define tsan_load(ptr) (*(ptr)) macro
138 #define tsan_load(ptr) (*(ptr)) macro
/freebsd/crypto/openssl/providers/fips/
H A Dself_test.c312 return tsan_load(&FIPS_state) == FIPS_STATE_SELFTEST; in ossl_fips_self_testing()
332 loclstate = tsan_load(&FIPS_state); in SELF_TEST_post()
346 loclstate = tsan_load(&FIPS_state); in SELF_TEST_post()
456 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()
429 drbg->reseed_next_counter = tsan_load(&drbg->reseed_counter); in ossl_prov_drbg_instantiate()
528 drbg->reseed_next_counter = tsan_load(&drbg->reseed_counter); in ossl_prov_drbg_reseed_unlocked()
953 if (!OSSL_PARAM_set_uint(p, tsan_load(&drbg->reseed_counter))) in ossl_drbg_get_ctx_params_no_lock()
/freebsd/crypto/openssl/crypto/
H A Dmem.c38 #define LOAD(x) tsan_load(&x)
H A Dcore_namemap.c97 return namemap == NULL || tsan_load(&namemap->max_number) == 0; in ossl_namemap_empty()
/freebsd/crypto/openssl/test/helpers/
H A Dquictestlib.c634 && !tsan_load(&abortserverthread) in qtest_create_quic_connection_ex()
679 } while (!tsan_load(&shutdowndone)); in run_server_shutdown_thread()
/freebsd/crypto/openssl/crypto/property/
H A Dproperty.c849 state.seed = tsan_load(&global_seed); in ossl_method_cache_flush_some()
/freebsd/crypto/openssl/ssl/
H A Dssl_lib.c3084 res = tsan_load(stat); in ssl_tsan_load()