/Linux-v4.19/drivers/net/wireless/ath/ath9k/ |
D | common-spectral.h | 112 static inline u16 spectral_max_magnitude(u8 *bins) in spectral_max_magnitude() argument 114 return (bins[0] & 0xc0) >> 6 | in spectral_max_magnitude() 115 (bins[1] & 0xff) << 2 | in spectral_max_magnitude() 116 (bins[2] & 0x03) << 10; in spectral_max_magnitude() 120 static inline u8 spectral_max_index(u8 *bins, int num_bins) in spectral_max_index() argument 122 s8 m = (bins[2] & 0xfc) >> 2; in spectral_max_index() 149 static inline u8 spectral_bitmap_weight(u8 *bins) in spectral_bitmap_weight() argument 151 return bins[0] & 0x3f; in spectral_bitmap_weight()
|
D | dfs.c | 63 static inline int fft_max_index(u8 *bins) in fft_max_index() argument 65 return (bins[2] & 0xfc) >> 2; in fft_max_index() 67 static inline int fft_max_magnitude(u8 *bins) in fft_max_magnitude() argument 69 return (bins[0] & 0xc0) >> 6 | bins[1] << 2 | (bins[2] & 0x03) << 10; in fft_max_magnitude() 71 static inline u8 fft_bitmap_weight(u8 *bins) in fft_bitmap_weight() argument 73 return bins[0] & 0x3f; in fft_bitmap_weight()
|
/Linux-v4.19/Documentation/media/uapi/v4l/ |
D | pixfmt-meta-vsp1-hgo.rst | 25 additionally output the histogram with 64 or 256 bins, resulting in four 28 - In *64 bins normal mode*, the HGO operates on the three channels independently 29 to compute three 64-bins histograms. RGB, YCbCr and HSV image formats are 31 - In *64 bins maximum mode*, the HGO operates on the maximum of the (R, G, B) 32 channels to compute a single 64-bins histogram. Only the RGB image format is 34 - In *256 bins normal mode*, the HGO operates on the Y channel to compute a 35 single 256-bins histogram. Only the YCbCr image format is supported. 36 - In *256 bins maximum mode*, the HGO operates on the maximum of the (R, G, B) 37 channels to compute a single 256-bins histogram. Only the RGB image format is
|
/Linux-v4.19/net/sched/ |
D | sch_sfb.c | 53 struct sfb_bucket bins[SFB_LEVELS][SFB_NUMBUCKETS]; member 75 struct sfb_bins bins[2]; member 130 struct sfb_bucket *b = &q->bins[slot].bins[0][0]; in increment_one_qlen() 159 struct sfb_bucket *b = &q->bins[slot].bins[0][0]; in decrement_one_qlen() 196 memset(&q->bins, 0, sizeof(q->bins)); in sfb_zero_all_buckets() 206 const struct sfb_bucket *b = &q->bins[q->slot].bins[0][0]; in sfb_compute_qlen() 224 q->bins[slot].perturbation = prandom_u32(); in sfb_init_perturbation() 321 sfbhash = jhash_1word(salt, q->bins[slot].perturbation); in sfb_enqueue() 323 sfbhash = skb_get_hash_perturb(skb, q->bins[slot].perturbation); in sfb_enqueue() 333 struct sfb_bucket *b = &q->bins[slot].bins[i][hash]; in sfb_enqueue() [all …]
|
/Linux-v4.19/drivers/net/wireless/ath/ath10k/ |
D | spectral.c | 83 u8 chain_idx, *bins; in ath10k_spectral_process_fft() local 147 bins = (u8 *)fftr; in ath10k_spectral_process_fft() 148 bins += sizeof(*fftr) + ar->hw_params.spectral_bin_offset; in ath10k_spectral_process_fft() 156 bin_len, bins); in ath10k_spectral_process_fft() 158 memcpy(fft_sample->data, bins, bin_len); in ath10k_spectral_process_fft() 433 unsigned int bins, fft_size, bin_scale; in read_file_spectral_bins() local 440 bins = 1 << (fft_size - bin_scale); in read_file_spectral_bins() 444 len = sprintf(buf, "%d\n", bins); in read_file_spectral_bins()
|
/Linux-v4.19/Documentation/devicetree/bindings/net/ |
D | stmmac.txt | 56 - snps,multicast-filter-bins: Number of multicast filter hash bins 162 snps,multicast-filter-bins = <256>;
|
/Linux-v4.19/drivers/net/ethernet/qlogic/qed/ |
D | qed_l2.c | 660 memset(&p_ramrod->approx_mcast.bins, 0, in qed_sp_update_mcast_bin() 661 sizeof(p_ramrod->approx_mcast.bins)); in qed_sp_update_mcast_bin() 668 u32 *p_bins = p_params->bins; in qed_sp_update_mcast_bin() 670 p_ramrod->approx_mcast.bins[i] = cpu_to_le32(p_bins[i]); in qed_sp_update_mcast_bin() 1480 u32 bins[ETH_MULTICAST_MAC_BINS_IN_REGS]; in qed_sp_eth_filter_mcast() local 1514 memset(&p_ramrod->approx_mcast.bins, 0, in qed_sp_eth_filter_mcast() 1515 sizeof(p_ramrod->approx_mcast.bins)); in qed_sp_eth_filter_mcast() 1516 memset(bins, 0, sizeof(bins)); in qed_sp_eth_filter_mcast() 1526 bins[bit / nbits] |= 1 << (bit % nbits); in qed_sp_eth_filter_mcast() 1534 p_ramrod_bins->bins[i] = cpu_to_le32(bins[i]); in qed_sp_eth_filter_mcast()
|
D | qed_l2.h | 218 u32 bins[8]; member
|
D | qed_vf.c | 1127 memcpy(p_mcast_tlv->bins, p_params->bins, in qed_vf_pf_vport_update() 1274 sp_params.bins[bit / 32] |= 1 << (bit % 32); in qed_vf_pf_filter_mcast()
|
D | qed_vf.h | 399 u64 bins[4]; member
|
D | qed_sriov.c | 2833 memcpy(p_data->bins, p_mcast_tlv->bins, in qed_iov_vp_update_mcast_bin_param()
|
D | qed_hsi.h | 6107 __le32 bins[ETH_MULTICAST_MAC_BINS_IN_REGS]; member
|
/Linux-v4.19/drivers/gpu/drm/nouveau/nvkm/subdev/fb/ |
D | ramgt215.c | 103 u8 median[8], bins[4] = {0, 0, 0, 0}, bin = 0, qty = 0; in gt215_link_train_calc() local 126 bins[(median[i] & 0xf0) >> 4]++; in gt215_link_train_calc() 132 if (bins[i] > qty) { in gt215_link_train_calc() 134 qty = bins[i]; in gt215_link_train_calc()
|
/Linux-v4.19/Documentation/devicetree/bindings/lpddr2/ |
D | lpddr2.txt | 38 speed-bins as is required. Please see Documentation/devicetree/
|
/Linux-v4.19/arch/arm/boot/dts/ |
D | socfpga_arria10.dtsi | 424 snps,multicast-filter-bins = <256>; 444 snps,multicast-filter-bins = <256>; 464 snps,multicast-filter-bins = <256>;
|
D | socfpga.dtsi | 564 snps,multicast-filter-bins = <256>; 582 snps,multicast-filter-bins = <256>;
|
/Linux-v4.19/drivers/net/ethernet/dec/tulip/ |
D | de4x5.c | 774 u_int bins[DE4X5_PKT_STAT_SZ]; /* Private stats counters */ member 1867 lp->pktStats.bins[i]++; in de4x5_local_stats() 1881 lp->pktStats.bins[0]++; /* Duplicates stats.rx_packets */ in de4x5_local_stats() 1882 if (lp->pktStats.bins[0] == 0) { /* Reset counters */ in de4x5_local_stats()
|