/openbmc/linux/drivers/net/wireless/ath/ath9k/ |
H A D | common-spectral.h | 49 * [7:0]: all bins {max_magnitude[1:0], bitmap_weight[5:0]} 50 * [7:0]: all bins max_magnitude[9:2] 51 * [7:0]: all bins {max_index[5:0], max_magnitude[11:10]} 74 * [7:0]: lower bins {max_magnitude[1:0], bitmap_weight[5:0]} 75 * [7:0]: lower bins max_magnitude[9:2] 76 * [7:0]: lower bins {max_index[5:0], max_magnitude[11:10]} 77 * [7:0]: upper bins {max_magnitude[1:0], bitmap_weight[5:0]} 78 * [7:0]: upper bins max_magnitude[9:2] 79 * [7:0]: upper bins {max_index[5:0], max_magnitude[11:10]} 111 /* grabs the max magnitude from the all/upper/lower bins */ [all …]
|
H A 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() 82 /* first check wether channels have 'strong' bins */ in ath9k_get_max_index_ht40()
|
/openbmc/linux/Documentation/userspace-api/media/v4l/ |
H A D | metafmt-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 44 .. flat-table:: VSP1 HGO Data - 64 Bins, Normal Mode (792 bytes) [all …]
|
/openbmc/linux/net/sched/ |
H A D | sch_sfb.c | 28 * SFB uses two B[l][n] : L x N arrays of bins (L levels, N bins per level) 34 #define SFB_NUMBUCKETS (1 << SFB_BUCKET_SHIFT) /* N bins per Level */ 49 struct sfb_bucket bins[SFB_LEVELS][SFB_NUMBUCKETS]; member 69 u8 slot; /* current active bins (0 or 1) */ 71 struct sfb_bins bins[2]; member 84 * Each queued skb might be hashed on one or two bins 126 struct sfb_bucket *b = &q->bins[slot].bins[0][0]; in increment_one_qlen() 155 struct sfb_bucket *b = &q->bins[slot].bins[0][0]; in decrement_one_qlen() 192 memset(&q->bins, 0, sizeof(q->bins)); in sfb_zero_all_buckets() 202 const struct sfb_bucket *b = &q->bins[q->slot].bins[0][0]; in sfb_compute_qlen() [all …]
|
/openbmc/skeleton/ |
H A D | rules.mk | 10 all: $(BINS:=$(BIN_SUFFIX)) $(SUBDIRS) 18 $(BINS:=$(BIN_SUFFIX)): %$(BIN_SUFFIX): %.o $(EXTRA_OBJS) 21 install: $(BINS:=$(BIN_SUFFIX)) 23 @for b in $(BINS:=$(BIN_SUFFIX)); do \ 31 rm -rf *.o $(BINS:=$(BIN_SUFFIX))
|
/openbmc/linux/tools/net/ynl/samples/ |
H A D | Makefile | 15 BINS=$(patsubst %.c,%,${SRCS}) macro 19 all: $(BINS) 21 $(BINS): ../lib/ynl.a ../generated/protos.a 27 rm -f $(BINS)
|
/openbmc/linux/drivers/net/wireless/ath/ath10k/ |
H A D | spectral.c | 32 /* peak index outside of bins */ in get_max_exp() 72 u8 chain_idx, *bins; in ath10k_spectral_process_fft() local 102 * show, the particular configuration of 80 MHz/64 bins does in ath10k_spectral_process_fft() 136 bins = (u8 *)fftr; in ath10k_spectral_process_fft() 137 bins += sizeof(*fftr) + ar->hw_params.spectral_bin_offset; in ath10k_spectral_process_fft() 145 bin_len, bins); in ath10k_spectral_process_fft() 147 memcpy(fft_sample->data, bins, bin_len); in ath10k_spectral_process_fft() 422 unsigned int bins, fft_size, bin_scale; in read_file_spectral_bins() local 429 bins = 1 << (fft_size - bin_scale); in read_file_spectral_bins() 433 len = sprintf(buf, "%d\n", bins); in read_file_spectral_bins() [all …]
|
/openbmc/qemu/tests/functional/acpi-bits/bits-tests/ |
H A D | smilatency.py2 | 51 bins = [long(tsc_per_usec * 10**i) for i in range(9)] 66 (max_latency, smi_count_delta, bins) = bits.smi_latency(long(15 * tsc_per_sec), bins) 68 bins = [BinType(*b) for b in bins] 74 for bin, desc in zip(bins, bin_descs):
|
/openbmc/qemu/block/ |
H A D | accounting.c | 135 if (hist->bins == NULL) { in block_latency_histogram_account() 142 hist->bins[0]++; in block_latency_histogram_account() 147 hist->bins[hist->nbins - 1]++; in block_latency_histogram_account() 156 hist->bins[pos - hist->boundaries + 1]++; in block_latency_histogram_account() 185 g_free(hist->bins); in block_latency_histogram_set() 186 hist->bins = g_new0(uint64_t, hist->nbins); in block_latency_histogram_set() 197 g_free(hist->bins); in block_latency_histograms_clear()
|
/openbmc/openbmc/meta-security/recipes-security/isic/files/ |
H A D | isic-0.07-make.patch | 15 install: $(BINS) $(MAN) 17 - $(INSTALL) -m 0755 -c $(BINS) $(PREFIX)/bin 21 + $(INSTALL) -m 0755 -c $(BINS) $(DESTDIR)$(PREFIX)/bin
|
/openbmc/u-boot/doc/device-tree-bindings/net/ |
H A D | stmmac.txt | 28 - snps,multicast-filter-bins: Number of multicast filter hash bins 59 snps,multicast-filter-bins = <256>;
|
/openbmc/u-boot/common/ |
H A D | dlmalloc.c | 316 chunks. Each bin is doubly linked. The bins are approximately 317 proportionally (log) spaced. There are a lot of these bins 321 bins are kept in size order, with ties going to the 325 size. This is irrelevant for the small bins, which all contain 478 Bins 480 The bins, `av_' are an array of pairs of pointers serving as the 486 Bins for sizes < 512 bytes contain chunks of all the same size, spaced 487 8 bytes apart. Larger bins are approximately logarithmically 493 64 bins of size 8 494 32 bins of size 64 [all …]
|
H A D | dlmalloc.src | 1231 chunks. Each bin is doubly linked. The bins are approximately 1232 proportionally (log) spaced. There are a lot of these bins 1236 bins are kept in size order, with ties going to the 1240 size. This is irrelevant for the small bins, which all contain 1397 Bins 1399 The bins, `av_' are an array of pairs of pointers serving as the 1405 Bins for sizes < 512 bytes contain chunks of all the same size, spaced 1406 8 bytes apart. Larger bins are approximately logarithmically 1412 64 bins of size 8 1413 32 bins of size 64 [all …]
|
/openbmc/linux/drivers/net/wireless/ath/ath11k/ |
H A D | spectral.c | 112 u8 bins[]; member 421 unsigned int bins, fft_size; in ath11k_read_file_spectral_bins() local 427 bins = 1 << fft_size; in ath11k_read_file_spectral_bins() 431 len = sprintf(buf, "%d\n", bins); in ath11k_read_file_spectral_bins() 540 int bin_len, u8 *bins) in ath11k_spectral_get_max_exp() argument 547 /* peak index outside of bins */ in ath11k_spectral_get_max_exp() 552 if (bins[dc_pos + max_index] == (max_magnitude >> max_exp)) in ath11k_spectral_get_max_exp() 557 if (bins[dc_pos + max_index] != (max_magnitude >> max_exp)) in ath11k_spectral_get_max_exp() 616 /* Only In-band bins are useful to user for visualize */ in ath11k_spectral_process_fft() 622 ath11k_warn(ab, "Invalid num of bins %d\n", num_bins); in ath11k_spectral_process_fft() [all …]
|
/openbmc/linux/drivers/net/ethernet/stmicro/stmmac/ |
H A D | stmmac_platform.c | 26 * dwmac1000_validate_mcast_bins - validates the number of Multicast filter bins 28 * @mcast_bins: Multicast filtering bins 30 * this function validates the number of Multicast filtering bins specified 32 * 64 bins, 128 bins, or 256 bins. "bins" refer to the division of CRC 33 * number space. 64 bins correspond to 6 bits of the CRC, 128 corresponds 497 /* Set default value for multicast hash bins */ in stmmac_probe_config_dt() 520 of_property_read_u32(np, "snps,multicast-filter-bins", in stmmac_probe_config_dt()
|
/openbmc/qemu/include/block/ |
H A D | accounting.h | 66 * .bins = {3, 1, 5, 2}, 79 uint64_t *bins; member
|
/openbmc/linux/arch/arm64/boot/dts/qcom/ |
H A D | msm8996pro.dtsi | 13 * On MSM8996 Pro the cpufreq driver shifts speed bins into the high 317 * Unlike CPU opp tables, the GPU driver does not shift speed bins. 320 * 624 Mhz and 560 Mhz are available on speed bins 0 and 1. 321 * All the rest are available on all bins of the hardware (like on
|
/openbmc/skeleton/bmcctl/ |
H A D | Makefile | 1 BINS=control_bmc macro
|
/openbmc/skeleton/ledctl/ |
H A D | Makefile | 1 BINS=led_controller macro
|
/openbmc/skeleton/flashbios/ |
H A D | Makefile | 1 BINS=flash_bios macro
|
/openbmc/skeleton/op-hostctl/ |
H A D | Makefile | 1 BINS=control_host macro
|
/openbmc/skeleton/fanctl/ |
H A D | Makefile | 1 BINS=fan_control macro
|
/openbmc/skeleton/op-pwrctl/ |
H A D | Makefile | 1 BINS=power_control macro
|
/openbmc/skeleton/op-flasher/ |
H A D | Makefile | 1 BINS=flasher macro
|
/openbmc/skeleton/op-pwrctl/pgood_wait/ |
H A D | Makefile | 1 BINS=pgood_wait macro
|