Home
last modified time | relevance | path

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

/trueos/lib/libc/rpc/
HDrtime.c78 unsigned long thetime; local
103 res = _sendto(s, (char *)&thetime, sizeof(thetime), 0,
123 res = _recvfrom(s, (char *)&thetime, sizeof(thetime), 0,
134 res = _read(s, (char *)&thetime, sizeof(thetime));
140 if (res != sizeof(thetime)) {
144 thetime = ntohl(thetime);
145 timep->tv_sec = thetime - TOFFSET;
HDauth_time.c254 u_long thetime, delta; local
359 (xdrproc_t)xdr_u_long, &thetime, tv);
408 if (_sendto(s, &thetime, sizeof(thetime), 0,
422 res = _recvfrom(s, (char *)&thetime, sizeof(thetime), 0,
444 res = _read(s, (char *)&thetime, sizeof(thetime));
445 if (res != sizeof(thetime)) {
461 thetime = ntohl(thetime);
462 thetime = thetime - TOFFSET; /* adjust to UNIX time */
464 thetime = 0;
495 delta = (thetime > tv.tv_sec) ? thetime - tv.tv_sec :
[all …]
/trueos/usr.bin/gprof/
HDgprof.c487 double thetime; in asgnsamples() local
503 thetime = ccnt; in asgnsamples()
510 totime += thetime; in asgnsamples()
533 overlap * thetime / scale, overlap); in asgnsamples()
536 nl[j].time += overlap * thetime / scale; in asgnsamples()