Searched refs:ts (Results 276 - 300 of 435) sorted by relevance

<<1112131415161718

/freebsd-9.3-release/sys/dev/tws/
H A Dtws.h166 struct timespec ts; member in struct:tws_trace_rec
/freebsd-9.3-release/sys/kern/
H A Dinit_main.c595 struct timespec ts; local
625 nanotime(&ts);
626 srandom(ts.tv_sec ^ ts.tv_nsec);
H A Dvfs_cache.c204 cache_alloc(int len, int ts) argument
208 if (ts)
213 if (ts)
222 int ts; local
226 ts = ncp->nc_flag & NCF_TS;
228 if (ts)
232 } else if (ts)
/freebsd-9.3-release/sys/netsmb/
H A Dsmb_iod.c535 struct timespec ts, tstimeout; local
559 getnanotime(&ts);
560 timespecsub(&ts, &tstimeout);
561 if (timespeccmp(&ts, &rqp->sr_timesent, >)) {
/freebsd-9.3-release/contrib/ntp/ntpd/
H A Dntp_util.c191 struct timespec ts; local
243 (void) getclock(TIMEOFDAY, &ts);
244 tv.tv_sec = ts.tv_sec;
245 tv.tv_usec = ts.tv_nsec / 1000;
H A Drefclock_gpsdjson.c1398 struct timespec ts; local
1401 ts.tv_sec = (time_t)json_object_lookup_int(jctx, 0, time_name);
1402 ts.tv_nsec = (long )json_object_lookup_int(jctx, 0, frac_name);
1404 ts.tv_nsec *= fscale;
1405 *dest = tspec_stamp_to_lfp(ts);
2074 struct timespec ts; local
2081 ts.tv_nsec = 0;
2088 ts.tv_nsec += (*(u_char*)ep - '0') * dw;
2099 ts.tv_sec = (ntpcal_tm_to_rd(&gd) - DAY_NTP_STARTS) * SECSPERDAY
2101 *fp = tspec_intv_to_lfp(ts);
[all...]
H A Dntp_io.c3214 l_fp ts
3262 rb->recv_time = ts;
3284 l_fp ts
3373 dts = ts;
3380 ts = nts; /* network time stamp */
3390 return ts;
3404 l_fp ts
3530 ts = fetch_timestamp(rb, &msghdr, ts);
3532 rb->recv_time = ts;
3595 l_fp ts; local
3714 l_fp ts; /* Timestamp at BOselect() gob */ local
[all...]
/freebsd-9.3-release/contrib/libpcap/
H A Dpcap-bt-linux.c343 memcpy(&pkth.ts, CMSG_DATA(cmsg),
344 sizeof pkth.ts);
H A Dpcap-snoop.c128 h.ts.tv_sec = sh->snoop_timestamp.tv_sec;
129 h.ts.tv_usec = sh->snoop_timestamp.tv_usec;
/freebsd-9.3-release/usr.bin/xlint/lint1/
H A Dcgram.y403 tspec_t ts = dcs->d_type->t_tspec;
405 warning(3, ts == STRUCT ? "struct" :
406 (ts == UNION ? "union" : "enum"));
411 tspec_t ts = dcs->d_type->t_tspec;
413 warning(3, ts == STRUCT ? "struct" :
414 (ts == UNION ? "union" : "enum"));
/freebsd-9.3-release/sys/compat/freebsd32/
H A Dfreebsd32_misc.c674 struct timespec ts; local
679 if (uap->ts != NULL) {
680 error = copyin(uap->ts, &ts32, sizeof(ts32));
683 CP(ts32, ts, tv_sec);
684 CP(ts32, ts, tv_nsec);
685 TIMESPEC_TO_TIMEVAL(&tv, &ts);
765 struct timespec ts, *tsp; local
776 CP(ts32, ts, tv_sec);
777 CP(ts32, ts, tv_nsec);
778 tsp = &ts;
2307 struct timespec ts; local
2438 struct timespec ts, *tsp; local
2475 struct timespec ts; local
[all...]
/freebsd-9.3-release/contrib/ntp/ntpdc/
H A Dntpdc_ops.c2656 l_fp ts; local
2708 NTOHL_FP(&cl->fudgetime1, &ts);
2710 lfptoa(&ts, 6));
2711 NTOHL_FP(&cl->fudgetime2, &ts);
2713 lfptoa(&ts, 6));
2741 l_fp ts; local
2754 if (!atolfp(pcmd->argval[2].string, &ts))
2757 NTOHL_FP(&ts, &fudgedata.fudgetime);
2760 if (!atolfp(pcmd->argval[2].string, &ts))
2763 NTOHL_FP(&ts,
2831 l_fp ts; local
[all...]
/freebsd-9.3-release/sys/net/
H A Dbpf.c2257 bpf_bintime2ts(struct bintime *bt, struct bpf_ts *ts, int tstype) argument
2271 ts->bt_sec = tsm.tv_sec;
2272 ts->bt_frac = tsm.tv_usec;
2276 ts->bt_sec = tsn.tv_sec;
2277 ts->bt_frac = tsn.tv_nsec;
2280 ts->bt_sec = bt->sec;
2281 ts->bt_frac = bt->frac;
2383 struct bpf_ts ts; local
2385 bpf_bintime2ts(bt, &ts, tstype);
2390 hdr32_old.bh_tstamp.tv_sec = ts
[all...]
/freebsd-9.3-release/sbin/sconfig/
H A Dsconfig.c127 unsigned long ts, lastv; local
129 ts = lastv = 0;
144 ts |= 1L << i;
145 ts |= 1L << v;
150 return ts;
722 printf (" ts=%s", format_timeslots (timeslots));
885 } else if (strncasecmp ("ts=", argv[i], 3) == 0) {
/freebsd-9.3-release/share/examples/scsi_target/
H A Dscsi_target.c407 struct timespec ts, *tptr; local
422 ts.tv_sec = 0;
423 ts.tv_nsec = 0;
490 tptr = &ts;
536 tptr = &ts;
/freebsd-9.3-release/sys/dev/acpica/
H A Dacpi_hpet.c788 struct timespec ts; local
802 bintime2timespec(&b2, &ts);
805 (long)ts.tv_sec, ts.tv_nsec, u1, u2, u2 - u1);
807 device_printf(sc->dev, "time per call: %ld ns\n", ts.tv_nsec / 1000);
/freebsd-9.3-release/contrib/nvi/vi/
H A Dv_txt.c1705 u_long ts; local
1733 ts = O_VAL(sp, O_TABSTOP);
1741 scno += COL_OFF(scno, ts);
1749 * ts spaces, it's already minimal.
1751 if (!spaces || !tab_after_sp && spaces < ts)
1755 for (cno = 0, tabs = 0; cno + COL_OFF(cno, ts) <= scno; ++tabs)
1756 cno += COL_OFF(cno, ts);
1929 u_long sw, ts; local
1933 ts = O_VAL(sp, O_TABSTOP);
1954 COL_OFF(current, ts)
[all...]
/freebsd-9.3-release/crypto/heimdal/lib/gssapi/krb5/
H A Dinit_sec_context.c193 krb5_timestamp ts; local
195 krb5_timeofday (context, &ts);
196 this_cred.times.endtime = ts + time_req;
/freebsd-9.3-release/sys/compat/linux/
H A Dlinux_signal.c437 struct timespec ts, *tsa; local
486 TIMEVAL_TO_TIMESPEC(&tv, &ts);
487 tsa = &ts;
/freebsd-9.3-release/sys/dev/ips/
H A Dips.c543 uint32_t ts; local
549 ts = time_second + command->timeout;
552 && (ts > time_second))
/freebsd-9.3-release/sys/dev/netmap/
H A Dnetmap_pipe.c218 struct netmap_slot *ts = &txkring->ring->slot[k]; local
223 *rs = *ts;
224 *ts = tmp;
/freebsd-9.3-release/sys/fs/devfs/
H A Ddevfs_devs.c122 struct timespec ts; local
138 vfs_timestamp(&ts);
139 cdev->si_atime = cdev->si_mtime = cdev->si_ctime = ts;
/freebsd-9.3-release/cddl/contrib/opensolaris/cmd/lockstat/
H A Dlockstat.c839 struct itimerspec ts; local
869 ts.it_value.tv_sec = val / NANOSEC;
870 ts.it_value.tv_nsec = val % NANOSEC;
871 ts.it_interval = ts.it_value;
873 if (timer_settime(tid, TIMER_RELTIME, &ts, NULL) == -1)
/freebsd-9.3-release/contrib/bmake/mk/
H A Dgendirdeps.mk91 _skip_gendirdeps = egrep -v '^(${SKIP_GENDIRDEPS:O:u:ts|})' |
243 DIRDEPS := ${DIRDEPS:${GENDIRDEPS_FILTER:UNno:ts:}:O:u}
264 SRC_DIRDEPS := ${SRC_DIRDEPS:${GENDIRDEPS_SRC_FILTER:UN/*:ts:}:O:u}
/freebsd-9.3-release/sys/dev/ath/
H A Dif_ath.c4069 struct ath_tx_status *ts; local
4090 ts = &bf->bf_status.ds_txstat;
4091 status = ath_hal_txprocdesc(ah, ds, ts);
4120 if (ts->ts_status == 0) {
4121 u_int8_t txant = ts->ts_antenna;
4124 if (ts->ts_finaltsi != 0)
4132 if (ts->ts_status & HAL_TXERR_XRETRY)
4134 if (ts->ts_status & HAL_TXERR_FIFO)
4136 if (ts->ts_status & HAL_TXERR_FILT)
4138 if (ts
5649 const struct ieee80211_tdma_state *ts = vap->iv_tdma; local
[all...]

Completed in 210 milliseconds

<<1112131415161718