Searched refs:st (Results 1 - 12 of 12) sorted by relevance

/xnu-2782.1.97/bsd/kern/
H A Dkern_clock.c362 struct timeval st; local
369 st.tv_sec = syst->seconds;
370 st.tv_usec = syst->microseconds;
374 ticks = ((tv->tv_sec - st.tv_sec) * 1000 +
375 (tv->tv_usec - st.tv_usec) / 1000) /
386 struct timeval st; local
394 st = p->p_stats->p_ru.ru_stime;
397 tv->seconds = st.tv_sec;
398 tv->microseconds = st.tv_usec;
H A Dkern_acct.c244 struct timeval ut, st, tmp; local
268 calcru(p, &ut, &st, NULL);
270 an_acct.ac_stime = encode_comp_t(st.tv_sec, st.tv_usec);
284 timevaladd(&tmp, &st);
H A Dkern_resource.c1192 struct timeval ut,st; local
1199 st.tv_sec = tinfo.system_time.seconds;
1200 st.tv_usec = tinfo.system_time.microseconds;
1202 timeradd(&st, sp, sp);
1210 st.tv_sec = ttimesinfo.system_time.seconds;
1211 st.tv_usec = ttimesinfo.system_time.microseconds;
1213 timeradd(&st, sp, sp);
H A Dkern_event.c3493 struct vinfo_stat * st; local
3495 st = &kinfo->kq_stat;
3497 st->vst_size = kq->kq_count;
3499 st->vst_blksize = sizeof(struct kevent64_s);
3501 st->vst_blksize = sizeof(struct kevent);
3502 st->vst_mode = S_IFIFO;
H A Dkern_exit.c2049 struct timeval ut,st; local
2065 st.tv_sec = ttimesinfo.system_time.seconds;
2066 st.tv_usec = ttimesinfo.system_time.microseconds;
2068 timeradd(&st,&p->p_ru->ru.ru_stime,&p->p_ru->ru.ru_stime);
/xnu-2782.1.97/tools/tests/libMicro/
H A Dbench.sh664 pipe $OPTS -N "pipe_pst1" -s 1 -I 1000 -x pipe -m st
667 pipe $OPTS -N "pipe_pst4k" -s 4k -I 1000 -x pipe -m st
671 pipe $OPTS -N "pipe_sst1" -s 1 -I 1000 -x sock -m st
674 pipe $OPTS -N "pipe_sst4k" -s 4k -I 1000 -x sock -m st
678 pipe $OPTS -N "pipe_tst1" -s 1 -I 1000 -x tcp -m st
681 pipe $OPTS -N "pipe_tst4k" -s 4k -I 1000 -x tcp -m st
H A Dcoreos_bench.sh682 pipe $OPTS -N "pipe_pst1" -s 1 -I 1000 -x pipe -m st
685 pipe $OPTS -N "pipe_pst4k" -s 4k -I 1000 -x pipe -m st
689 pipe $OPTS -N "pipe_sst1" -s 1 -I 1000 -x sock -m st
692 pipe $OPTS -N "pipe_sst4k" -s 4k -I 1000 -x sock -m st
696 pipe $OPTS -N "pipe_tst1" -s 1 -I 1000 -x tcp -m st
699 pipe $OPTS -N "pipe_tst4k" -s 4k -I 1000 -x tcp -m st
H A Dembd_bench.sh668 pipe $OPTS -N "pipe_pst1" -s 1 -I 1000 -x pipe -m st
671 pipe $OPTS -N "pipe_pst4k" -s 4k -I 1000 -x pipe -m st
675 pipe $OPTS -N "pipe_sst1" -s 1 -I 1000 -x sock -m st
678 pipe $OPTS -N "pipe_sst4k" -s 4k -I 1000 -x sock -m st
682 pipe $OPTS -N "pipe_tst1" -s 1 -I 1000 -x tcp -m st
685 pipe $OPTS -N "pipe_tst4k" -s 4k -I 1000 -x tcp -m st
/xnu-2782.1.97/bsd/sys/
H A Dvnode_internal.h411 void cvtstat(struct stat *st, struct ostat *ost);
/xnu-2782.1.97/bsd/net/
H A Dpf_ioctl.c1202 #define PF_MD5_UPD(st, elm) \
1203 MD5Update(ctx, (u_int8_t *)&(st)->elm, sizeof ((st)->elm))
1205 #define PF_MD5_UPD_STR(st, elm) \
1206 MD5Update(ctx, (u_int8_t *)(st)->elm, strlen((st)->elm))
1208 #define PF_MD5_UPD_HTONL(st, elm, stor) do { \
1209 (stor) = htonl((st)->elm); \
1213 #define PF_MD5_UPD_HTONS(st, elm, stor) do { \
1214 (stor) = htons((st)
[all...]
H A Dpf.c1275 struct pf_state *st; local
1278 RB_FOREACH(st, pf_state_tree_id, &tree_id) {
1279 sk = st->state_key;
1296 (*state)->rule.ptr == st->rule.ptr)) {
1297 st->timeout = PFTM_PURGE;
1298 st->src.state = st->dst.state =
/xnu-2782.1.97/bsd/security/audit/
H A Daudit_session.c433 audit_session_debug_filterfn(proc_t p, void *st) argument
437 au_sentry_debug_t *sed_tab = (au_sentry_debug_t *) st;

Completed in 118 milliseconds