Searched refs:thetime (Results 1 – 3 of 3) sorted by relevance
/freebsd/lib/libc/rpc/ |
H A D | rtime.c | 72 unsigned long thetime; in rtime() local 97 res = _sendto(s, (char *)&thetime, sizeof(thetime), 0, in rtime() 117 res = _recvfrom(s, (char *)&thetime, sizeof(thetime), 0, in rtime() 128 res = _read(s, (char *)&thetime, sizeof(thetime)); in rtime() 134 if (res != sizeof(thetime)) { in rtime() 138 thetime = ntohl(thetime); in rtime() 139 timep->tv_sec = thetime - TOFFSET; in rtime()
|
H A D | auth_time.c | 244 u_long thetime, delta; in __rpc_get_time_offset() local 349 (xdrproc_t)xdr_u_long, &thetime, tv); in __rpc_get_time_offset() 398 if (_sendto(s, &thetime, sizeof(thetime), 0, in __rpc_get_time_offset() 412 res = _recvfrom(s, (char *)&thetime, sizeof(thetime), 0, in __rpc_get_time_offset() 434 res = _read(s, (char *)&thetime, sizeof(thetime)); in __rpc_get_time_offset() 435 if (res != sizeof(thetime)) { in __rpc_get_time_offset() 451 thetime = ntohl(thetime); in __rpc_get_time_offset() 452 thetime = thetime - TOFFSET; /* adjust to UNIX time */ in __rpc_get_time_offset() 454 thetime = 0; in __rpc_get_time_offset() 485 delta = (thetime > tv.tv_sec) ? thetime - tv.tv_sec : in __rpc_get_time_offset() [all …]
|
/freebsd/usr.bin/gprof/ |
H A D | gprof.c | 474 double thetime; in asgnsamples() local 490 thetime = ccnt; in asgnsamples() 497 totime += thetime; in asgnsamples() 520 overlap * thetime / scale, overlap); in asgnsamples() 523 nl[j].time += overlap * thetime / scale; in asgnsamples()
|