Home
last modified time | relevance | path

Searched refs:kbps (Results 1 – 25 of 29) sorted by relevance

12

/freebsd/contrib/file/magic/Magdir/
H A Danimation545 >2 byte&0xF0 0x10 \b, 32 kbps
546 >2 byte&0xF0 0x20 \b, 40 kbps
547 >2 byte&0xF0 0x30 \b, 48 kbps
548 >2 byte&0xF0 0x40 \b, 56 kbps
549 >2 byte&0xF0 0x50 \b, 64 kbps
550 >2 byte&0xF0 0x60 \b, 80 kbps
551 >2 byte&0xF0 0x70 \b, 96 kbps
552 >2 byte&0xF0 0x80 \b, 112 kbps
553 >2 byte&0xF0 0x90 \b, 128 kbps
554 >2 byte&0xF0 0xA0 \b, 160 kbps
[all …]
/freebsd/tools/tools/net80211/wlantxtime/
H A Dwlantxtime.c332 uint32_t kbps; in ieee80211_compute_duration() local
335 kbps = rt->info[rix].rateKbps; in ieee80211_compute_duration()
336 if (kbps == 0) /* XXX bandaid for channel changes */ in ieee80211_compute_duration()
346 + ((numBits * 1000)/kbps); in ieee80211_compute_duration()
349 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME) / 1000; in ieee80211_compute_duration()
359 bitsPerSymbol = (kbps * OFDM_HALF_SYMBOL_TIME) / 1000; in ieee80211_compute_duration()
369 bitsPerSymbol = (kbps * OFDM_QUARTER_SYMBOL_TIME) / 1000; in ieee80211_compute_duration()
380 bitsPerSymbol = ((kbps << 1) * TURBO_SYMBOL_TIME) / 1000; in ieee80211_compute_duration()
/freebsd/sys/net80211/
H A Dieee80211_phy.c507 uint32_t kbps; in ieee80211_compute_duration() local
510 kbps = rt->info[rix].rateKbps; in ieee80211_compute_duration()
511 if (kbps == 0) /* XXX bandaid for channel changes */ in ieee80211_compute_duration()
521 + ((numBits * 1000)/kbps); in ieee80211_compute_duration()
524 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME) / 1000; in ieee80211_compute_duration()
534 bitsPerSymbol = (kbps * OFDM_HALF_SYMBOL_TIME) / 1000; in ieee80211_compute_duration()
544 bitsPerSymbol = (kbps * OFDM_QUARTER_SYMBOL_TIME) / 1000; in ieee80211_compute_duration()
555 bitsPerSymbol = ((kbps << 1) * TURBO_SYMBOL_TIME) / 1000; in ieee80211_compute_duration()
/freebsd/sys/contrib/device-tree/Bindings/hsi/
H A Dclient-devices.txt14 - hsi-speed-kbps: Max bit transmission speed in kbit/s
36 hsi-speed-kbps = <55000>;
H A Dnokia-modem.txt41 hsi-speed-kbps = <55000>;
/freebsd/share/examples/pf/
H A Dackpri9 # Example: 512/128 kbps ADSL. Download is 50 kB/s. When a concurrent
17 # For a 512/128 kbps ADSL with PPPoE link, using "bandwidth 100Kb"
/freebsd/contrib/file/tests/
H A DJW07022A.mp3.result1 Audio file with ID3 version 2.2.0, contains: MPEG ADTS, layer III, v1, 96 kbps, 44.1 kHz, Monaural
H A Dcl8m8ocofedso.result1 Audio file with ID3 version 2.4.0, contains: MPEG ADTS, layer III, v1, 192 kbps, 44.1 kHz, JntStereo
/freebsd/sys/contrib/device-tree/Bindings/pinctrl/
H A Dbrcm,bcm11351-pinctrl.txt68 0: Standard(100kbps)& Fast(400kbps) mode
94 0: Standard(100kbps)& Fast(400kbps) mode
112 0: Standard(100kbps)& Fast(400kbps) mode
H A Dbrcm,bcm11351-pinctrl.yaml106 0: Standard (100 kbps) & Fast (400 kbps) mode
/freebsd/sys/dev/ath/ath_hal/
H A Dah.c435 uint32_t kbps; in ath_hal_computetxtime() local
442 kbps = rates->info[rateix].rateKbps; in ath_hal_computetxtime()
447 if (kbps == 0) in ath_hal_computetxtime()
456 + ((numBits * 1000)/kbps); in ath_hal_computetxtime()
461 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME) / 1000; in ath_hal_computetxtime()
472 bitsPerSymbol = (kbps * OFDM_HALF_SYMBOL_TIME) / 1000; in ath_hal_computetxtime()
483 bitsPerSymbol = (kbps * OFDM_QUARTER_SYMBOL_TIME) / 1000; in ath_hal_computetxtime()
494 bitsPerSymbol = (kbps * TURBO_SYMBOL_TIME) / 1000; in ath_hal_computetxtime()
/freebsd/sys/dev/cxgb/
H A Dcxgb_ioctl.h128 int32_t kbps; /* rate in Kbps */ member
H A Dcxgb_main.c2937 !in_range(t->kbps, 0, 10000000) || in cxgb_extension_ioctl()
2943 if (t->kbps >= 0) { in cxgb_extension_ioctl()
2944 error = t3_config_sched(sc, t->kbps, t->sched); in cxgb_extension_ioctl()
/freebsd/sys/dev/cxgb/common/
H A Dcxgb_t3_hw.c3689 int t3_config_sched(adapter_t *adap, unsigned int kbps, int sched) in t3_config_sched() argument
3695 if (kbps > 0) { in t3_config_sched()
3696 kbps *= 125; /* -> bytes */ in t3_config_sched()
3699 bpt = (kbps + tps / 2) / tps; in t3_config_sched()
3702 delta = v >= kbps ? v - kbps : kbps - v; in t3_config_sched()
3763 void t3_get_tx_sched(adapter_t *adap, unsigned int sched, unsigned int *kbps, in t3_get_tx_sched() argument
3768 if (kbps) { in t3_get_tx_sched()
3777 *kbps = 0; /* scheduler disabled */ in t3_get_tx_sched()
3780 *kbps = (v * bpt) / 125; in t3_get_tx_sched()
H A Dcxgb_common.h788 int t3_config_sched(adapter_t *adap, unsigned int kbps, int sched);
790 void t3_get_tx_sched(adapter_t *adap, unsigned int sched, unsigned int *kbps,
/freebsd/sys/dev/cxgbe/firmware/
H A Dt6fw_cfg_hashfilter.txt23 #Tick granularities in kbps
H A Dt6fw_cfg.txt23 #Tick granularities in kbps
H A Dt6fw_cfg_fpga.txt108 #Tick granularities in kbps
/freebsd/sys/dev/cxgbe/tom/
H A Dt4_cpl_io.c172 const u_int kbps = (u_int) (uint64_t)Bps * 8ULL / 1000; in update_tx_rate_limit() local
175 CTR3(KTR_CXGBE, "%s: tid %u, rate %uKbps", __func__, toep->tid, kbps); in update_tx_rate_limit()
177 if (kbps == 0) { in update_tx_rate_limit()
181 rc = t4_reserve_cl_rl_kbps(sc, port_id, kbps, &tc_idx); in update_tx_rate_limit()
/freebsd/sys/dev/cxgbe/common/
H A Dcommon.h738 void t4_get_tx_sched(struct adapter *adap, unsigned int sched, unsigned int *kbps,
766 int t4_set_sched_bps(struct adapter *adap, int sched, unsigned int kbps);
H A Dt4_hw.c6441 int t4_set_sched_bps(struct adapter *adap, int sched, unsigned int kbps) in t4_set_sched_bps() argument
6447 if (kbps > 0) { in t4_set_sched_bps()
6448 kbps *= 125; /* -> bytes */ in t4_set_sched_bps()
6451 bpt = (kbps + tps / 2) / tps; in t4_set_sched_bps()
6454 delta = v >= kbps ? v - kbps : kbps - v; in t4_set_sched_bps()
10366 void t4_get_tx_sched(struct adapter *adap, unsigned int sched, unsigned int *kbps, in t4_get_tx_sched() argument
10371 if (kbps) { in t4_get_tx_sched()
10379 *kbps = 0; /* scheduler disabled */ in t4_get_tx_sched()
10382 *kbps = (v * bpt) / 125; in t4_get_tx_sched()
/freebsd/sys/dev/cxgbe/cudbg/
H A Dcudbg_entity.h210 u32 kbps[NTX_SCHED]; member
/freebsd/sys/contrib/device-tree/src/arm/ti/omap/
H A Domap3-n950-n9.dtsi462 hsi-speed-kbps = <96000>;
/freebsd/tools/tools/cxgbtool/
H A Dcxgbtool.c1470 op.kbps = op.class_ipg = op.flow_ipg = -1; in tx_sched()
1487 op.kbps = val; in tx_sched()
/freebsd/crypto/openssh/
H A Dmisc.c1747 bandwidth_limit_init(struct bwlimit *bw, u_int64_t kbps, size_t buflen) in bandwidth_limit_init() argument
1750 bw->rate = kbps; in bandwidth_limit_init()

12