/linux/drivers/media/test-drivers/vivid/ |
H A D | vivid-radio-rx.c | 153 unsigned spacing; in vivid_radio_rx_s_hw_freq_seek() local 192 spacing = band == BAND_AM ? 1600 : 16000; in vivid_radio_rx_s_hw_freq_seek() 196 freq = spacing * (freq / spacing) + spacing; in vivid_radio_rx_s_hw_freq_seek() 200 freq = spacing * (low / spacing) + spacing; in vivid_radio_rx_s_hw_freq_seek() 205 freq = spacing * ((freq + spacing in vivid_radio_rx_s_hw_freq_seek() [all...] |
/linux/drivers/net/ethernet/intel/idpf/ |
H A D | idpf_vf_dev.c | 98 u32 spacing; in idpf_vf_intr_reg_init() local 111 spacing = IDPF_ITR_IDX_SPACING(reg_vals[vec_id].itrn_index_spacing, in idpf_vf_intr_reg_init() 115 spacing); in idpf_vf_intr_reg_init() 118 spacing); in idpf_vf_intr_reg_init()
|
H A D | idpf_dev.c | 99 u32 spacing; in idpf_intr_reg_init() local 112 spacing = IDPF_ITR_IDX_SPACING(reg_vals[vec_id].itrn_index_spacing, in idpf_intr_reg_init() 116 spacing); in idpf_intr_reg_init() 119 spacing); in idpf_intr_reg_init()
|
H A D | idpf_txrx.h | 325 * @itrn_index_spacing: Register spacing between ITR registers of the same 467 #define IDPF_ITR_IDX_SPACING(spacing, dflt) (spacing ? spacing : dflt) argument
|
/linux/Documentation/ABI/testing/ |
H A D | sysfs-bus-iio-frequency-adf4350 | 5 Stores channel Y frequency resolution/channel spacing in Hz. 9 generate proper values for multiples of channel spacing.
|
H A D | sysfs-tty | 139 Show the register shift indicating the spacing to be used
|
/linux/drivers/media/radio/ |
H A D | radio-wl1273.c | 48 unsigned int spacing; member 794 if (dir && f + radio->spacing <= radio->rangehigh) in wl1273_fm_set_seek() 795 r = wl1273_fm_set_rx_freq(radio, f + radio->spacing); in wl1273_fm_set_seek() 798 else if (f - radio->spacing >= radio->rangelow) in wl1273_fm_set_seek() 799 r = wl1273_fm_set_rx_freq(radio, f - radio->spacing); in wl1273_fm_set_seek() 1347 unsigned int spacing) in wl1273_fm_tx_set_spacing() argument 1352 if (spacing == 0) { in wl1273_fm_tx_set_spacing() 1355 radio->spacing = 100; in wl1273_fm_tx_set_spacing() 1356 } else if (spacing - 50000 < 25000) { in wl1273_fm_tx_set_spacing() 1359 radio->spacing in wl1273_fm_tx_set_spacing() [all...] |
H A D | radio-tea5777.c | 376 int i, res, spacing; in vidioc_s_hw_freq_seek() local 409 spacing = (tea->band == BAND_AM) ? (5 * 16) : (200 * 16); /* kHz */ in vidioc_s_hw_freq_seek() 434 tea->freq = orig_freq + spacing; in vidioc_s_hw_freq_seek() 437 tea->freq = orig_freq - spacing; in vidioc_s_hw_freq_seek()
|
H A D | tea575x.c | 360 int i, spacing; in snd_tea575x_s_hw_freq_seek() local 390 spacing = (tea->band == BAND_AM) ? 5 : 50; /* kHz */ in snd_tea575x_s_hw_freq_seek() 423 * if we moved by less than the spacing, or in the in snd_tea575x_s_hw_freq_seek() 426 if (abs(tea->freq - freq) < 16 * spacing || in snd_tea575x_s_hw_freq_seek()
|
H A D | radio-si476x.c | 800 if (seek->spacing) { in si476x_radio_s_hw_freq_seek() 804 seek->spacing)); in si476x_radio_s_hw_freq_seek()
|
/linux/Documentation/userspace-api/media/v4l/ |
H A D | vidioc-s-hw-freq-seek.rst | 36 ``wrap_around``, ``spacing``, ``rangelow`` and ``rangehigh`` fields, and 90 - ``spacing`` 93 If spacing is zero a reasonable default value is used.
|
/linux/drivers/md/dm-vdo/indexer/ |
H A D | delta-index.c | 219 u64 spacing; in uds_reset_delta_index() local 237 spacing = list_bits / zone->list_count; in uds_reset_delta_index() 238 offset = spacing / 2; in uds_reset_delta_index() 241 offset += spacing; in uds_reset_delta_index() 783 size_t spacing; in compute_new_list_offsets() local 788 spacing = (delta_zone->size - used_space) / delta_zone->list_count; in compute_new_list_offsets() 793 get_delta_list_byte_size(&delta_lists[i]) + spacing); in compute_new_list_offsets() 797 delta_zone->new_offsets[i + 1] -= spacing / 2; in compute_new_list_offsets()
|
/linux/rust/macros/ |
H A D | paste.rs | 96 if a.as_char() == ':' && a.spacing() == Spacing::Joint && b.as_char() == ':' in expand()
|
/linux/arch/arm/boot/dts/calxeda/ |
H A D | ecx-common.dtsi | 128 reg-spacing = <4>;
|
/linux/Documentation/sphinx/ |
H A D | kerneldoc-preamble.sty | 138 %% One and half spacing for CJK contents 195 % Single spacing in literal blocks
|
/linux/drivers/net/wireless/silabs/wfx/ |
H A D | hif_api_mib.h | 285 u8 spacing:1; member
|
H A D | hif_tx_mib.c | 185 .spacing = 1, in wfx_hif_set_association_mode()
|
/linux/tools/perf/ |
H A D | builtin-script.c | 1579 static int spacing; in perf_sample__fprintf_callindent() local 1611 if (len > spacing || (len && len < spacing - 52)) in perf_sample__fprintf_callindent() 1612 spacing = round_up(len + 4, 32); in perf_sample__fprintf_callindent() 1614 if (len < spacing) in perf_sample__fprintf_callindent() 1615 len += fprintf(fp, "%*s", spacing - len, ""); in perf_sample__fprintf_callindent() 1820 static int perf_sample__fprintf_spacing(int len, int spacing, FILE *fp) in perf_sample__fprintf_spacing() argument 1822 if (len > 0 && len < spacing) in perf_sample__fprintf_spacing() 1823 return fprintf(fp, "%*s", spacing - len, ""); in perf_sample__fprintf_spacing()
|
/linux/arch/arm64/boot/dts/amd/ |
H A D | amd-seattle-soc.dtsi | 280 reg-spacing = <4>;
|
/linux/drivers/tty/vt/ |
H A D | cp437.uni | 287 # Square bullet, non-spacing blank
|
/linux/drivers/atm/ |
H A D | iphase.c | 467 u32 spacing; in ia_cbr_setup() local 503 spacing = dev->CbrTotEntries / entries; in ia_cbr_setup() 508 IF_CBR(printk("Vci=0x%x,Spacing=0x%x,Sp_mod=0x%x\n",vcIndex,spacing,sp_mod);) in ia_cbr_setup() 520 idealSlot += (u32)(spacing + fracSlot); // Point to the next location in ia_cbr_setup()
|
/linux/Documentation/scsi/ |
H A D | st.rst | 507 using the SCSI spacing to EOD (global) 641 The MTEOM command is by default implemented as spacing over 32767 643 correct. The user can request using direct spacing to EOD by setting
|
/linux/net/mac80211/ |
H A D | tdls.c | 74 u16 spacing) in ieee80211_tdls_add_subband() argument 82 for (i = start; i <= end; i += spacing) { in ieee80211_tdls_add_subband() 146 /* 2GHz, with 5MHz spacing */ in ieee80211_tdls_add_supp_channels() 149 /* 5GHz, with 20MHz spacing */ in ieee80211_tdls_add_supp_channels()
|
/linux/include/uapi/linux/ |
H A D | videodev2.h | 2144 __u32 spacing; member
|
/linux/scripts/ |
H A D | checkpatch.pl | 4968 # check spacing between type, funcptr, and args 5037 # check for spacing round square brackets; allowed: 5090 # Check operator spacing. 5327 "need consistent spacing around '$op' $at\n" . $hereptr)) { 5462 # check spacing on square brackets 5480 # check spacing on parentheses 5581 my $spacing = $1; 5590 } elsif ($spacing !~ /\s+/) { 6646 # warn about spacing in #ifdefs
|