Home
last modified time | relevance | path

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

/illumos-gate/usr/src/cmd/sdiff/
H A Dsdiff.c111 static char *ltemp; variable
228 ltemp = strdup("/tmp/sdifflXXXXXX"); in main()
229 if ((lfd = mkstemp(ltemp)) == -1 || in main()
233 ltemp); in main()
343 if ((left = fopen(ltemp, "w")) == NULL) in main()
345 "main: Cannot open temp %s"), ltemp); in main()
628 if (ltemp) { in sremove()
629 (void) unlink(ltemp); in sremove()
630 free(ltemp); in sremove()
674 cpp(ltemp, left, odes); in cmdin()
[all …]
/illumos-gate/usr/src/uts/common/os/
H A Dclock.c407 int32_t ltemp; in clock() local
440 ltemp = -time_phase / SCALE_PHASE; in clock()
441 time_phase += ltemp * SCALE_PHASE; in clock()
443 timedelta -= ltemp * (NANOSEC/MICROSEC); in clock()
446 ltemp = time_phase / SCALE_PHASE; in clock()
447 time_phase -= ltemp * SCALE_PHASE; in clock()
449 timedelta += ltemp * (NANOSEC/MICROSEC); in clock()
1188 int ltemp, mtemp, s; in clock_update() local
1194 ltemp = offset; in clock_update()
1196 ltemp = pps_offset; in clock_update()
[all …]
/illumos-gate/usr/src/cmd/bnu/
H A Dperfstat.c523 long ltemp; /* Temporary storage for long arith. */ local
539 ltemp = minuend->tm_real - subtra->tm_real;
540 diff->tu_real = ((float) ltemp)/ticks;
544 ltemp = mintms->tms_utime
548 diff->tu_user = ((float) ltemp)/ticks;
552 ltemp = mintms->tms_stime
556 diff->tu_sys = ((float) ltemp)/ticks;