Searched refs:ts (Results 1 - 25 of 89) sorted by relevance

1234

/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/printf/
H A Dtst.printcont.d39 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...]
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/threads/combined/
H A Dprustack.c78 PRThreadStack *ts; local
89 ts = _PR_THREAD_STACK_PTR(qp);
90 thr = _PR_THREAD_STACK_TO_PTR(ts);
97 PR_REMOVE_LINK(&ts->links);
100 _PR_MD_CLEAR_STACK(ts);
103 _PR_DestroySegment(ts->seg);
104 PR_DELETE(ts);
112 ts = 0;
114 ts = _PR_THREAD_STACK_PTR(qp);
115 thr = _PR_THREAD_STACK_TO_PTR(ts);
185 _PR_FreeStack(PRThreadStack *ts) argument
[all...]
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/demo/agg/
H A Dwritetime.d29 self->ts = timestamp;
33 /self->ts/
35 @time[execname] = avg(timestamp - self->ts);
36 self->ts = 0;
H A Dwritetimeq.d29 self->ts = timestamp;
33 /self->ts/
35 @time[execname] = quantize(timestamp - self->ts);
36 self->ts = 0;
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/demo/sched/
H A Dwhere.d29 self->ts = timestamp;
33 /self->ts/
35 @[cpu] = quantize(timestamp - self->ts);
36 self->ts = 0;
H A Dhowlong.d31 self->ts = timestamp;
35 /self->ts/
39 lquantize((timestamp - self->ts) / 1000000, 0, 500, 25);
40 self->ts = 0;
H A Dqtime.d28 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;
H A Dwhererun.d37 self->ts = timestamp;
41 /self->ts/
43 @[cpu] = sum(timestamp - self->ts);
44 self->ts = 0;
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/demo/intro/
H A Drwtime.d31 ts[probefunc] = timestamp;
36 /pid == $1 && ts[probefunc] != 0/
38 printf("%d nsecs", timestamp - ts[probefunc]);
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/demo/sdt/
H A Dintr.d29 self->ts = vtimestamp;
33 /self->ts/
37 this->devi->devi_instance] = quantize(vtimestamp - self->ts);
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/docsExamples/
H A Drwtime.d42 ts[probefunc] = timestamp;
47 /(ts[probefunc] != 0) && (pid == 100551)/
49 printf("%d nsecs\n", timestamp - ts[probefunc]);
H A Drwinfo.d41 uint64_t ts;
53 i[probefunc].ts = timestamp;
61 /i[probefunc].ts != 0 && pid == 100551/
63 i[probefunc].elapsed += timestamp - i[probefunc].ts;
/vbox/src/VBox/RDP/client-1.8.3/
H A Drdp5.c45 struct stream *ts; local
84 ts = ns;
87 ts = s;
92 in_uint16_le(ts, count);
93 process_orders(ts, count);
96 in_uint8s(ts, 2); /* part length */
97 process_bitmap_updates(ts);
100 in_uint8s(ts, 2); /* uint16 = 2 */
101 process_palette(ts);
111 in_uint16_le(ts,
[all...]
/vbox/src/VBox/Runtime/r3/linux/
H A Dtime-linux.cpp46 DECLINLINE(int) sys_clock_gettime(clockid_t id, struct timespec *ts) argument
48 int rc = syscall(__NR_clock_gettime, id, ts);
58 DECLINLINE(int) mono_clock(struct timespec *ts) argument
68 return clock_gettime(CLOCK_MONOTONIC, ts);
74 return sys_clock_gettime(CLOCK_MONOTONIC, ts);
89 rc = clock_gettime(CLOCK_MONOTONIC, ts);
96 rc = sys_clock_gettime(CLOCK_MONOTONIC, ts);
119 struct timespec ts; local
120 if (!mono_clock(&ts))
121 return (uint64_t)ts
[all...]
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/proc/
H A Dtst.sigwait.c40 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) {
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/speculation/
H A Derr.D_AGG_SPEC.SpeculateWithLquant.d45 self->ts = timestamp;
49 /self->ts/
54 @Lqauntus[execname] = lquantize(timestamp - self->ts, 0, 100, 1);
H A Derr.D_AGG_SPEC.SpeculateWithQuant.d45 self->ts = timestamp;
49 /self->ts/
54 @Qauntus[execname] = quantize(timestamp - self->ts);
/vbox/src/VBox/Runtime/r3/posix/
H A Dtime-posix.cpp47 struct timespec ts; local
48 if (!clock_gettime(CLOCK_MONOTONIC, &ts))
49 return (uint64_t)ts.tv_sec * RT_NS_1SEC_64
50 + ts.tv_nsec;
H A Dthread2-posix.cpp77 struct timespec ts; local
80 ts.tv_nsec = (cMillies % 1000) * 1000000;
81 ts.tv_sec = cMillies / 1000;
82 if (!nanosleep(&ts, &tsrem))
113 struct timespec ts; local
116 ts.tv_nsec = (cMillies % 1000) * 1000000;
117 ts.tv_sec = cMillies / 1000;
118 if (!nanosleep(&ts, &tsrem))
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/rates/
H A Dtst.statusrate.d49 ts = timestamp;
53 /(this->delta = timestamp - ts) > 2 * NANOSEC/
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/demo/struct/
H A Drwinfo.d28 uint64_t ts; /* timestamp of last syscall entry */
39 i[probefunc].ts = timestamp;
46 /i[probefunc].ts != 0 && pid == $1/
48 i[probefunc].elapsed += timestamp - i[probefunc].ts;
/vbox/src/libs/libxml2-2.6.31/python/tests/
H A Dthread2.py57 ts = [] variable
61 ts.append(Thread(target=test,args=(0,)))
62 for t in ts:
64 for t in ts:
73 ts = [] variable
76 ts.append(Thread(target=test,args=(1,)))
77 for t in ts:
79 for t in ts:
/vbox/src/recompiler/tcg/
H A Dtcg.c304 TCGTemp *ts; local
315 ts = &s->temps[s->nb_globals];
316 ts->base_type = type;
317 ts->type = type;
318 ts->fixed_reg = 1;
319 ts->reg = reg;
320 ts->name = name;
347 TCGTemp *ts; local
355 ts = &s->temps[s->nb_globals];
356 ts
424 TCGTemp *ts; local
491 TCGTemp *ts; local
744 TCGTemp *ts; local
767 TCGTemp *ts; local
1180 TCGTemp *ts; local
1360 TCGTemp *ts; local
1399 TCGTemp *ts; local
1432 TCGTemp *ts; local
1450 TCGTemp *ts; local
1498 TCGTemp *ts; local
1543 TCGTemp *ts; local
1588 TCGTemp *ts, *ots; local
1652 TCGTemp *ts; local
1816 TCGTemp *ts; local
2086 TCGTemp *ts; local
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/ath/ath9k/
H A Dath9k_ar9002_mac.c212 struct ath_tx_status *ts)
221 ts->ts_tstamp = ads->AR_SendTimestamp;
222 ts->ts_status = 0;
223 ts->ts_flags = 0;
226 ts->ts_status |= ATH9K_TXERR_XTXOP;
227 ts->tid = MS(status, AR_TxTid);
228 ts->ts_rateindex = MS(status, AR_FinalTxIdx);
229 ts->ts_seqnum = MS(status, AR_SeqNum);
232 ts->ts_rssi_ctl0 = MS(status, AR_TxRSSIAnt00);
233 ts
211 ar9002_hw_proc_txdesc(struct ath_hw *ah, void *ds, struct ath_tx_status *ts) argument
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/beos/
H A Dbcpu.c48 PR_EXTERN(void) _PR_MD_INIT_STACK(PRThreadStack *ts, PRIntn redzone);
49 PR_EXTERN(void) _PR_MD_CLEAR_STACK(PRThreadStack* ts); variable

Completed in 982 milliseconds

1234