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

/freebsd-9.3-release/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-9.3-release/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)
350 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.c243 u8 *tsa)
249 tsa[tc] = tc_config[tc].path[direction].tsa;
322 if (p->tsa == ixgbe_dcb_tsa_strict) {
446 u8 tsa[IXGBE_DCB_MAX_TRAFFIC_CLASS] = { 0 }; local
455 ixgbe_dcb_unpack_tsa_cee(dcb_config, IXGBE_DCB_TX_CONFIG, tsa);
460 ret = ixgbe_dcb_config_rx_arbiter_82598(hw, refill, max, tsa);
466 tsa, map);
486 u8 tsa[IXGBE_DCB_MAX_TRAFFIC_CLASS]; local
494 ixgbe_dcb_unpack_tsa_cee(dcb_config, IXGBE_DCB_TX_CONFIG, tsa);
242 ixgbe_dcb_unpack_tsa_cee(struct ixgbe_dcb_config *cfg, int direction, u8 *tsa) argument
525 u8 tsa[IXGBE_DCB_MAX_TRAFFIC_CLASS]; local
627 u8 tsa[IXGBE_DCB_MAX_TRAFFIC_CLASS]; local
692 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)
573 u16 *refill, u16 *max, u8 *bwg_id, u8 *tsa,
577 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
572 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.h91 enum ixgbe_dcb_tsa tsa; /* Link or Group Strict Priority */ member in struct:ixgbe_dcb_tc_path
/freebsd-9.3-release/tools/tools/netrate/netsend/
H A Dnetsend.c66 timespec_add(struct timespec *tsa, struct timespec *tsb) argument
69 tsa->tv_sec += tsb->tv_sec;
70 tsa->tv_nsec += tsb->tv_nsec;
71 if (tsa->tv_nsec >= 1000000000) {
72 tsa->tv_sec++;
73 tsa->tv_nsec -= 1000000000;
/freebsd-9.3-release/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-9.3-release/sys/ufs/ffs/
H A Dffs_rawread.c276 caddr_t sa, nsa, tsa; local
379 tsa = sa;
381 nsa = tsa;
/freebsd-9.3-release/sys/compat/linux/
H A Dlinux_signal.c437 struct timespec ts, *tsa; local
454 tsa = NULL;
487 tsa = &ts;
489 error = kern_sigtimedwait(td, bset, &info, tsa);
/freebsd-9.3-release/contrib/ntp/ntpd/
H A Dntpd.c1296 l_fp tsa, tsb; local
1300 tsa = pts;
1341 L_SUB(&tsb, &tsa);

Completed in 107 milliseconds