Searched defs:ltemp (Results 1 - 3 of 3) sorted by relevance

/illumos-gate/usr/src/cmd/sdiff/
H A Dsdiff.c113 static char *ltemp; variable
230 ltemp = strdup("/tmp/sdifflXXXXXX");
231 if ((lfd = mkstemp(ltemp)) == -1 ||
235 ltemp);
345 if ((left = fopen(ltemp, "w")) == NULL)
347 "main: Cannot open temp %s"), ltemp);
630 if (ltemp) {
631 (void) unlink(ltemp);
632 free(ltemp);
676 cpp(ltemp, lef
[all...]
/illumos-gate/usr/src/cmd/bnu/
H A Dperfstat.c525 long ltemp; /* Temporary storage for long arith. */ local
541 ltemp = minuend->tm_real - subtra->tm_real;
542 diff->tu_real = ((float) ltemp)/ticks;
546 ltemp = mintms->tms_utime
550 diff->tu_user = ((float) ltemp)/ticks;
554 ltemp = mintms->tms_stime
558 diff->tu_sys = ((float) ltemp)/ticks;
/illumos-gate/usr/src/uts/common/os/
H A Dclock.c404 int32_t ltemp; local
437 ltemp = -time_phase / SCALE_PHASE;
438 time_phase += ltemp * SCALE_PHASE;
440 timedelta -= ltemp * (NANOSEC/MICROSEC);
443 ltemp = time_phase / SCALE_PHASE;
444 time_phase -= ltemp * SCALE_PHASE;
446 timedelta += ltemp * (NANOSEC/MICROSEC);
1184 int ltemp, mtemp, s; local
1190 ltemp = offset;
1192 ltemp
[all...]

Completed in 88 milliseconds