HomeSort by relevance Sort by last modified time
    Searched refs:ts (Results 1 - 25 of 266) sorted by null

1 2 3 4 5 6 7 8 91011

  /onnv/onnv-gate/usr/src/cmd/dtrace/test/tst/common/printf/
tst.printcont.d 39 uint64_t ts;
43 ts = 53114233149441;
44 printf("%u\n", ts);
45 printf("%u\n", ts);
46 printf("%u\n", ts);
47 printf("%u\n", ts);
48 printf("%u\n", ts);
49 printf("%u\n", ts);
50 printf("%u\n", ts);
51 printf("%u\n", ts);
    [all...]
  /onnv/onnv-gate/usr/src/cmd/dtrace/demo/agg/
writetime.d 29 self->ts = timestamp;
33 /self->ts/
35 @time[execname] = avg(timestamp - self->ts);
36 self->ts = 0;
writetimeq.d 29 self->ts = timestamp;
33 /self->ts/
35 @time[execname] = quantize(timestamp - self->ts);
36 self->ts = 0;
  /onnv/onnv-gate/usr/src/cmd/dtrace/demo/sched/
where.d 29 self->ts = timestamp;
33 /self->ts/
35 @[cpu] = quantize(timestamp - self->ts);
36 self->ts = 0;
howlong.d 31 self->ts = timestamp;
35 /self->ts/
39 lquantize((timestamp - self->ts) / 1000000, 0, 500, 25);
40 self->ts = 0;
qtime.d 28 ts[args[0]->pr_lwpid, args[1]->pr_pid, args[2]->cpu_id] =
33 /ts[args[0]->pr_lwpid, args[1]->pr_pid, args[2]->cpu_id]/
36 ts[args[0]->pr_lwpid, args[1]->pr_pid, args[2]->cpu_id]);
37 ts[args[0]->pr_lwpid, args[1]->pr_pid, args[2]->cpu_id] = 0;
whererun.d 37 self->ts = timestamp;
41 /self->ts/
43 @[cpu] = sum(timestamp - self->ts);
44 self->ts = 0;
  /onnv/onnv-gate/usr/src/lib/libast/common/comp/
mktime.c 50 mktime(struct tm* ts)
55 tm.tm_sec = ts->tm_sec;
56 tm.tm_min = ts->tm_min;
57 tm.tm_hour = ts->tm_hour;
58 tm.tm_mday = ts->tm_mday;
59 tm.tm_mon = ts->tm_mon;
60 tm.tm_year = ts->tm_year;
61 tm.tm_wday = ts->tm_wday;
62 tm.tm_yday = ts->tm_yday;
63 tm.tm_isdst = ts->tm_isdst
    [all...]
strptime.c 48 strptime(const char* s, const char* format, struct tm* ts)
56 tm.tm_sec = ts->tm_sec;
57 tm.tm_min = ts->tm_min;
58 tm.tm_hour = ts->tm_hour;
59 tm.tm_mday = ts->tm_mday;
60 tm.tm_mon = ts->tm_mon;
61 tm.tm_year = ts->tm_year;
62 tm.tm_wday = ts->tm_wday;
63 tm.tm_yday = ts->tm_yday;
64 tm.tm_isdst = ts->tm_isdst
    [all...]
getdate.c 61 static struct tm ts;
71 ts.tm_sec = tm->tm_sec;
72 ts.tm_min = tm->tm_min;
73 ts.tm_hour = tm->tm_hour;
74 ts.tm_mday = tm->tm_mday;
75 ts.tm_mon = tm->tm_mon;
76 ts.tm_year = tm->tm_year;
77 ts.tm_wday = tm->tm_wday;
78 ts.tm_yday = tm->tm_yday;
79 ts.tm_isdst = tm->tm_isdst
    [all...]
  /onnv/onnv-gate/usr/src/lib/libc/port/sys/
utimesys.c 52 timespec_t ts[2]; local
61 ts[0].tv_sec = ltimes.actime;
62 ts[0].tv_nsec = 0;
63 ts[1].tv_sec = ltimes.modtime;
64 ts[1].tv_nsec = 0;
65 tsp = ts;
74 timespec_t ts[2]; local
83 ts[0].tv_sec = ltimes[0].tv_sec;
84 ts[0].tv_nsec = ltimes[0].tv_usec * 1000;
85 ts[1].tv_sec = ltimes[1].tv_sec
97 timespec_t ts[2]; local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/dtrace/demo/intro/
rwtime.d 31 ts[probefunc] = timestamp;
36 /pid == $1 && ts[probefunc] != 0/
38 printf("%d nsecs", timestamp - ts[probefunc]);
  /onnv/onnv-gate/usr/src/cmd/dtrace/demo/sdt/
intr.d 29 self->ts = vtimestamp;
33 /self->ts/
37 this->devi->devi_instance] = quantize(vtimestamp - self->ts);
  /onnv/onnv-gate/usr/src/cmd/dtrace/test/tst/common/docsExamples/
rwtime.d 42 ts[probefunc] = timestamp;
47 /(ts[probefunc] != 0) && (pid == 100551)/
49 printf("%d nsecs\n", timestamp - ts[probefunc]);
  /onnv/onnv-gate/usr/src/lib/libc/port/gen/
poll.c 39 timespec_t ts; local
45 ts.tv_sec = timeout / MILLISEC;
46 ts.tv_nsec = (timeout % MILLISEC) * MICROSEC;
47 tsp = &ts;
  /onnv/onnv-gate/usr/src/lib/gss_mechs/mech_krb5/krb5/krb/
