HomeSort by: relevance | last modified time | path
    Searched refs:upper_bound (Results 1 - 5 of 5) sorted by relevancy

  /src/sys/external/isc/libsodium/dist/src/libsodium/randombytes/
randombytes.c 125 randombytes_uniform(const uint32_t upper_bound)
133 return implementation->uniform(upper_bound);
136 if (upper_bound < 2) {
139 min = (1U + ~upper_bound) % upper_bound; /* = 2**32 mod upper_bound */
143 /* r is now clamped to a set whose size mod upper_bound == 0
146 return r % upper_bound;
  /src/sys/external/isc/libsodium/dist/src/libsodium/include/sodium/
randombytes.h 23 uint32_t (*uniform)(const uint32_t upper_bound); /* optional, a default implementation will be used if NULL */
45 uint32_t randombytes_uniform(const uint32_t upper_bound);
  /src/sys/external/isc/libsodium/dist/test/default/
randombytes.c 124 randombytes_uniform_impl(const uint32_t upper_bound)
126 return upper_bound;
  /src/sys/external/bsd/drm2/dist/drm/amd/powerplay/hwmgr/
ppevvmath.h 152 fInt upper_bound = Divide(8, 1000); local in function:fNaturalLog
160 while (GreaterThan(fAdd(value, fNegativeOne), upper_bound)) {
  /src/sys/altq/
altq_jobs.c 1077 int64_t credit, available, lower_bound, upper_bound; local in function:adjust_rates_rdc
1098 upper_bound = (int64_t)jif->jif_bandwidth;
1109 upper_bound -=
1123 if (upper_bound <= 0 || rdc_classes == 0)
1162 prop_control = (upper_bound*upper_bound*min_share)
1201 && result[i] + cl->service_rate > upper_bound) {
1209 result[j] = upper_bound

Completed in 16 milliseconds