Searched defs:max_exclusive (Results 1 - 1 of 1) sorted by relevance

/external/boringssl/src/crypto/fipsmodule/bn/
H A Drandom.c222 const BN_ULONG *max_exclusive, size_t len) {
223 return bn_less_than_words(a, max_exclusive, len) &&
228 const BN_ULONG *max_exclusive, size_t len,
231 // appendices B.4.2 and B.5.2. When called in those contexts, |max_exclusive|
234 // Compute the bit length of |max_exclusive| (step 1), in terms of a number of
238 while (words > 0 && max_exclusive[words - 1] == 0) {
242 (words == 1 && max_exclusive[0] <= min_inclusive)) {
246 BN_ULONG mask = max_exclusive[words - 1];
268 // bits, where N is the bit length of |max_exclusive|.
273 // If out >= max_exclusive o
221 bn_in_range_words(const BN_ULONG *a, BN_ULONG min_inclusive, const BN_ULONG *max_exclusive, size_t len) argument
227 bn_rand_range_words(BN_ULONG *out, BN_ULONG min_inclusive, const BN_ULONG *max_exclusive, size_t len, const uint8_t additional_data[32]) argument
279 BN_rand_range_ex(BIGNUM *r, BN_ULONG min_inclusive, const BIGNUM *max_exclusive) argument
[all...]

Completed in 193 milliseconds