Searched refs:kbps (Results 1 - 5 of 5) sorted by relevance

/openbsd-current/sys/dev/pci/drm/amd/display/dc/dsc/
H A Ddc_dsc.c56 const struct dc_crtc_timing *timing, const uint32_t kbps)
58 uint32_t total_kbps = kbps;
61 return kbps;
67 bpp = dc_fixpt_from_int(kbps);
92 uint32_t kbps; local
125 kbps = timing->pix_clk_100hz / 10;
126 kbps *= bits_per_channel;
130 kbps *= 3;
132 kbps /= 2;
134 kbps
55 apply_128b_132b_stream_overhead( const struct dc_crtc_timing *timing, const uint32_t kbps) argument
[all...]
/openbsd-current/sys/dev/pci/drm/amd/display/amdgpu_dm/
H A Damdgpu_dm_mst_types.c802 static int kbps_to_peak_pbn(int kbps, uint16_t fec_overhead_multiplier_x1000) argument
804 u64 peak_kbps = kbps;
872 u64 kbps; local
880 kbps = div_u64((u64)pbn * 994 * 8 * 54, 64);
885 (int) kbps, param.timing,
1568 unsigned int kbps = pbn; local
1570 kbps *= (1000000 / PEAK_FACTOR_X1000);
1571 kbps *= 8;
1572 kbps *= 54;
1573 kbps /
[all...]
/openbsd-current/sys/dev/pci/drm/amd/display/dc/link/
H A Dlink_dpms.c1055 static struct fixed31_32 get_pbn_from_bw_in_kbps(uint64_t kbps) argument
1077 kbps *= numerator;
1078 peak_kbps = dc_fixpt_from_fraction(kbps, denominator);
1085 uint64_t kbps; local
1093 kbps = dc_bandwidth_in_kbps_from_timing(&pipe_ctx->stream->timing, link_encoding);
1094 return get_pbn_from_bw_in_kbps(kbps);
/openbsd-current/usr.bin/ssh/
H A Dmisc.c1678 bandwidth_limit_init(struct bwlimit *bw, u_int64_t kbps, size_t buflen) argument
1681 bw->rate = kbps;
/openbsd-current/sys/dev/ic/
H A Dbwi.c8751 #define IEEE80211_OFDM_TXTIME(kbps, frmlen) \
8754 (IEEE80211_OFDM_NSYMS((kbps), (frmlen)) * IEEE80211_OFDM_SYM_TIME))
8769 #define IEEE80211_OFDM_NBITS_PER_SYM(kbps) \
8770 (((kbps) * IEEE80211_OFDM_SYM_TIME) / 1000)
8772 #define IEEE80211_OFDM_NSYMS(kbps, frmlen) \
8774 IEEE80211_OFDM_NBITS_PER_SYM((kbps)))
8776 #define IEEE80211_CCK_TXTIME(kbps, frmlen) \
8777 (((IEEE80211_CCK_NBITS((frmlen)) * 1000) + (kbps) - 1) / (kbps))
8796 rate = rs_rate * 500; /* ieee80211 rate -> kbps */
[all...]

Completed in 103 milliseconds