Home
last modified time | relevance | path

Searched refs:t32 (Results 1 – 4 of 4) sorted by relevance

/illumos-gate/usr/src/uts/common/io/
H A Dbufmod.c300 struct timeval32 *t32; in sbioc() local
302 t32 = (struct timeval32 *)mp->b_cont->b_rptr; in sbioc()
303 if (t32->tv_sec < 0 || t32->tv_usec < 0) { in sbioc()
307 ticks = TIMEVAL_TO_TICK(t32); in sbioc()
600 struct timeval32 *t32; in sbioctl() local
609 if (t32->tv_sec < 0 || t32->tv_usec < 0) { in sbioctl()
613 ticks = TIMEVAL_TO_TICK(t32); in sbioctl()
673 struct timeval32 *t32; in sbioctl() local
676 datamp = allocb(sizeof (*t32), BPRI_MED); in sbioctl()
685 TICK_TO_TIMEVAL32(sbp->sb_ticks, t32); in sbioctl()
[all …]
/illumos-gate/usr/src/uts/common/os/
H A Dtimer.c309 timespec32_t t32; in clock_settime() local
311 if (copyin(tp, &t32, sizeof (timespec32_t)) != 0) in clock_settime()
314 TIMESPEC32_TO_TIMESPEC(&t, &t32); in clock_settime()
347 timespec32_t t32; in clock_gettime() local
351 TIMESPEC_TO_TIMESPEC32(&t32, &t); in clock_gettime()
353 if (copyout(&t32, tp, sizeof (timespec32_t)) != 0) in clock_gettime()
387 timespec32_t t32; in clock_getres() local
391 TIMESPEC_TO_TIMESPEC32(&t32, &t); in clock_getres()
393 if (copyout(&t32, tp, sizeof (timespec32_t)) != 0) in clock_getres()
/illumos-gate/usr/src/common/crypto/sha1/
H A Dsha1.c445 uint32_t t32; in ROTATE_LEFT() local
447 t32 = (uint32_t)value; in ROTATE_LEFT()
448 return ((t32 << n) | (t32 >> (32 - n))); in ROTATE_LEFT()
/illumos-gate/usr/src/cmd/praudit/
H A Dformat.c2581 uint32_t t32; in do_mtime32() local
2597 if ((returnstat = pr_adr_u_int32(context, &t32, 1)) == 0) { in do_mtime32()
2603 msec32(t32/scale, in do_mtime32()
2620 uval.uint32_val = t32; in do_mtime32()