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

/bind-9.6-ESV-R11/lib/isc/win32/
H A Dentropy.c165 unsigned int got; local
170 got = 0;
173 got = get_from_filesource(source, remaining);
175 added += got;
177 remaining -= ISC_MIN(remaining, got);
201 unsigned int got; local
203 got = 0;
206 got = get_from_callback(source, remaining, blocking);
208 added += got;
209 remaining -= ISC_MIN(remaining, got);
[all...]
/bind-9.6-ESV-R11/lib/isc/unix/
H A Dentropy.c325 unsigned int got; local
330 got = 0;
334 got = get_from_filesource(source, remaining);
338 got = get_from_usocketsource(source, remaining);
342 added += got;
344 remaining -= ISC_MIN(remaining, got);
366 unsigned int got; local
368 got = 0;
371 got = get_from_callback(source, remaining, blocking);
373 added += got;
[all...]
/bind-9.6-ESV-R11/lib/isc/
H A Dentropy.c424 * If any delta is 0, we got no entropy. If all are non-zero, we
431 * We could find the smallest delta and claim we got log2(delta)
484 unsigned int got; local
505 got = crunchsamples(ent, &cbs->samplequeue);
506 added += got;
507 desired -= ISC_MIN(got, desired);
582 * Verify that we got enough entropy to do one

Completed in 23 milliseconds