/freebsd/sys/dev/ixgbe/ |
H A D | ixgbe_dcb.c | 254 u8 *tsa) in ixgbe_dcb_unpack_tsa_cee() argument 260 tsa[tc] = tc_config[tc].path[direction].tsa; in ixgbe_dcb_unpack_tsa_cee() 333 if (p->tsa == ixgbe_dcb_tsa_strict) { in ixgbe_dcb_check_config_cee() 459 u8 tsa[IXGBE_DCB_MAX_TRAFFIC_CLASS] = { 0 }; in ixgbe_dcb_config_rx_arbiter_cee() local 468 ixgbe_dcb_unpack_tsa_cee(dcb_config, IXGBE_DCB_TX_CONFIG, tsa); in ixgbe_dcb_config_rx_arbiter_cee() 473 ret = ixgbe_dcb_config_rx_arbiter_82598(hw, refill, max, tsa); in ixgbe_dcb_config_rx_arbiter_cee() 481 tsa, map); in ixgbe_dcb_config_rx_arbiter_cee() 500 u8 tsa[IXGBE_DCB_MAX_TRAFFIC_CLASS]; in ixgbe_dcb_config_tx_desc_arbiter_cee() local 508 ixgbe_dcb_unpack_tsa_cee(dcb_config, IXGBE_DCB_TX_CONFIG, tsa); in ixgbe_dcb_config_tx_desc_arbiter_cee() 513 bwgid, tsa); in ixgbe_dcb_config_tx_desc_arbiter_cee() [all …]
|
H A D | ixgbe_dcb_82598.c | 113 u16 *max, u8 *tsa) in ixgbe_dcb_config_rx_arbiter_82598() argument 140 if (tsa[i] == ixgbe_dcb_tsa_strict) in ixgbe_dcb_config_rx_arbiter_82598() 172 u8 *tsa) in ixgbe_dcb_config_tx_desc_arbiter_82598() argument 195 if (tsa[i] == ixgbe_dcb_tsa_group_strict_cee) in ixgbe_dcb_config_tx_desc_arbiter_82598() 198 if (tsa[i] == ixgbe_dcb_tsa_strict) in ixgbe_dcb_config_tx_desc_arbiter_82598() 219 u8 *tsa) in ixgbe_dcb_config_tx_data_arbiter_82598() argument 238 if (tsa[i] == ixgbe_dcb_tsa_group_strict_cee) in ixgbe_dcb_config_tx_data_arbiter_82598() 241 if (tsa[i] == ixgbe_dcb_tsa_strict) in ixgbe_dcb_config_tx_data_arbiter_82598() 352 u8 *tsa) in ixgbe_dcb_hw_config_82598() argument 356 ixgbe_dcb_config_rx_arbiter_82598(hw, refill, max, tsa); in ixgbe_dcb_hw_config_82598() [all …]
|
H A D | ixgbe_dcb_82599.c | 122 u16 *max, u8 *bwg_id, u8 *tsa, in ixgbe_dcb_config_rx_arbiter_82599() argument 157 if (tsa[i] == ixgbe_dcb_tsa_strict) in ixgbe_dcb_config_rx_arbiter_82599() 184 u16 *max, u8 *bwg_id, u8 *tsa) in ixgbe_dcb_config_tx_desc_arbiter_82599() argument 202 if (tsa[i] == ixgbe_dcb_tsa_group_strict_cee) in ixgbe_dcb_config_tx_desc_arbiter_82599() 205 if (tsa[i] == ixgbe_dcb_tsa_strict) in ixgbe_dcb_config_tx_desc_arbiter_82599() 233 u16 *max, u8 *bwg_id, u8 *tsa, in ixgbe_dcb_config_tx_data_arbiter_82599() argument 266 if (tsa[i] == ixgbe_dcb_tsa_group_strict_cee) in ixgbe_dcb_config_tx_data_arbiter_82599() 269 if (tsa[i] == ixgbe_dcb_tsa_strict) in ixgbe_dcb_config_tx_data_arbiter_82599() 597 u16 *refill, u16 *max, u8 *bwg_id, u8 *tsa, in ixgbe_dcb_hw_config_82599() argument 602 ixgbe_dcb_config_rx_arbiter_82599(hw, refill, max, bwg_id, tsa, in ixgbe_dcb_hw_config_82599() [all …]
|
H A D | ixgbe_dcb.h | 90 enum ixgbe_dcb_tsa tsa; /* Link or Group Strict Priority */ member
|
/freebsd/contrib/netbsd-tests/lib/libc/sys/ |
H A D | t_clock_gettime.c | 88 struct timespec tsa, tsb, tsl, res; in check_timecounter() local 100 CL(clock_gettime(CLOCK_REALTIME, &tsa)); in check_timecounter() 101 tsl = tsa; in check_timecounter() 106 while ((time_t)tsa.tv_sec < endlimit) { in check_timecounter() 110 diff = 1000000000LL * (tsb.tv_sec - tsa.tv_sec) in check_timecounter() 111 + tsb.tv_nsec - tsa.tv_nsec; in check_timecounter() 120 (uintmax_t)tsa.tv_sec, (uintmax_t)tsa.tv_nsec, in check_timecounter() 135 tsa.tv_sec = tsb.tv_sec; in check_timecounter() 136 tsa.tv_nsec = tsb.tv_nsec; in check_timecounter()
|
/freebsd/tools/tools/netrate/netreceive/ |
H A D | netreceive.c | 75 timespec_add(struct timespec *tsa, struct timespec *tsb) in timespec_add() argument 78 tsa->tv_sec += tsb->tv_sec; in timespec_add() 79 tsa->tv_nsec += tsb->tv_nsec; in timespec_add() 80 if (tsa->tv_nsec >= 1000000000) { in timespec_add() 81 tsa->tv_sec++; in timespec_add() 82 tsa->tv_nsec -= 1000000000; in timespec_add() 87 timespec_sub(struct timespec *tsa, struct timespec *tsb) in timespec_sub() argument 90 tsa->tv_sec -= tsb->tv_sec; in timespec_sub() 91 tsa->tv_nsec -= tsb->tv_nsec; in timespec_sub() 92 if (tsa->tv_nsec < 0) { in timespec_sub() [all …]
|
/freebsd/crypto/openssl/doc/man1/ |
H A D | tsget.pod | 140 timestamp requests, tsa.opentsa.org listens at port 8080 for HTTP requests 141 and at port 8443 for HTTPS requests, the TSA service is available at the /tsa 147 tsget -h http://tsa.opentsa.org:8080/tsa file1.tsq 152 tsget -h http://tsa.opentsa.org:8080/tsa -v -e .reply \ 159 | tsget -h http://tsa.opentsa.org:8080/tsa \ 165 tsget -h https://tsa.opentsa.org:8443/tsa \ 172 tsget -h https://tsa.opentsa.org:8443/tsa -C cacerts.pem \ 179 TSGET='-h https://tsa.opentsa.org:8443/tsa -C cacerts.pem \
|
/freebsd/contrib/ntp/util/ |
H A D | pps-api.c | 31 Chew(struct timespec *tsa, struct timespec *tsc, unsigned sa, unsigned sc) in Chew() argument 36 printf("%d.%09d ", tsa->tv_sec, tsa->tv_nsec); in Chew() 41 timespecsub(&ts,tsa); in Chew()
|
/freebsd/crypto/openssl/crypto/ts/ |
H A D | ts_rsp_utils.c | 272 int TS_TST_INFO_set_tsa(TS_TST_INFO *a, GENERAL_NAME *tsa) in TS_TST_INFO_set_tsa() argument 276 if (a->tsa == tsa) in TS_TST_INFO_set_tsa() 278 new_tsa = GENERAL_NAME_dup(tsa); in TS_TST_INFO_set_tsa() 283 GENERAL_NAME_free(a->tsa); in TS_TST_INFO_set_tsa() 284 a->tsa = new_tsa; in TS_TST_INFO_set_tsa() 290 return a->tsa; in TS_TST_INFO_get_tsa()
|
H A D | ts_rsp_print.c | 161 if (a->tsa == NULL) in TS_TST_INFO_print_bio() 165 if ((nval = i2v_GENERAL_NAME(NULL, a->tsa, NULL))) in TS_TST_INFO_print_bio()
|
H A D | ts_local.h | 91 GENERAL_NAME *tsa; member
|
H A D | ts_asn1.c | 95 ASN1_EXP_OPT(TS_TST_INFO, tsa, GENERAL_NAME, 0),
|
H A D | ts_rsp_verify.c | 296 GENERAL_NAME *tsa_name = tst_info->tsa; in int_ts_RESP_verify_token()
|
/freebsd/contrib/netbsd-tests/lib/libc/gen/ |
H A D | t_sleep.c | 268 struct timespec tsa, tsb, tslp, tremain; in sleeptest() local 292 clock_gettime(CLOCK_REALTIME, &tsa); in sleeptest() 297 timespecsub(&tsb, &tsa, &tremain); in sleeptest() 301 delta1 = (int64_t)tsb.tv_sec - (int64_t)tsa.tv_sec; in sleeptest() 303 delta1 += (int64_t)tsb.tv_nsec - (int64_t)tsa.tv_nsec; in sleeptest()
|
/freebsd/tools/tools/netrate/netsend/ |
H A D | netsend.c | 69 timespec_add(struct timespec *tsa, struct timespec *tsb) in timespec_add() argument 72 tsa->tv_sec += tsb->tv_sec; in timespec_add() 73 tsa->tv_nsec += tsb->tv_nsec; in timespec_add() 74 if (tsa->tv_nsec >= 1000000000) { in timespec_add() 75 tsa->tv_sec++; in timespec_add() 76 tsa->tv_nsec -= 1000000000; in timespec_add()
|
/freebsd/sys/compat/linux/ |
H A D | linux_event.c | 483 struct timespec ts, *tsa; in linux_epoll_pwait2_64() local 496 tsa = &ts; in linux_epoll_pwait2_64() 498 tsa = NULL; in linux_epoll_pwait2_64() 501 args->maxevents, tsa, pmask)); in linux_epoll_pwait2_64() 507 struct timespec ts, *tsa; in linux_epoll_pwait2() local 520 tsa = &ts; in linux_epoll_pwait2() 522 tsa = NULL; in linux_epoll_pwait2() 525 args->maxevents, tsa, pmask)); in linux_epoll_pwait2()
|
H A D | linux_signal.c | 469 struct timespec ts, *tsa; in linux_rt_sigtimedwait() local 476 tsa = &ts; in linux_rt_sigtimedwait() 478 tsa = NULL; in linux_rt_sigtimedwait() 480 return (linux_common_rt_sigtimedwait(td, args->mask, tsa, in linux_rt_sigtimedwait() 486 struct timespec *tsa, l_siginfo_t *ptr, l_size_t sigsetsize) in linux_common_rt_sigtimedwait() argument 498 error = kern_sigtimedwait(td, bset, &ksi, tsa); in linux_common_rt_sigtimedwait() 520 struct timespec ts, *tsa; in linux_rt_sigtimedwait_time64() local 527 tsa = &ts; in linux_rt_sigtimedwait_time64() 529 tsa = NULL; in linux_rt_sigtimedwait_time64() 531 return (linux_common_rt_sigtimedwait(td, args->mask, tsa, in linux_rt_sigtimedwait_time64()
|
H A D | linux_ipc.c | 487 struct timespec ts, *tsa; in linux_semtimedop_time64() local 494 tsa = &ts; in linux_semtimedop_time64() 496 tsa = NULL; in linux_semtimedop_time64() 499 args->nsops, tsa)); in linux_semtimedop_time64() 506 struct timespec ts, *tsa; in linux_semtimedop() local 513 tsa = &ts; in linux_semtimedop() 515 tsa = NULL; in linux_semtimedop() 518 args->nsops, tsa)); in linux_semtimedop()
|
/freebsd/tools/test/ppsapi/ |
H A D | ppsapitest.c | 20 Chew(struct timespec *tsa, struct timespec *tsc, unsigned sa, unsigned sc) in Chew() argument 22 printf("%jd .%09ld %u", (intmax_t)tsa->tv_sec, tsa->tv_nsec, sa); in Chew()
|
/freebsd/crypto/openssl/test/ |
H A D | CAtsa.cnf | 75 commonName = tsa$ENV::INDEX 120 [ tsa ]
|
/freebsd/sys/dev/bnxt/bnxt_en/ |
H A D | bnxt_dcb.h | 58 uint8_t tsa;
|
H A D | bnxt_sysctl.c | 2063 char tsa[8]; in bnxt_dcb_ets() local 2078 &tsa[0], &tsa[1], &tsa[2], &tsa[3], &tsa[4], &tsa[5], &tsa[6], &tsa[7], in bnxt_dcb_ets() 2088 ets.tc_tsa[i] = bnxt_ets_str_to_tsa(tsa[i]); in bnxt_dcb_ets()
|
H A D | bnxt_dcb.c | 132 cos2bw.tsa = in bnxt_hwrm_queue_cos2bw_cfg() 136 cos2bw.tsa = in bnxt_hwrm_queue_cos2bw_cfg() 187 if (cos2bw.tsa == HWRM_QUEUE_COS2BW_QCFG_OUTPUT_QUEUE_ID0_TSA_ASSIGN_SP) { in bnxt_hwrm_queue_cos2bw_qcfg()
|
/freebsd/contrib/ntp/ntpd/ |
H A D | ntpd.c | 1508 l_fp tsa, tsb; 1512 tsa = pts; 1553 L_SUB(&tsb, &tsa); 1490 l_fp tsa, tsb; global() local
|
/freebsd/crypto/openssl/include/openssl/ |
H A D | ts.h | 209 int TS_TST_INFO_set_tsa(TS_TST_INFO *a, GENERAL_NAME *tsa);
|