gc_frm_kdc.c 59 #define NXT_TGT_IS_CACHED(ts) \
60 ((ts)->nxt_tgt == (ts)->cur_cc_tgt)
62 #define MARK_CUR_CC_TGT_CLEAN(ts) \
64 (ts)->cc_tgts.dirty[(ts)->cc_tgts.cur] = 0; \
108 #define TR_DBG(ts, prog) tr_dbg(ts, prog)
109 #define TR_DBG_RET(ts, prog, ret) tr_dbg_ret(ts, prog, ret
767 struct tr_state state, *ts; local
    [all...]
  /onnv/onnv-gate/usr/src/uts/i86pc/io/
hardclk.c 57 tod_set(timestruc_t ts)
65 TODOP_SET(tod_ops, ts);
76 timestruc_t ts; local
80 ts = TODOP_GET(tod_ops);
81 ts.tv_sec = tod_validate(ts.tv_sec);
82 return (ts);
128 timestruc_t ts; local
131 ts = TODOP_GET(tod_ops);
132 set_hrestime(&ts);
    [all...]
  /onnv/onnv-gate/usr/src/cmd/dtrace/test/tst/common/proc/
tst.sigwait.c 40 struct itimerspec ts; local
58 ts.it_value.tv_sec = 1;
59 ts.it_value.tv_nsec = 0;
60 ts.it_interval.tv_sec = 0;
61 ts.it_interval.tv_nsec = NANOSEC / 2;
63 if (timer_settime(tid, TIMER_RELTIME, &ts, NULL) == -1) {
  /onnv/onnv-gate/usr/src/cmd/dtrace/test/tst/common/speculation/
err.D_AGG_SPEC.SpeculateWithLquant.d 45 self->ts = timestamp;
49 /self->ts/
54 @Lqauntus[execname] = lquantize(timestamp - self->ts, 0, 100, 1);
err.D_AGG_SPEC.SpeculateWithQuant.d 45 self->ts = timestamp;
49 /self->ts/
54 @Qauntus[execname] = quantize(timestamp - self->ts);
  /onnv/onnv-gate/usr/src/lib/libxcurses/src/libc/xcurses/
brdr_st.c 49 border_set(ls, rs, ts, bs, tl, tr, bl, br)
50 const cchar_t *ls, *rs, *ts, *bs, *tl, *tr, *bl, *br;
57 ls, rs, ts, bs, tl, tr, bl, br
61 code = wborder_set(stdscr, ls, rs, ts, bs, tl, tr, bl, br);
  /onnv/onnv-gate/usr/src/lib/brand/lx/lx_brand/common/
clock.c 52 struct timespec ts; local
57 if (clock_gettime(ltos_clock[clock], &ts) < 0)
60 return ((uucopy(&ts, tp, sizeof (struct timespec)) < 0) ? -EFAULT : 0);
66 struct timespec ts; local
71 if (uucopy(tp, &ts, sizeof (struct timespec)) < 0)
74 return ((clock_settime(ltos_clock[clock], &ts) < 0) ? -errno : 0);
80 struct timespec ts; local
85 if (clock_getres(ltos_clock[clock], &ts) < 0)
88 return ((uucopy(&ts, tp, sizeof (struct timespec)) < 0) ? -EFAULT : 0);
  /onnv/onnv-gate/usr/src/uts/common/sys/
time_impl.h 68 #define TIMESPEC32_TO_TIMESPEC(ts, ts32) { \
69 (ts)->tv_sec = (time_t)(ts32)->tv_sec; \
70 (ts)->tv_nsec = (ts32)->tv_nsec; \
73 #define TIMESPEC_TO_TIMESPEC32(ts32, ts) { \
74 (ts32)->tv_sec = (time32_t)(ts)->tv_sec; \
75 (ts32)->tv_nsec = (ts)->tv_nsec; \
78 #define TIMESPEC_OVERFLOW(ts) \
79 ((ts)->tv_sec < TIME32_MIN || (ts)->tv_sec > TIME32_MAX)
  /onnv/onnv-gate/usr/src/uts/common/os/
turnstile.c 36 * ts = turnstile_lookup(lp);
38 * turnstile_block(ts, TS_READER_Q, lp, &foo_sobj_ops);
42 * ts = turnstile_lookup(lp);
46 * turnstile_wakeup(ts, TS_WRITER_Q, nwaiters, new_owner or NULL);
182 turnstile_pi_inherit(turnstile_t *ts, kthread_t *inheritor, pri_t epri)
185 ASSERT(DISP_LOCK_HELD(&TURNSTILE_CHAIN(ts->ts_sobj).tc_lock));
190 if (ts->ts_inheritor == NULL) {
191 ts->ts_inheritor = inheritor;
192 ts->ts_epri = epri;
194 ts->ts_prioinv = inheritor->t_prioinv
284 turnstile_t *ts; local
660 turnstile_t *ts = t->t_ts; local
    [all...]
  /onnv/onnv-gate/usr/src/lib/libcurses/screen/
_border.c 49 border(chtype ls, chtype rs, chtype ts, chtype bs,
52 return (wborder(stdscr, ls, rs, ts, bs, tl, tr, bl, br));

Completed in 240 milliseconds

1 2 3 4 5 6 7 8 91011