HomeSort by: relevance | last modified time | path
    Searched refs:atmp (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/arch/hppa/spmath/
fpudispatch.c 667 } mtmp, atmp; local in function:decode_06
693 if (dbl_to_sgl_fcnvfxt(&fpregs[ta],(unsigned *) &atmp,
706 if (dbl_fadd(&fpregs[ta], &fpregs[ra], (unsigned *) &atmp,
718 fpregs[ta] = atmp.ints.i1;
719 fpregs[ta+1] = atmp.ints.i2;
750 if (sgl_to_sgl_fcnvfxt(&fpregs[ta],(unsigned *) &atmp,
751 (unsigned *) &atmp,&status))
761 if (sgl_fadd(&fpregs[ta], &fpregs[ra], (unsigned *) &atmp,
770 fpregs[ta] = atmp.ints.i1;
791 } mtmp, atmp; local in function:decode_26
    [all...]
  /src/lib/libc/time/
localtime.c 2114 tmcomp(register const struct tm *const atmp,
2119 if (atmp->tm_year != btmp->tm_year)
2120 return atmp->tm_year < btmp->tm_year ? -1 : 1;
2121 if ((result = (atmp->tm_mon - btmp->tm_mon)) == 0 &&
2122 (result = (atmp->tm_mday - btmp->tm_mday)) == 0 &&
2123 (result = (atmp->tm_hour - btmp->tm_hour)) == 0 &&
2124 (result = (atmp->tm_min - btmp->tm_min)) == 0)
2125 result = atmp->tm_sec - btmp->tm_sec;

Completed in 14 milliseconds