Home
last modified time | relevance | path

Searched refs:thetime (Results 1 – 3 of 3) sorted by relevance

/freebsd-11-stable/lib/libc/rpc/
HDrtime.c76 unsigned long thetime; in rtime() local
101 res = _sendto(s, (char *)&thetime, sizeof(thetime), 0, in rtime()
121 res = _recvfrom(s, (char *)&thetime, sizeof(thetime), 0, in rtime()
132 res = _read(s, (char *)&thetime, sizeof(thetime)); in rtime()
138 if (res != sizeof(thetime)) { in rtime()
142 thetime = ntohl(thetime); in rtime()
143 timep->tv_sec = thetime - TOFFSET; in rtime()
HDauth_time.c249 u_long thetime, delta; in __rpc_get_time_offset() local
354 (xdrproc_t)xdr_u_long, &thetime, tv); in __rpc_get_time_offset()
403 if (_sendto(s, &thetime, sizeof(thetime), 0, in __rpc_get_time_offset()
417 res = _recvfrom(s, (char *)&thetime, sizeof(thetime), 0, in __rpc_get_time_offset()
439 res = _read(s, (char *)&thetime, sizeof(thetime)); in __rpc_get_time_offset()
440 if (res != sizeof(thetime)) { in __rpc_get_time_offset()
456 thetime = ntohl(thetime); in __rpc_get_time_offset()
457 thetime = thetime - TOFFSET; /* adjust to UNIX time */ in __rpc_get_time_offset()
459 thetime = 0; in __rpc_get_time_offset()
490 delta = (thetime > tv.tv_sec) ? thetime - tv.tv_sec : in __rpc_get_time_offset()
[all …]
/freebsd-11-stable/usr.bin/gprof/
HDgprof.c488 double thetime; in asgnsamples() local
504 thetime = ccnt; in asgnsamples()
511 totime += thetime; in asgnsamples()
534 overlap * thetime / scale, overlap); in asgnsamples()
537 nl[j].time += overlap * thetime / scale; in asgnsamples()