Searched defs:needed (Results 1 - 3 of 3) sorted by relevance
/bind-9.11.3/lib/isc/win32/ |
H A D | entropy.c | 80 unsigned int needed; local 87 needed = desired; 92 * If needed is 0, it means we are being asked to "fill to whatever 103 * (DIGEST_SIZE * 8 < needed < POOLBITS - entropy). 109 if (needed == 0) { 116 needed = THRESHOLD_BITS * 4; 118 needed = ISC_MAX(needed, THRESHOLD_BITS); 119 needed = ISC_MIN(needed, RND_POOLBIT [all...] |
/bind-9.11.3/unit/atf-src/tools/ |
H A D | requirements.cpp | 152 check_memory_sysctl(const int64_t needed, const char* sysctl_variable) argument 162 if (available < needed) { 163 return "Not enough memory; needed " + tools::text::to_string(needed) + 171 check_memory_darwin(const int64_t needed) argument 173 return check_memory_sysctl(needed, "hw.usermem"); 178 check_memory_freebsd(const int64_t needed) argument 180 return check_memory_sysctl(needed, "hw.usermem"); 185 check_memory_netbsd(const int64_t needed) argument 187 return check_memory_sysctl(needed, "h 205 const int64_t needed = tools::text::to_bytes(raw_memory); local [all...] |
/bind-9.11.3/lib/isc/unix/ |
H A D | entropy.c | 246 unsigned int needed; local 252 needed = desired; 257 * If needed is 0, it means we are being asked to "fill to whatever 268 * (DIGEST_SIZE * 8 < needed < POOLBITS - entropy). 274 if (needed == 0) { 281 needed = THRESHOLD_BITS * 4; 283 needed = ISC_MAX(needed, THRESHOLD_BITS); 284 needed = ISC_MIN(needed, RND_POOLBIT [all...] |
Completed in 21 milliseconds