Searched defs:tick (Results 1 - 21 of 21) sorted by relevance

/illumos-gate/usr/src/cmd/refer/
H A Dtick.c30 tick(void) function
/illumos-gate/usr/src/uts/sun4v/os/
H A Dmach_mp_states.c170 uint64_t starttick, endtick, tick, lasttick; local
194 tick = gettick();
197 * If there is a big jump between the current tick
201 if (tick > (lasttick + xc_tick_jump_limit)) {
202 endtick += (tick - lasttick);
205 lasttick = tick;
206 if (tick > endtick) {
H A Dmach_cpu_states.c476 * Turn off TRAPTRACE and save the current %tick value in panic_tick.
792 uint64_t starttick, endtick, tick, lasttick; local
815 tick = gettick();
817 * If there is a big jump between the current tick
821 if (tick > (lasttick + xc_tick_jump_limit))
822 endtick += (tick - lasttick);
823 lasttick = tick;
824 if (tick > endtick) {
851 uint64_t starttick, endtick, tick, lasttick; local
971 tick
1269 uint64_t starttick, endtick, tick, lasttick, traptrace_id; local
[all...]
/illumos-gate/usr/src/uts/sun4u/cpu/
H A Dopl_kdi.c91 uint64_t endtick, tick; local
105 tick = gettick();
106 if (tick > endtick) {
H A Dus3_cheetah.c161 uint64_t starttick, endtick, tick, lasttick; local
222 tick = gettick();
224 * If there is a big jump between the current tick
228 if (tick > (lasttick + xc_tick_jump_limit))
229 endtick += (tick - lasttick);
230 lasttick = tick;
231 if (tick > endtick) {
252 tick = gettick();
253 endtick = tick + xc_tick_limit;
254 lasttick = tick;
[all...]
H A Dus3_jalapeno.c183 uint64_t starttick, endtick, tick, lasttick; local
217 tick = gettick();
219 * If there is a big jump between the current tick
223 if (tick > (lasttick + xc_tick_jump_limit))
224 endtick += (tick - lasttick);
225 lasttick = tick;
226 if (tick > endtick) {
247 tick = gettick();
248 endtick = tick + xc_tick_limit;
249 lasttick = tick;
[all...]
H A Dus3_cheetahplus.c168 uint64_t starttick, endtick, tick, lasttick; local
229 tick = gettick();
231 * If there is a big jump between the current tick
235 if (tick > (lasttick + xc_tick_jump_limit))
236 endtick += (tick - lasttick);
237 lasttick = tick;
238 if (tick > endtick) {
259 tick = gettick();
260 endtick = tick + xc_tick_limit;
261 lasttick = tick;
[all...]
H A Dopl_olympus.c335 uint64_t starttick, endtick, tick, lasttick; local
409 tick = gettick();
411 * If there is a big jump between the current tick
415 if (tick > (lasttick + xc_tick_jump_limit))
416 endtick += (tick - lasttick);
417 lasttick = tick;
418 if (tick > endtick) {
507 while (gettick() < (tick + sys_clock_mhz))
623 * The traptrace code uses either %tick or %stick for
676 uint64_t idsr, starttick, endtick, tick, lasttic local
[all...]
H A Dspitfire.c684 uint64_t tick, tick_prev; local
689 tick = starttick = gettick();
698 * When we detect an irregular tick jump, we adjust
699 * the timer window to the current tick value.
701 tick_prev = tick;
702 tick = gettick();
703 ticks = tick - tick_prev;
705 endtick = tick + xc_tick_limit;
706 } else if (tick > endtick) {
H A Dus3_common.c550 * The traptrace code uses either %tick or %stick for
1075 uint64_t idsr, starttick, endtick, tick, lasttick; local
1102 tick = gettick();
1104 * If there is a big jump between the current tick
1108 if (tick > (lasttick + xc_tick_jump_limit))
1109 endtick += (tick - lasttick);
1110 lasttick = tick;
1111 if (tick > endtick) {
1123 tick = gettick();
1124 endtick = tick
[all...]
/illumos-gate/usr/src/cmd/mdb/sparc/mdb/
H A Dkvm_v9dep.c249 uint64_t tick; local
367 * The panic_tick variable records %tick at the approximate
370 if (mdb_tgt_readsym(t, MDB_TGT_AS_VIRT, &tick, sizeof (tick),
371 MDB_TGT_OBJ_EXEC, "panic_tick") == sizeof (tick))
372 kregs[KREG_TICK] = tick;
/illumos-gate/usr/src/uts/sparc/v9/os/
H A Dsimulator.c1142 * Simulate a "rd %tick" or "rd %stick" (%asr24) instruction.
1157 * Make sure this is either a %tick read (rs1 == 0x4) or
1164 uint64_t tick; local
1166 tick = gettick_counter();
1167 if (putreg(&tick, rp, rd, &badaddr) == 0)
/illumos-gate/usr/src/cmd/cpc/common/
H A Dcpustat.c197 case 't': /* print %tick */
322 uint64_t tick; local
326 tick = cpc_buf_tick(cpc, buf);
329 mstimestamp(hrtime), (int)cpuid, "tick");
332 "%9" PRId64 " ", tick);
/illumos-gate/usr/src/cmd/mdb/common/modules/nca/
H A Dnca.c273 tick2msec(uint64_t tick) argument
291 return (tick_per_msec ? tick / tick_per_msec : tick * msec_per_tick);
/illumos-gate/usr/src/boot/sys/sys/
H A Dtime.h331 int tick; /* micro-seconds per hz tick */ member in struct:clockinfo
/illumos-gate/usr/src/cmd/trapstat/sun4/
H A Dtrapstat.c546 hrtime_t tick = g_ndata->tdata_snaptick - g_odata->tdata_snaptick; local
561 if (time >= tick) {
568 time = tick / 1000 * 999;
571 p = (double)time / (double)tick * (double)100.0;
/illumos-gate/usr/src/uts/common/os/
H A Dkcpc.c428 kcpc_sample(kcpc_set_t *set, uint64_t *buf, hrtime_t *hrtime, uint64_t *tick) argument
492 if (copyout(&ctx->kc_vtick, tick, sizeof (uint64_t)) == -1)
H A Dclock.c127 * time_precision is usually equal to the kernel tick variable; however,
161 * time_adj is the adjustment added to the value of tick at each timer
172 int32_t time_adj = 0; /* tick adjust (scaled 1 / hz) */
201 * offset burst more than tick/2 from current nominal offset. It is used
256 * reprogramed to fire at a clock tick interval to serve consumers of lbolt who
409 clock_t now = LBOLT_NO_ACCOUNT; /* current tick */
422 * the time delta processing which occurs every clock tick
928 * became runable during the last tick.
1264 * tvp is the time of the last tick; usec is a microsecond count since the
1265 * last tick
2183 hrtime_t tick = gethrtime(); local
[all...]
/illumos-gate/usr/src/uts/common/disp/
H A Dsysdc.c515 * Otherwise, if we've already done a pri check this tick,
536 * throw away the old data, and pretend this tick didn't happen.
565 const uint_t tick = (flags & SDC_UPDATE_TICK); local
609 * the thread's priority if our timeout is delayed by a tick or
639 if (tick) {
/illumos-gate/usr/src/grub/grub-0.97/netboot/
H A Dtg3.c1261 unsigned int tick; local
1276 tick = 0;
1277 while (++tick < 195000) {
/illumos-gate/usr/src/cmd/mdb/common/kmdb/
H A Dkmdb_kvm.c2183 char *tick, *objname, *symname; local
2186 if ((tick = strchr(fullname, '`')) == fullname) {
2192 * Deferred breakpoints are always scoped. If we didn't find a tick,
2196 if (tick == NULL) {
2212 if (*(tick + 1) == '\0') {
2217 objname = strndup(fullname, tick - fullname);
2218 symname = tick + 1;

Completed in 149 milliseconds