Searched refs:max_exclusive (Results 1 – 3 of 3) sorted by relevance
/external/boringssl/src/crypto/fipsmodule/bn/ |
D | random.c | 211 const BN_ULONG *max_exclusive, size_t len) { in bn_in_range_words() argument 213 return mask & bn_less_than_words(a, max_exclusive, len); in bn_in_range_words() 217 size_t min_inclusive, const BN_ULONG *max_exclusive, in bn_range_to_mask() argument 221 while (words > 0 && max_exclusive[words - 1] == 0) { in bn_range_to_mask() 225 (words == 1 && max_exclusive[0] <= min_inclusive)) { in bn_range_to_mask() 229 BN_ULONG mask = max_exclusive[words - 1]; in bn_range_to_mask() 246 const BN_ULONG *max_exclusive, size_t len, in bn_rand_range_words() argument 257 if (!bn_range_to_mask(&words, &mask, min_inclusive, max_exclusive, len)) { in bn_rand_range_words() 279 } while (!bn_in_range_words(out, min_inclusive, max_exclusive, words)); in bn_rand_range_words() 284 const BIGNUM *max_exclusive) { in BN_rand_range_ex() argument [all …]
|
D | internal.h | 305 const BN_ULONG *max_exclusive, size_t len); in OPENSSL_MSVC_PRAGMA() 315 const BN_ULONG *max_exclusive, size_t len, in OPENSSL_MSVC_PRAGMA() 337 const BIGNUM *max_exclusive); in OPENSSL_MSVC_PRAGMA()
|
/external/boringssl/src/include/openssl/ |
D | bn.h | 630 const BIGNUM *max_exclusive);
|