Searched refs:nanoseconds (Results 1 - 6 of 6) sorted by relevance
/bind-9.11.3/lib/isc/unix/ |
H A D | time.c | 38 * All of the INSIST()s checks of nanoseconds < NS_PER_S are for 83 unsigned int seconds, unsigned int nanoseconds) 86 REQUIRE(nanoseconds < NS_PER_S); 89 i->nanoseconds = nanoseconds; 95 INSIST(i->nanoseconds < NS_PER_S); 97 if (i->seconds == 0 && i->nanoseconds == 0) 112 isc_time_set(isc_time_t *t, unsigned int seconds, unsigned int nanoseconds) { argument 114 REQUIRE(nanoseconds < NS_PER_S); 117 t->nanoseconds 82 isc_interval_set(isc_interval_t *i, unsigned int seconds, unsigned int nanoseconds) argument [all...] |
H A D | socket.c | 1389 dev->timestamp.nanoseconds = tv.tv_usec * 1000;
|
/bind-9.11.3/lib/isc/unix/include/isc/ |
H A D | time.h | 32 unsigned int nanoseconds; member in struct:isc_interval 48 unsigned int seconds, unsigned int nanoseconds); 51 * 'nanoseconds' nanoseconds, suitable for use in isc_time_add() and 57 *\li nanoseconds < 1000000000. 83 unsigned int nanoseconds; member in struct:isc_time 89 isc_time_set(isc_time_t *t, unsigned int seconds, unsigned int nanoseconds); 92 * nanoseconds since 00:00:00 January 1, 1970, UTC. 98 * isc_interval_set(i, seconds, nanoseconds); 104 *\li nanoseconds < 100000000 [all...] |
/bind-9.11.3/lib/isc/win32/include/isc/ |
H A D | time.h | 46 unsigned int seconds, unsigned int nanoseconds); 49 * 'nanoseconds' nanoseconds, suitable for use in isc_time_add() and 55 * nanoseconds < 1000000000. 86 isc_time_set(isc_time_t *t, unsigned int seconds, unsigned int nanoseconds); 89 * nanoseconds since 00:00:00 January 1, 1970, UTC. 93 *\li nanoseconds < 1000000000. 238 * Return the number of nanoseconds stored in a time structure. 241 * This is the number of nanoseconds in excess of the number
|
/bind-9.11.3/lib/isc/win32/ |
H A D | time.c | 29 * struct FILETIME uses "100-nanoseconds intervals". 55 unsigned int nanoseconds) 58 REQUIRE(nanoseconds < NS_PER_S); 61 * This rounds nanoseconds up not down. 64 + (nanoseconds + NS_INTERVAL - 1) / NS_INTERVAL; 77 isc_time_set(isc_time_t *t, unsigned int seconds, unsigned int nanoseconds) { argument 83 REQUIRE(nanoseconds < NS_PER_S); 90 i1.QuadPart += (unsigned __int64)nanoseconds/100; 54 isc_interval_set(isc_interval_t *i, unsigned int seconds, unsigned int nanoseconds) argument
|
/bind-9.11.3/lib/isc/ |
H A D | timer.c | 50 (d).seconds, (d).nanoseconds) 52 (d).seconds, (d).nanoseconds, (n).seconds, (n).nanoseconds) 54 (d).seconds, (d).nanoseconds)
|
Completed in 32 milliseconds