Home
last modified time | relevance | path

Searched refs:l_val (Results 1 – 2 of 2) sorted by relevance

/NextBSD/sys/compat/linux/
HDlinux_timer.c125 struct l_itimerspec l_val, l_oval; in linux_timer_settime() local
129 error = copyin(uap->new, &l_val, sizeof(l_val)); in linux_timer_settime()
132 ITS_CP(l_val, val); in linux_timer_settime()
145 struct l_itimerspec l_val; in linux_timer_gettime() local
151 ITS_CP(val, l_val); in linux_timer_gettime()
152 error = copyout(&l_val, uap->setting, sizeof(l_val)); in linux_timer_gettime()
/NextBSD/contrib/bmake/
HDcond.c489 unsigned long l_val; in CondCvtArg() local
497 l_val = strtoul(str, &eptr, str[1] == 'x' ? 16 : 10); in CondCvtArg()
500 d_val = str[0] == '-' ? -(double)-l_val : (double)l_val; in CondCvtArg()