HomeSort by: relevance | last modified time | path
    Searched defs:psecs (Results 1 - 3 of 3) sorted by relevancy

  /src/bin/csh/
time.c 251 psecs(long l) function in typeref:typename:void
  /src/usr.bin/systat/
ps.c 356 long psecs; /* "parts" of a second. first micro, then centi */ local in function:time2str
362 psecs = 0;
370 psecs = kp->p_rtime_usec;
375 psecs += k->ki_u.u_cru.ru_utime.tv_usec +
382 psecs = (psecs + 5000) / 10000;
383 secs += psecs / 100;
384 psecs = psecs % 100;
387 secs%60, psecs);
    [all...]
  /src/bin/ps/
print.c 1009 cputime1(int32_t secs, int32_t psecs, VAR *v, enum mode mode)
1016 psecs = (psecs + 5000) / 10000;
1017 secs += psecs / 100;
1018 psecs = psecs % 100;
1040 (long)psecs);
1050 int32_t psecs; /* "parts" of a second. first micro, then centi */ local in function:cputime
1060 psecs = k->p_rtime_usec;
1063 psecs += k->p_uctime_usec
1075 int32_t psecs; \/* "parts" of a second. first micro, then centi *\/ local in function:lcputime
    [all...]

Completed in 13 milliseconds