Searched refs:tsa (Results 1 - 17 of 17) sorted by relevance

/freebsd-11-stable/contrib/netbsd-tests/lib/libc/sys/
H A Dt_clock_gettime.c88 struct timespec tsa, tsb, tsl, res; local
100 CL(clock_gettime(CLOCK_REALTIME, &tsa));
101 tsl = tsa;
106 while ((time_t)tsa.tv_sec < endlimit) {
110 diff = 1000000000LL * (tsb.tv_sec - tsa.tv_sec)
111 + tsb.tv_nsec - tsa.tv_nsec;
120 (uintmax_t)tsa.tv_sec, (uintmax_t)tsa.tv_nsec,
135 tsa.tv_sec = tsb.tv_sec;
136 tsa
[all...]
/freebsd-11-stable/contrib/ntp/util/
H A Dpps-api.c31 Chew(struct timespec *tsa, struct timespec *tsc, unsigned sa, unsigned sc) argument
36 printf("%d.%09d ", tsa->tv_sec, tsa->tv_nsec);
41 timespecsub(&ts,tsa);
/freebsd-11-stable/tools/tools/netrate/netreceive/
H A Dnetreceive.c77 timespec_add(struct timespec *tsa, struct timespec *tsb) argument
80 tsa->tv_sec += tsb->tv_sec;
81 tsa->tv_nsec += tsb->tv_nsec;
82 if (tsa->tv_nsec >= 1000000000) {
83 tsa->tv_sec++;
84 tsa->tv_nsec -= 1000000000;
89 timespec_sub(struct timespec *tsa, struct timespec *tsb) argument
92 tsa->tv_sec -= tsb->tv_sec;
93 tsa->tv_nsec -= tsb->tv_nsec;
94 if (tsa
[all...]
/freebsd-11-stable/sys/dev/ixgbe/
H A Dixgbe_dcb_82598.c119 u16 *max, u8 *tsa)
146 if (tsa[i] == ixgbe_dcb_tsa_strict)
175 u8 *tsa)
198 if (tsa[i] == ixgbe_dcb_tsa_group_strict_cee)
201 if (tsa[i] == ixgbe_dcb_tsa_strict)
219 u8 *tsa)
238 if (tsa[i] == ixgbe_dcb_tsa_group_strict_cee)
241 if (tsa[i] == ixgbe_dcb_tsa_strict)
348 u8 *tsa)
352 ixgbe_dcb_config_rx_arbiter_82598(hw, refill, max, tsa);
118 ixgbe_dcb_config_rx_arbiter_82598(struct ixgbe_hw *hw, u16 *refill, u16 *max, u8 *tsa) argument
173 ixgbe_dcb_config_tx_desc_arbiter_82598(struct ixgbe_hw *hw, u16 *refill, u16 *max, u8 *bwg_id, u8 *tsa) argument
217 ixgbe_dcb_config_tx_data_arbiter_82598(struct ixgbe_hw *hw, u16 *refill, u16 *max, u8 *bwg_id, u8 *tsa) argument
346 ixgbe_dcb_hw_config_82598(struct ixgbe_hw *hw, int link_speed, u16 *refill, u16 *max, u8 *bwg_id, u8 *tsa) argument
[all...]
H A Dixgbe_dcb.c248 u8 *tsa)
254 tsa[tc] = tc_config[tc].path[direction].tsa;
327 if (p->tsa == ixgbe_dcb_tsa_strict) {
457 u8 tsa[IXGBE_DCB_MAX_TRAFFIC_CLASS] = { 0 }; local
466 ixgbe_dcb_unpack_tsa_cee(dcb_config, IXGBE_DCB_TX_CONFIG, tsa);
471 ret = ixgbe_dcb_config_rx_arbiter_82598(hw, refill, max, tsa);
480 tsa, map);
500 u8 tsa[IXGBE_DCB_MAX_TRAFFIC_CLASS]; local
508 ixgbe_dcb_unpack_tsa_cee(dcb_config, IXGBE_DCB_TX_CONFIG, tsa);
247 ixgbe_dcb_unpack_tsa_cee(struct ixgbe_dcb_config *cfg, int direction, u8 *tsa) argument
542 u8 tsa[IXGBE_DCB_MAX_TRAFFIC_CLASS]; local
653 u8 tsa[IXGBE_DCB_MAX_TRAFFIC_CLASS]; local
724 ixgbe_dcb_hw_config(struct ixgbe_hw *hw, u16 *refill, u16 *max, u8 *bwg_id, u8 *tsa, u8 *map) argument
[all...]
H A Dixgbe_dcb_82599.c118 u16 *max, u8 *bwg_id, u8 *tsa,
153 if (tsa[i] == ixgbe_dcb_tsa_strict)
177 u16 *max, u8 *bwg_id, u8 *tsa)
195 if (tsa[i] == ixgbe_dcb_tsa_group_strict_cee)
198 if (tsa[i] == ixgbe_dcb_tsa_strict)
222 u16 *max, u8 *bwg_id, u8 *tsa,
255 if (tsa[i] == ixgbe_dcb_tsa_group_strict_cee)
258 if (tsa[i] == ixgbe_dcb_tsa_strict)
580 u16 *refill, u16 *max, u8 *bwg_id, u8 *tsa,
585 ixgbe_dcb_config_rx_arbiter_82599(hw, refill, max, bwg_id, tsa,
117 ixgbe_dcb_config_rx_arbiter_82599(struct ixgbe_hw *hw, u16 *refill, u16 *max, u8 *bwg_id, u8 *tsa, u8 *map) argument
176 ixgbe_dcb_config_tx_desc_arbiter_82599(struct ixgbe_hw *hw, u16 *refill, u16 *max, u8 *bwg_id, u8 *tsa) argument
221 ixgbe_dcb_config_tx_data_arbiter_82599(struct ixgbe_hw *hw, u16 *refill, u16 *max, u8 *bwg_id, u8 *tsa, u8 *map) argument
579 ixgbe_dcb_hw_config_82599(struct ixgbe_hw *hw, int link_speed, u16 *refill, u16 *max, u8 *bwg_id, u8 *tsa, u8 *map) argument
[all...]
H A Dixgbe_dcb.h90 enum ixgbe_dcb_tsa tsa; /* Link or Group Strict Priority */ member in struct:ixgbe_dcb_tc_path
/freebsd-11-stable/crypto/openssl/crypto/ts/
H A Dts_rsp_utils.c324 int TS_TST_INFO_set_tsa(TS_TST_INFO *a, GENERAL_NAME *tsa) argument
328 if (a->tsa == tsa)
330 new_tsa = GENERAL_NAME_dup(tsa);
335 GENERAL_NAME_free(a->tsa);
336 a->tsa = new_tsa;
342 return a->tsa;
H A Dts_asn1.c147 ASN1_EXP_OPT(TS_TST_INFO, tsa, GENERAL_NAME, 0),
H A Dts.h163 tsa [0] GeneralName OPTIONAL,
176 GENERAL_NAME *tsa; member in struct:TS_tst_info_st
443 int TS_TST_INFO_set_tsa(TS_TST_INFO *a, GENERAL_NAME *tsa);
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/gen/
H A Dt_sleep.c268 struct timespec tsa, tsb, tslp, tremain; local
292 clock_gettime(CLOCK_REALTIME, &tsa);
297 timespecsub(&tsb, &tsa, &tremain);
301 delta1 = (int64_t)tsb.tv_sec - (int64_t)tsa.tv_sec;
303 delta1 += (int64_t)tsb.tv_nsec - (int64_t)tsa.tv_nsec;
/freebsd-11-stable/tools/test/ppsapi/
H A Dppsapitest.c22 Chew(struct timespec *tsa, struct timespec *tsc, unsigned sa, unsigned sc) argument
24 printf("%jd .%09ld %u", (intmax_t)tsa->tv_sec, tsa->tv_nsec, sa);
/freebsd-11-stable/tools/tools/netrate/netsend/
H A Dnetsend.c71 timespec_add(struct timespec *tsa, struct timespec *tsb) argument
74 tsa->tv_sec += tsb->tv_sec;
75 tsa->tv_nsec += tsb->tv_nsec;
76 if (tsa->tv_nsec >= 1000000000) {
77 tsa->tv_sec++;
78 tsa->tv_nsec -= 1000000000;
/freebsd-11-stable/sys/compat/linux/
H A Dlinux_signal.c407 struct timespec ts, *tsa; local
424 tsa = NULL;
457 tsa = &ts;
459 error = kern_sigtimedwait(td, bset, &info, tsa);
/freebsd-11-stable/contrib/ntp/ntpd/
H A Dntpd.c1465 l_fp tsa, tsb; local
1469 tsa = pts;
1510 L_SUB(&tsb, &tsa);
/freebsd-11-stable/contrib/ofed/libcxgb4/
H A Dt4fw_api.h2410 __u8 tsa[8]; member in struct:fw_port_cmd::fw_port::fw_port_dcb::fw_port_dcb_pgrate
/freebsd-11-stable/sys/dev/cxgbe/firmware/
H A Dt4fw_interface.h7335 __u8 tsa[8]; member in struct:fw_port_cmd::fw_port::fw_port_dcb::fw_port_dcb_pgrate
9271 __u8 tsa[8]; member in struct:fw_dcb_ieee_cmd::fw_dcbx_stats::fw_dcbx_ets_stats_ieee

Completed in 280 milliseconds