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

/bind-9.11.3/lib/isc/unix/
H A Dapp.c474 isc_uint64_t us; local
477 us = isc_time_microdiff(&when, &now);
478 if (us == 0)
480 tv.tv_sec = us / 1000000;
481 tv.tv_usec = us % 1000000;
/bind-9.11.3/lib/dns/
H A Dresolver.c312 * us from pounding constantly on a particular set of
314 * us useful responses, but are responding in such a
1587 unsigned int us; local
1594 us = 800000;
1596 us = (800000 << (fctx->restarts - 2));
1612 if (us < rtt)
1613 us = rtt;
1618 if (us > MAX_SINGLE_QUERY_TIMEOUT_US)
1619 us = MAX_SINGLE_QUERY_TIMEOUT_US;
1621 seconds = us / US_PER_SE
[all...]

Completed in 23 milliseconds