Home
last modified time | relevance | path

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

/titanic_41/usr/src/uts/common/io/
H A Dbufmod.c301 struct timeval32 *t32; in sbioc() local
303 t32 = (struct timeval32 *)mp->b_cont->b_rptr; in sbioc()
304 if (t32->tv_sec < 0 || t32->tv_usec < 0) { in sbioc()
308 ticks = TIMEVAL_TO_TICK(t32); in sbioc()
598 struct timeval32 *t32; in sbioctl() local
606 t32 = (struct timeval32 *)mp->b_cont->b_rptr; in sbioctl()
607 if (t32->tv_sec < 0 || t32->tv_usec < 0) { in sbioctl()
611 ticks = TIMEVAL_TO_TICK(t32); in sbioctl()
671 struct timeval32 *t32; in sbioctl() local
674 datamp = allocb(sizeof (*t32), BPRI_MED); in sbioctl()
[all …]
/titanic_41/usr/src/uts/common/os/
H A Dtimer.c289 timespec32_t t32; in clock_settime() local
291 if (copyin(tp, &t32, sizeof (timespec32_t)) != 0) in clock_settime()
294 TIMESPEC32_TO_TIMESPEC(&t, &t32); in clock_settime()
327 timespec32_t t32; in clock_gettime() local
331 TIMESPEC_TO_TIMESPEC32(&t32, &t); in clock_gettime()
333 if (copyout(&t32, tp, sizeof (timespec32_t)) != 0) in clock_gettime()
367 timespec32_t t32; in clock_getres() local
371 TIMESPEC_TO_TIMESPEC32(&t32, &t); in clock_getres()
373 if (copyout(&t32, tp, sizeof (timespec32_t)) != 0) in clock_getres()
/titanic_41/usr/src/common/crypto/sha1/
H A Dsha1.c105 uint32_t t32; in ROTATE_LEFT() local
107 t32 = (uint32_t)value; in ROTATE_LEFT()
108 return ((t32 << n) | (t32 >> (32 - n))); in ROTATE_LEFT()
/titanic_41/usr/src/cmd/praudit/
H A Dformat.c2447 uint32_t t32; in do_mtime32() local
2463 if ((returnstat = pr_adr_u_int32(context, &t32, 1)) == 0) { in do_mtime32()
2469 msec32(t32/scale, in do_mtime32()
2486 uval.uint32_val = t32; in do_mtime32()