Symbol: ossl_rand_pool_bytes_needed
crypto/openssl/include/crypto/rand_pool.h
100
size_t ossl_rand_pool_bytes_needed(RAND_POOL *pool, unsigned int entropy_factor);
crypto/openssl/providers/implementations/rands/seed_src_jitter.c
66
bytes_needed = ossl_rand_pool_bytes_needed(pool, 1 /* entropy_factor */);
crypto/openssl/providers/implementations/rands/seeding/rand_cpu_arm64.c
37
bytes_needed = ossl_rand_pool_bytes_needed(pool, 1 /*entropy_factor*/);
crypto/openssl/providers/implementations/rands/seeding/rand_cpu_x86.c
43
bytes_needed = ossl_rand_pool_bytes_needed(pool, 1 /*entropy_factor*/);
crypto/openssl/providers/implementations/rands/seeding/rand_unix.c
159
bytes_needed = ossl_rand_pool_bytes_needed(pool, 4 /*entropy_factor*/);
crypto/openssl/providers/implementations/rands/seeding/rand_unix.c
645
bytes_needed = ossl_rand_pool_bytes_needed(pool, 1 /*entropy_factor*/);
crypto/openssl/providers/implementations/rands/seeding/rand_unix.c
669
bytes_needed = ossl_rand_pool_bytes_needed(pool, 1 /*entropy_factor*/);
crypto/openssl/providers/implementations/rands/seeding/rand_unix.c
695
bytes_needed = ossl_rand_pool_bytes_needed(pool, 1);
crypto/openssl/providers/implementations/rands/seeding/rand_unix.c
722
bytes_needed = ossl_rand_pool_bytes_needed(pool, 1 /*entropy_factor*/);
crypto/openssl/providers/implementations/rands/seeding/rand_unix.c
734
bytes_needed = ossl_rand_pool_bytes_needed(pool, 1);
crypto/openssl/providers/implementations/rands/seeding/rand_vms.c
366
size_t bytes_needed = ossl_rand_pool_bytes_needed(pool, ENTROPY_FACTOR);
crypto/openssl/providers/implementations/rands/seeding/rand_vms.c
511
for (bytes_needed = ossl_rand_pool_bytes_needed(pool, 1);
crypto/openssl/providers/implementations/rands/seeding/rand_vxworks.c
107
bytes_needed = ossl_rand_pool_bytes_needed(pool, 1 /*entropy_factor*/);
crypto/openssl/providers/implementations/rands/seeding/rand_win.c
104
bytes_needed = ossl_rand_pool_bytes_needed(pool, 1 /*entropy_factor*/);
crypto/openssl/providers/implementations/rands/seeding/rand_win.c
69
bytes_needed = ossl_rand_pool_bytes_needed(pool, 1 /*entropy_factor*/);
crypto/openssl/providers/implementations/rands/seeding/rand_win.c
84
bytes_needed = ossl_rand_pool_bytes_needed(pool, 1 /*entropy_factor*/);