/kernel/linux/linux-5.10/drivers/staging/comedi/drivers/ |
D | ni_65xx.c | 302 int bitshift = (int)(NI_65XX_PORT_TO_CHAN(port) - base_chan); in ni_65xx_update_edge_detection() local 305 if (bitshift >= 32) in ni_65xx_update_edge_detection() 308 if (bitshift >= 0) { in ni_65xx_update_edge_detection() 309 port_mask = ~0U >> bitshift; in ni_65xx_update_edge_detection() 310 port_rising = rising >> bitshift; in ni_65xx_update_edge_detection() 311 port_falling = falling >> bitshift; in ni_65xx_update_edge_detection() 313 port_mask = ~0U << -bitshift; in ni_65xx_update_edge_detection() 314 port_rising = rising << -bitshift; in ni_65xx_update_edge_detection() 315 port_falling = falling << -bitshift; in ni_65xx_update_edge_detection() 430 int bitshift = base_port_channel - base_chan; in ni_65xx_dio_insn_bits() local [all …]
|
/kernel/linux/linux-5.10/drivers/iio/adc/ |
D | ti-tlc4541.c | 58 #define TLC4541_V_CHAN(bits, bitshift) { \ argument 66 .shift = (bitshift), \ 71 #define DECLARE_TLC4541_CHANNELS(name, bits, bitshift) \ argument 73 TLC4541_V_CHAN(bits, bitshift), \
|
/kernel/linux/linux-5.10/drivers/net/wireless/realtek/rtlwifi/rtl8192ce/ |
D | phy.c | 25 u32 original_value, readback_value, bitshift; in rtl92c_phy_query_rf_reg() local 42 bitshift = _rtl92c_phy_calculate_bit_shift(bitmask); in rtl92c_phy_query_rf_reg() 43 readback_value = (original_value & bitmask) >> bitshift; in rtl92c_phy_query_rf_reg() 100 u32 original_value, bitshift; in rtl92ce_phy_set_rf_reg() local 113 bitshift = _rtl92c_phy_calculate_bit_shift(bitmask); in rtl92ce_phy_set_rf_reg() 116 (data << bitshift)); in rtl92ce_phy_set_rf_reg() 125 bitshift = _rtl92c_phy_calculate_bit_shift(bitmask); in rtl92ce_phy_set_rf_reg() 128 (data << bitshift)); in rtl92ce_phy_set_rf_reg()
|
/kernel/linux/linux-5.10/drivers/mmc/host/ |
D | mmc_spi.c | 249 int bitshift; in mmc_spi_response_get() local 296 bitshift = 0; in mmc_spi_response_get() 310 bitshift++; in mmc_spi_response_get() 363 if (bitshift) { in mmc_spi_response_get() 365 rotator |= *cp << bitshift; in mmc_spi_response_get() 386 if (bitshift) { in mmc_spi_response_get() 387 rotator |= *cp++ << bitshift; in mmc_spi_response_get() 765 unsigned int bitshift; in mmc_spi_readblock() local 786 bitshift = 7; in mmc_spi_readblock() 789 bitshift--; in mmc_spi_readblock() [all …]
|
/kernel/linux/linux-5.10/drivers/net/wireless/realtek/rtlwifi/rtl8192cu/ |
D | phy.c | 22 u32 original_value, readback_value, bitshift; in rtl92cu_phy_query_rf_reg() local 35 bitshift = _rtl92c_phy_calculate_bit_shift(bitmask); in rtl92cu_phy_query_rf_reg() 36 readback_value = (original_value & bitmask) >> bitshift; in rtl92cu_phy_query_rf_reg() 49 u32 original_value, bitshift; in rtl92cu_phy_set_rf_reg() local 59 bitshift = _rtl92c_phy_calculate_bit_shift(bitmask); in rtl92cu_phy_set_rf_reg() 62 (data << bitshift)); in rtl92cu_phy_set_rf_reg() 70 bitshift = _rtl92c_phy_calculate_bit_shift(bitmask); in rtl92cu_phy_set_rf_reg() 73 (data << bitshift)); in rtl92cu_phy_set_rf_reg()
|
/kernel/linux/linux-5.10/drivers/staging/rtl8192u/ |
D | r819xU_phy.c | 70 u32 reg, bitshift; in rtl8192_setBBreg() local 74 bitshift = ffs(bitmask) - 1; in rtl8192_setBBreg() 76 reg |= data << bitshift; in rtl8192_setBBreg() 94 u32 reg, bitshift; in rtl8192_QueryBBReg() local 97 bitshift = ffs(bitmask) - 1; in rtl8192_QueryBBReg() 99 return (reg & bitmask) >> bitshift; in rtl8192_QueryBBReg() 277 u32 reg, bitshift; in rtl8192_phy_SetRFReg() local 286 bitshift = ffs(bitmask) - 1; in rtl8192_phy_SetRFReg() 288 reg |= data << bitshift; in rtl8192_phy_SetRFReg() 301 bitshift = ffs(bitmask) - 1; in rtl8192_phy_SetRFReg() [all …]
|
/kernel/linux/linux-5.10/drivers/input/joystick/ |
D | twidjoy.c | 56 int bitshift; member 100 int value = (button_bits & (bp->bitmask << bp->bitshift)) >> bp->bitshift; in twidjoy_process_packet()
|
/kernel/linux/linux-5.10/drivers/net/wireless/realtek/rtlwifi/rtl8723com/ |
D | phy_common.c | 15 u32 returnvalue, originalvalue, bitshift; in rtl8723_phy_query_bb_reg() local 20 bitshift = rtl8723_phy_calculate_bit_shift(bitmask); in rtl8723_phy_query_bb_reg() 21 returnvalue = (originalvalue & bitmask) >> bitshift; in rtl8723_phy_query_bb_reg() 34 u32 originalvalue, bitshift; in rtl8723_phy_set_bb_reg() local 42 bitshift = rtl8723_phy_calculate_bit_shift(bitmask); in rtl8723_phy_set_bb_reg() 43 data = ((originalvalue & (~bitmask)) | (data << bitshift)); in rtl8723_phy_set_bb_reg()
|
/kernel/linux/linux-5.10/drivers/net/wireless/realtek/rtlwifi/rtl8192se/ |
D | phy.c | 27 u32 returnvalue = 0, originalvalue, bitshift; in rtl92s_phy_query_bb_reg() local 33 bitshift = _rtl92s_phy_calculate_bit_shift(bitmask); in rtl92s_phy_query_bb_reg() 34 returnvalue = (originalvalue & bitmask) >> bitshift; in rtl92s_phy_query_bb_reg() 47 u32 originalvalue, bitshift; in rtl92s_phy_set_bb_reg() local 55 bitshift = _rtl92s_phy_calculate_bit_shift(bitmask); in rtl92s_phy_set_bb_reg() 56 data = ((originalvalue & (~bitmask)) | (data << bitshift)); in rtl92s_phy_set_bb_reg() 153 u32 original_value, readback_value, bitshift; in rtl92s_phy_query_rf_reg() local 163 bitshift = _rtl92s_phy_calculate_bit_shift(bitmask); in rtl92s_phy_query_rf_reg() 164 readback_value = (original_value & bitmask) >> bitshift; in rtl92s_phy_query_rf_reg() 180 u32 original_value, bitshift; in rtl92s_phy_set_rf_reg() local [all …]
|
/kernel/linux/linux-5.10/drivers/staging/rtl8712/ |
D | rtl871x_mp.c | 194 static u32 bitshift(u32 bitmask) in bitshift() function 209 bit_shift = bitshift(bitmask); in get_bb_reg() 222 bit_shift = bitshift(bitmask); in set_bb_reg() 236 bit_shift = bitshift(bitmask); in get_rf_reg() 247 bit_shift = bitshift(bitmask); in set_rf_reg()
|
/kernel/linux/linux-5.10/drivers/net/wireless/realtek/rtlwifi/rtl8188ee/ |
D | phy.c | 49 u32 returnvalue, originalvalue, bitshift; in rtl88e_phy_query_bb_reg() local 54 bitshift = _rtl88e_phy_calculate_bit_shift(bitmask); in rtl88e_phy_query_bb_reg() 55 returnvalue = (originalvalue & bitmask) >> bitshift; in rtl88e_phy_query_bb_reg() 69 u32 originalvalue, bitshift; in rtl88e_phy_set_bb_reg() local 77 bitshift = _rtl88e_phy_calculate_bit_shift(bitmask); in rtl88e_phy_set_bb_reg() 78 data = ((originalvalue & (~bitmask)) | (data << bitshift)); in rtl88e_phy_set_bb_reg() 92 u32 original_value, readback_value, bitshift; in rtl88e_phy_query_rf_reg() local 102 bitshift = _rtl88e_phy_calculate_bit_shift(bitmask); in rtl88e_phy_query_rf_reg() 103 readback_value = (original_value & bitmask) >> bitshift; in rtl88e_phy_query_rf_reg() 118 u32 original_value, bitshift; in rtl88e_phy_set_rf_reg() local [all …]
|
/kernel/linux/linux-5.10/drivers/net/wireless/realtek/rtlwifi/rtl8723ae/ |
D | phy.c | 38 u32 original_value = 0, readback_value, bitshift; in rtl8723e_phy_query_rf_reg() local 52 bitshift = rtl8723_phy_calculate_bit_shift(bitmask); in rtl8723e_phy_query_rf_reg() 53 readback_value = (original_value & bitmask) >> bitshift; in rtl8723e_phy_query_rf_reg() 70 u32 original_value = 0, bitshift; in rtl8723e_phy_set_rf_reg() local 83 bitshift = rtl8723_phy_calculate_bit_shift(bitmask); in rtl8723e_phy_set_rf_reg() 86 (data << bitshift)); in rtl8723e_phy_set_rf_reg() 92 bitshift = rtl8723_phy_calculate_bit_shift(bitmask); in rtl8723e_phy_set_rf_reg() 95 (data << bitshift)); in rtl8723e_phy_set_rf_reg()
|
/kernel/linux/linux-5.10/drivers/net/wireless/realtek/rtlwifi/rtl8192ee/ |
D | phy.c | 44 u32 returnvalue, originalvalue, bitshift; in rtl92ee_phy_query_bb_reg() local 49 bitshift = _rtl92ee_phy_calculate_bit_shift(bitmask); in rtl92ee_phy_query_bb_reg() 50 returnvalue = (originalvalue & bitmask) >> bitshift; in rtl92ee_phy_query_bb_reg() 63 u32 originalvalue, bitshift; in rtl92ee_phy_set_bb_reg() local 71 bitshift = _rtl92ee_phy_calculate_bit_shift(bitmask); in rtl92ee_phy_set_bb_reg() 72 data = ((originalvalue & (~bitmask)) | (data << bitshift)); in rtl92ee_phy_set_bb_reg() 86 u32 original_value, readback_value, bitshift; in rtl92ee_phy_query_rf_reg() local 95 bitshift = _rtl92ee_phy_calculate_bit_shift(bitmask); in rtl92ee_phy_query_rf_reg() 96 readback_value = (original_value & bitmask) >> bitshift; in rtl92ee_phy_query_rf_reg() 112 u32 original_value, bitshift; in rtl92ee_phy_set_rf_reg() local [all …]
|
/kernel/linux/linux-5.10/drivers/net/wireless/realtek/rtlwifi/rtl8192c/ |
D | phy_common.c | 15 u32 returnvalue, originalvalue, bitshift; in rtl92c_phy_query_bb_reg() local 20 bitshift = _rtl92c_phy_calculate_bit_shift(bitmask); in rtl92c_phy_query_bb_reg() 21 returnvalue = (originalvalue & bitmask) >> bitshift; in rtl92c_phy_query_bb_reg() 35 u32 originalvalue, bitshift; in rtl92c_phy_set_bb_reg() local 43 bitshift = _rtl92c_phy_calculate_bit_shift(bitmask); in rtl92c_phy_set_bb_reg() 44 data = ((originalvalue & (~bitmask)) | (data << bitshift)); in rtl92c_phy_set_bb_reg()
|
/kernel/linux/linux-5.10/drivers/net/ethernet/altera/ |
D | altera_tse_main.c | 1029 unsigned int bitshift; in altera_tse_set_mcfilter() local 1031 for (bitshift = 0; bitshift < 8; bitshift++) in altera_tse_set_mcfilter() 1032 xor_bit ^= ((octet >> bitshift) & 0x01); in altera_tse_set_mcfilter()
|
/kernel/linux/linux-5.10/drivers/net/wireless/realtek/rtlwifi/rtl8192de/ |
D | phy.c | 174 u32 returnvalue, originalvalue, bitshift; in rtl92d_phy_query_bb_reg() local 192 bitshift = _rtl92d_phy_calculate_bit_shift(bitmask); in rtl92d_phy_query_bb_reg() 193 returnvalue = (originalvalue & bitmask) >> bitshift; in rtl92d_phy_query_bb_reg() 206 u32 originalvalue, bitshift; in rtl92d_phy_set_bb_reg() local 224 bitshift = _rtl92d_phy_calculate_bit_shift(bitmask); in rtl92d_phy_set_bb_reg() 225 data = ((originalvalue & (~bitmask)) | (data << bitshift)); in rtl92d_phy_set_bb_reg() 304 u32 original_value, readback_value, bitshift; in rtl92d_phy_query_rf_reg() local 311 bitshift = _rtl92d_phy_calculate_bit_shift(bitmask); in rtl92d_phy_query_rf_reg() 312 readback_value = (original_value & bitmask) >> bitshift; in rtl92d_phy_query_rf_reg() 325 u32 original_value, bitshift; in rtl92d_phy_set_rf_reg() local [all …]
|
/kernel/linux/linux-5.10/drivers/net/wireless/realtek/rtlwifi/rtl8821ae/ |
D | phy.c | 102 u32 returnvalue, originalvalue, bitshift; in rtl8821ae_phy_query_bb_reg() local 108 bitshift = _rtl8821ae_phy_calculate_bit_shift(bitmask); in rtl8821ae_phy_query_bb_reg() 109 returnvalue = (originalvalue & bitmask) >> bitshift; in rtl8821ae_phy_query_bb_reg() 121 u32 originalvalue, bitshift; in rtl8821ae_phy_set_bb_reg() local 129 bitshift = _rtl8821ae_phy_calculate_bit_shift(bitmask); in rtl8821ae_phy_set_bb_reg() 131 ((data << bitshift) & bitmask)); in rtl8821ae_phy_set_bb_reg() 146 u32 original_value, readback_value, bitshift; in rtl8821ae_phy_query_rf_reg() local 155 bitshift = _rtl8821ae_phy_calculate_bit_shift(bitmask); in rtl8821ae_phy_query_rf_reg() 156 readback_value = (original_value & bitmask) >> bitshift; in rtl8821ae_phy_query_rf_reg() 172 u32 original_value, bitshift; in rtl8821ae_phy_set_rf_reg() local [all …]
|
/kernel/linux/linux-5.10/drivers/net/wireless/realtek/rtlwifi/rtl8723be/ |
D | phy.c | 35 u32 original_value, readback_value, bitshift; in rtl8723be_phy_query_rf_reg() local 44 bitshift = rtl8723_phy_calculate_bit_shift(bitmask); in rtl8723be_phy_query_rf_reg() 45 readback_value = (original_value & bitmask) >> bitshift; in rtl8723be_phy_query_rf_reg() 60 u32 original_value, bitshift; in rtl8723be_phy_set_rf_reg() local 71 bitshift = rtl8723_phy_calculate_bit_shift(bitmask); in rtl8723be_phy_set_rf_reg() 73 (data << bitshift)); in rtl8723be_phy_set_rf_reg()
|
/kernel/linux/linux-5.10/drivers/gpu/drm/ |
D | drm_dp_mst_topology.c | 200 u8 bitshift = 7; in drm_dp_msg_header_crc4() local 208 remainder |= (data[array_index] & bitmask) >> bitshift; in drm_dp_msg_header_crc4() 210 bitshift--; in drm_dp_msg_header_crc4() 213 bitshift = 7; in drm_dp_msg_header_crc4() 234 u8 bitshift = 7; in drm_dp_msg_data_crc4() local 242 remainder |= (data[array_index] & bitmask) >> bitshift; in drm_dp_msg_data_crc4() 244 bitshift--; in drm_dp_msg_data_crc4() 247 bitshift = 7; in drm_dp_msg_data_crc4()
|
/kernel/linux/linux-5.10/fs/ocfs2/ |
D | super.c | 574 unsigned int bitshift = 32; in ocfs2_max_file_offset() local 594 bitshift = 31; in ocfs2_max_file_offset() 603 return (((unsigned long long)bytes) << bitshift) - trim; in ocfs2_max_file_offset()
|