Home
last modified time | relevance | path

Searched refs:when (Results 1 – 25 of 396) sorted by relevance

12345678910>>...16

/illumos-gate/usr/src/uts/common/os/
H A Dclock_highres.c96 const struct itimerspec *when) in clock_highres_timer_settime() argument
119 if (when->it_value.tv_sec == 0 && in clock_highres_timer_settime()
120 when->it_value.tv_nsec > 0 && in clock_highres_timer_settime()
124 if (when->it_interval.tv_sec == 0 && in clock_highres_timer_settime()
147 when = &clamped; in clock_highres_timer_settime()
162 it->it_itime = *when; in clock_highres_timer_settime()
232 it->it_itime = *when; in clock_highres_timer_settime()
279 *when = it->it_itime; in clock_highres_timer_gettime()
295 timerspecclear(&when->it_value); in clock_highres_timer_gettime()
312 timerspecclear(&when->it_value); in clock_highres_timer_gettime()
[all …]
H A Dclock_realtime.c185 const struct itimerspec *when) in clock_realtime_timer_settime() argument
206 it->it_itime = *when; in clock_realtime_timer_settime()
248 clock_realtime_timer_gettime(itimer_t *it, struct itimerspec *when) in clock_realtime_timer_gettime() argument
259 *when = it->it_itime; in clock_realtime_timer_gettime()
262 if (!timerspecisset(&when->it_value)) in clock_realtime_timer_gettime()
265 if (timerspeccmp(&when->it_value, &now) < 0) { in clock_realtime_timer_gettime()
270 timerspecclear(&when->it_value); in clock_realtime_timer_gettime()
272 timespecsub(&when->it_value, &now); in clock_realtime_timer_gettime()
H A Dtimer.c809 itimerspec_t when; in timer_gettime() local
815 error = it->it_backend->clk_timer_gettime(it, &when); in timer_gettime()
821 if (copyout(&when, val, sizeof (itimerspec_t))) in timer_gettime()
824 if (ITIMERSPEC_OVERFLOW(&when)) in timer_gettime()
829 ITIMERSPEC_TO_ITIMERSPEC32(&w32, &when) in timer_gettime()
842 itimerspec_t when; in timer_settime() local
853 if (copyin(val, &when, sizeof (itimerspec_t))) in timer_settime()
861 ITIMERSPEC32_TO_ITIMERSPEC(&when, &w32); in timer_settime()
864 if (itimerspecfix(&when.it_value) || in timer_settime()
865 (itimerspecfix(&when.it_interval) && in timer_settime()
[all …]
H A Dcyclic.c1672 "add-xcall", when->cyt_when, when->cyt_interval); in cyclic_add_xcall()
1735 ASSERT(when->cyt_when >= 0 && when->cyt_interval > 0); in cyclic_add_here()
1753 arg.cyx_when = when; in cyclic_add_here()
1915 arg.cyx_when = when; in cyclic_remove_here()
2052 cyc_time_t when; in cyclic_reprogram_here() local
2058 arg.cyx_when = &when; in cyclic_reprogram_here()
2075 cyc_time_t when; in cyclic_juggle_one_to() local
2517 cyc_time_t when; in cyclic_omni_start() local
2528 when.cyt_when = 0; in cyclic_omni_start()
2535 ASSERT(when.cyt_when >= 0 && when.cyt_interval > 0); in cyclic_omni_start()
[all …]
/illumos-gate/usr/src/cmd/touch/
H A Dtouch.c280 time_t when; in parse_datetime() local
343 when -= (timezone - altzone); in parse_datetime()
383 ts->tv_sec = when; in parse_datetime()
393 time_t when; in parse_time() local
408 when = time(0); in parse_time()
442 when -= (timezone-altzone); in parse_time()
444 ts->tv_sec = when; in parse_time()
451 time_t when; in parse_timespec() local
460 when = time(0); in parse_timespec()
485 when -= (timezone - altzone); in parse_timespec()
[all …]
/illumos-gate/usr/src/cmd/cron/
H A Dat.c167 time_t when = 0; in main() local
271 when = parse_time(optarg); in main()
306 when = now; in main()
339 when = gtime(&at); in main()
341 when += timezone; in main()
349 when = mktime(ct); in main()
415 if (when - MINUTE < HOUR) in main()
726 printf(":%lu", when); in copy()
937 time_t when = 0; in parse_time() local
952 when = time(0); in parse_time()
[all …]
/illumos-gate/usr/src/cmd/pwconv/
H A Dpwconv.c99 time_t when, minweeks, maxweeks; in main() local
263 when = (long)a64l(pwdp->pw_age); in main()
264 maxweeks = when & 077; in main()
265 minweeks = (when >> 6) & 077; in main()
266 when >>= 12; in main()
267 sp->sp_lstchg = when * 7; in main()
354 when = (long)a64l(pwdp->pw_age); in main()
355 maxweeks = when & 077; in main()
356 minweeks = (when >> 6) & 077; in main()
357 when >>= 12; in main()
[all …]
/illumos-gate/usr/src/contrib/ast/src/cmd/ksh93/
H A DRELEASE239 when called from a KEYBD trap.
495 when A="" B=B has been fixed.
570 error message when when var is unset with ${!var} and ${#var}.
586 when var is unset with ${var op string} when op is #, % or /.
1306 08-08-06 A bug in read when used in a loop when a prompt was specified
1692 when read from a terminal device.
1718 06-10-12 A bug when skipping over `...` with ${x:=`...`} when x is set
1794 when switching from emacs mode.
1899 when braceexpand is enabled.
2403 when traps were set has been fixed.
[all …]
H A DRELEASE9358 c. A bug which caused a core dump on some machines when
61 performed arithmetic evaluation when the discipline
110 directed to /dev/null for background jobs when
132 l. The value of OPTARG when an option that required
152 reporting an error when failing to open a script
154 d. A bug that could lead to memory corruption when a
160 f. A bug which could cause a coprocess to hang when
242 defined when the subshell completes.
282 displayed when a user entered a literal carriage
319 with a leading 10# when declared with typeset -i
[all …]
/illumos-gate/usr/src/uts/common/dtrace/
H A Dprofile.c336 profile_online(void *arg, cpu_t *cpu, cyc_handler_t *hdlr, cyc_time_t *when) in profile_online() argument
348 when->cyt_interval = prof->prof_interval; in profile_online()
349 when->cyt_when = dtrace_gethrtime() + when->cyt_interval; in profile_online()
351 pcpu->profc_expected = when->cyt_when; in profile_online()
352 pcpu->profc_interval = when->cyt_interval; in profile_online()
372 cyc_time_t when; in profile_enable() local
382 when.cyt_interval = prof->prof_interval; in profile_enable()
383 when.cyt_when = dtrace_gethrtime() + when.cyt_interval; in profile_enable()
392 prof->prof_cyclic = cyclic_add(&hdlr, &when); in profile_enable()
/illumos-gate/usr/src/test/bhyve-tests/tests/kdev/
H A Dvatpit_freq.c35 hrtime_t when; member
43 hrtime_t time_delta = after.when - before.when; in check_reading()
121 readings[nread].when = gethrtime(); in main()
H A Dvhpet_freq.c35 hrtime_t when; member
43 hrtime_t time_delta = after.when - before.when; in check_reading()
122 readings[nread].when = gethrtime(); in main()
H A Dvpmtmr_freq.c35 hrtime_t when; member
43 hrtime_t time_delta = after.when - before.when; in check_reading()
127 readings[nread].when = gethrtime(); in main()
H A Dvlapic_freq.c35 hrtime_t when; member
43 hrtime_t time_delta = after.when - before.when; in check_reading()
119 readings[nread].when = gethrtime(); in test_for_divisor()
H A Dvlapic_freq_periodic.c35 hrtime_t when; member
43 const hrtime_t time_delta = after.when - before.when; in check_reading()
129 readings[nread].when = gethrtime(); in run_test()
/illumos-gate/usr/src/lib/libsqlite/test/
H A Dnull.test58 select ifnull(case when b<>0 then 1 else 0 end, 99) from t1;
63 select ifnull(case when not b<>0 then 1 else 0 end, 99) from t1;
68 select ifnull(case when b<>0 and c<>0 then 1 else 0 end, 99) from t1;
73 select ifnull(case when not (b<>0 and c<>0) then 1 else 0 end, 99) from t1;
78 select ifnull(case when b<>0 or c<>0 then 1 else 0 end, 99) from t1;
83 select ifnull(case when not (b<>0 or c<>0) then 1 else 0 end, 99) from t1;
88 select ifnull(case b when c then 1 else 0 end, 99) from t1;
93 select ifnull(case c when b then 1 else 0 end, 99) from t1;
178 # Ticket #461 - Make sure nulls are handled correctly when doing a
/illumos-gate/usr/src/uts/sun4v/os/
H A Dwdt.c269 cyc_time_t when; in watchdog_cyclic_init() local
275 when.cyt_when = 0; in watchdog_cyclic_init()
276 when.cyt_interval = wdt_cyclic_interval; in watchdog_cyclic_init()
279 (void) cyclic_add(&hdlr, &when); in watchdog_cyclic_init()
/illumos-gate/usr/src/boot/common/
H A Dboot.c171 time_t when, otime, ntime; in autoboot() local
204 when = otime + timeout; /* when to boot */ in autoboot()
220 if (ntime >= when) { in autoboot()
227 kernelname, (int)(when - ntime), in autoboot()
228 (when - ntime) == 1? "":"s"); in autoboot()
/illumos-gate/usr/src/lib/libm/i386/src/
H A Dpow.S107 cmpb $0x40,%cl / C3=1 C2=0 C1=? C0=0 when +-0
111 cmpb $0x40,%cl / C3=1 C2=0 C1=? C0=0 when +-0
149 cmpb $0x01,%cl / C3=0 C2=0 C1=? C0=1 when +-NaN
158 cmpb $0x01,%cl / C3=0 C2=0 C1=? C0=1 when +-NaN
180 cmpb $0x05,%cl / C3=0 C2=1 C1=0 C0=1 when +inf
182 cmpb $0x07,%cl / C3=0 C2=1 C1=1 C0=1 when -inf
192 cmpb $0x40,%cl / C3=1 C2=0 C1=0 C0=0 when +0
194 cmpb $0x42,%cl / C3=1 C2=0 C1=1 C0=0 when -0
202 cmpb $0x05,%cl / C3=0 C2=1 C1=0 C0=1 when +inf
204 cmpb $0x07,%cl / C3=0 C2=1 C1=1 C0=1 when -inf
[all …]
H A Dpowf.S108 cmpb $0x40,%cl / C3=1 C2=0 C1=? C0=0 when +-0
135 cmpb $0x01,%cl / C3=0 C2=0 C1=? C0=1 when +-NaN
144 cmpb $0x01,%cl / C3=0 C2=0 C1=? C0=1 when +-NaN
166 cmpb $0x05,%cl / C3=0 C2=1 C1=0 C0=1 when +inf
168 cmpb $0x07,%cl / C3=0 C2=1 C1=1 C0=1 when -inf
178 cmpb $0x40,%cl / C3=1 C2=0 C1=0 C0=0 when +0
180 cmpb $0x42,%cl / C3=1 C2=0 C1=1 C0=0 when -0
188 cmpb $0x05,%cl / C3=0 C2=1 C1=0 C0=1 when +inf
190 cmpb $0x07,%cl / C3=0 C2=1 C1=1 C0=1 when -inf
349 cmpb $0x05,%cl / C3=0 C2=1 C1=? C0=1 when +-inf
[all …]
H A Dpowl.S104 cmpb $0x40,%cl / C3=1 C2=0 C1=? C0=0 when +-0
131 cmpb $0x01,%cl / C3=0 C2=0 C1=? C0=1 when +-NaN
140 cmpb $0x01,%cl / C3=0 C2=0 C1=? C0=1 when +-NaN
162 cmpb $0x05,%cl / C3=0 C2=1 C1=0 C0=1 when +inf
164 cmpb $0x07,%cl / C3=0 C2=1 C1=1 C0=1 when -inf
174 cmpb $0x40,%cl / C3=1 C2=0 C1=0 C0=0 when +0
176 cmpb $0x42,%cl / C3=1 C2=0 C1=1 C0=0 when -0
184 cmpb $0x05,%cl / C3=0 C2=1 C1=0 C0=1 when +inf
186 cmpb $0x07,%cl / C3=0 C2=1 C1=1 C0=1 when -inf
341 cmpb $0x05,%cl / C3=0 C2=1 C1=? C0=1 when +-inf
[all …]
/illumos-gate/usr/src/lib/libm/amd64/src/
H A Dpowl.S104 cmpb $0x40,%cl / C3=1 C2=0 C1=? C0=0 when +-0
129 cmpb $0x01,%cl / C3=0 C2=0 C1=? C0=1 when +-NaN
138 cmpb $0x01,%cl / C3=0 C2=0 C1=? C0=1 when +-NaN
159 cmpb $0x05,%cl / C3=0 C2=1 C1=0 C0=1 when +inf
161 cmpb $0x07,%cl / C3=0 C2=1 C1=1 C0=1 when -inf
171 cmpb $0x40,%cl / C3=1 C2=0 C1=0 C0=0 when +0
173 cmpb $0x42,%cl / C3=1 C2=0 C1=1 C0=0 when -0
181 cmpb $0x05,%cl / C3=0 C2=1 C1=0 C0=1 when +inf
183 cmpb $0x07,%cl / C3=0 C2=1 C1=1 C0=1 when -inf
327 cmpb $0x05,%cl / C3=0 C2=1 C1=? C0=1 when +-inf
[all …]
/illumos-gate/usr/src/uts/sun4/io/
H A Dcbe.c268 cyc_time_t when; in cbe_init() local
311 when.cyt_when = 0; in cbe_init()
312 when.cyt_interval = nsec_per_tick; in cbe_init()
314 cbe_hres_cyclic = cyclic_add(&hdlr, &when); in cbe_init()
/illumos-gate/usr/src/cmd/sgs/tools/
H A DSUNWonld-README193 4260872 libelf hangs when libthread present
194 4224569 linker core dumping when profiling specified
833 when mmap fails in anon_map()
920 6183645 ld core dumps when automounter fails
1033 6299525 .init order failure when processing cycles
1204 6568745 segfault when using LD_DEBUG with bit_audit library when instrumenting
1295 when mmap fails in anon_map()
1424 6658385 ld core dumps when building Xorg on nv_82
1564 6834197 ld pukes when given an empty plate
1673 13684 ld aborts when input object has no file name
[all …]
/illumos-gate/usr/src/uts/sun4v/ml/
H A Dwbuf.S52 ! This happens when a user tries to spill to an unmapped or
96 ! This happens when sys_trap's save spills to an unmapped stack.
188 ! This happens when a user tries to spill to an unmapped or
232 ! This happens when sys_trap's save spills to an unmapped stack.
389 ! This happens when a user tries to fill to an unmapped or
410 ! sys_trap wants %cwp to be the same as when the trap occured,
429 ! This happens when user_rtt's restore fills from an unmapped or

12345678910>>...16