Searched refs:CRYPTO_atomic_add (Results 1 – 13 of 13) sorted by relevance
/freebsd/crypto/openssl/doc/man3/ |
H A D | CRYPTO_THREAD_run_once.pod | 8 CRYPTO_atomic_add, CRYPTO_atomic_or, CRYPTO_atomic_load - OpenSSL thread support 23 int CRYPTO_atomic_add(int *val, int amount, int *ret, CRYPTO_RWLOCK *lock); 76 CRYPTO_atomic_add() atomically adds I<amount> to I<*val> and returns the 79 variable is modified by CRYPTO_atomic_add() then CRYPTO_atomic_add() must
|
/freebsd/crypto/openssl/include/internal/ |
H A D | refcount.h | 161 # define CRYPTO_UP_REF(val, ret, lock) CRYPTO_atomic_add(val, 1, ret, lock) 162 # define CRYPTO_DOWN_REF(val, ret, lock) CRYPTO_atomic_add(val, -1, ret, lock)
|
/freebsd/crypto/openssl/crypto/ |
H A D | threads_none.c | 128 int CRYPTO_atomic_add(int *val, int amount, int *ret, CRYPTO_RWLOCK *lock) in CRYPTO_atomic_add() function
|
H A D | threads_win.c | 213 int CRYPTO_atomic_add(int *val, int amount, int *ret, CRYPTO_RWLOCK *lock) in CRYPTO_atomic_add() function
|
H A D | threads_pthread.c | 199 int CRYPTO_atomic_add(int *val, int amount, int *ret, CRYPTO_RWLOCK *lock) in CRYPTO_atomic_add() function
|
/freebsd/crypto/openssl/test/ |
H A D | threadstest.c | 152 if (CRYPTO_atomic_add(&val, 1, &ret, NULL)) { in test_atomic() 164 if (!TEST_true(CRYPTO_atomic_add(&val, 1, &ret, lock))) in test_atomic()
|
/freebsd/crypto/openssl/include/openssl/ |
H A D | crypto.h | 87 int CRYPTO_atomic_add(int *val, int amount, int *ret, CRYPTO_RWLOCK *lock);
|
H A D | crypto.h.in | 88 int CRYPTO_atomic_add(int *val, int amount, int *ret, CRYPTO_RWLOCK *lock);
|
/freebsd/crypto/openssl/providers/implementations/rands/ |
H A D | drbg.c | 351 CRYPTO_atomic_add(&dngbl->rand_nonce_count, 1, &data.count, in prov_drbg_get_nonce()
|
/freebsd/secure/lib/libcrypto/ |
H A D | Version.map | 775 CRYPTO_atomic_add;
|
/freebsd/secure/lib/libcrypto/man/man3/ |
H A D | Makefile | 1147 MLINKS+= CRYPTO_THREAD_run_once.3 CRYPTO_atomic_add.3
|
/freebsd/crypto/openssl/util/ |
H A D | libcrypto.num | 3577 CRYPTO_atomic_add 3659 3_0_0 EXIST::FUNCTION:
|
/freebsd/crypto/openssl/ |
H A D | CHANGES.md | 4135 So now these methods also check the return value of CRYPTO_atomic_add(),
|