/openbmc/linux/drivers/comedi/drivers/ |
H A D | ni_65xx.c | 301 int bitshift = (int)(NI_65XX_PORT_TO_CHAN(port) - base_chan); in ni_65xx_update_edge_detection() local 304 if (bitshift >= 32) in ni_65xx_update_edge_detection() 307 if (bitshift >= 0) { in ni_65xx_update_edge_detection() 308 port_mask = ~0U >> bitshift; in ni_65xx_update_edge_detection() 309 port_rising = rising >> bitshift; in ni_65xx_update_edge_detection() 310 port_falling = falling >> bitshift; in ni_65xx_update_edge_detection() 312 port_mask = ~0U << -bitshift; in ni_65xx_update_edge_detection() 313 port_rising = rising << -bitshift; in ni_65xx_update_edge_detection() 314 port_falling = falling << -bitshift; in ni_65xx_update_edge_detection() 429 int bitshift = base_port_channel - base_chan; in ni_65xx_dio_insn_bits() local [all …]
|
/openbmc/linux/drivers/mmc/host/ |
H A D | mmc_spi.c | 222 int bitshift; in mmc_spi_response_get() local 265 bitshift = 0; in mmc_spi_response_get() 279 bitshift++; in mmc_spi_response_get() 332 if (bitshift) { in mmc_spi_response_get() 334 rotator |= *cp << bitshift; in mmc_spi_response_get() 355 if (bitshift) { in mmc_spi_response_get() 356 rotator |= *cp++ << bitshift; in mmc_spi_response_get() 694 unsigned int bitshift; in mmc_spi_readblock() local 715 bitshift = 7; in mmc_spi_readblock() 718 bitshift--; in mmc_spi_readblock() [all …]
|
/openbmc/linux/drivers/net/wireless/realtek/rtlwifi/rtl8192ce/ |
H A D | phy.c | 25 u32 original_value, readback_value, bitshift; in rtl92c_phy_query_rf_reg() local 42 bitshift = 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 = calculate_bit_shift(bitmask); in rtl92ce_phy_set_rf_reg() 116 (data << bitshift)); in rtl92ce_phy_set_rf_reg() 125 bitshift = calculate_bit_shift(bitmask); in rtl92ce_phy_set_rf_reg() 128 (data << bitshift)); in rtl92ce_phy_set_rf_reg()
|
/openbmc/linux/drivers/iio/adc/ |
H A 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), \
|
/openbmc/linux/drivers/net/wireless/realtek/rtlwifi/rtl8192cu/ |
H A D | phy.c | 22 u32 original_value, readback_value, bitshift; in rtl92cu_phy_query_rf_reg() local 35 bitshift = 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 = calculate_bit_shift(bitmask); in rtl92cu_phy_set_rf_reg() 62 (data << bitshift)); in rtl92cu_phy_set_rf_reg() 70 bitshift = calculate_bit_shift(bitmask); in rtl92cu_phy_set_rf_reg() 73 (data << bitshift)); in rtl92cu_phy_set_rf_reg()
|
/openbmc/linux/drivers/staging/rtl8192u/ |
H A 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 …]
|
/openbmc/linux/drivers/input/joystick/ |
H A D | twidjoy.c | 53 int bitshift; member 97 int value = (button_bits & (bp->bitmask << bp->bitshift)) >> bp->bitshift; in twidjoy_process_packet()
|
/openbmc/linux/drivers/net/wireless/realtek/rtlwifi/rtl8723com/ |
H A 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()
|
/openbmc/linux/drivers/net/wireless/realtek/rtlwifi/rtl8192se/ |
H A D | phy.c | 20 u32 returnvalue = 0, originalvalue, bitshift; in rtl92s_phy_query_bb_reg() local 26 bitshift = calculate_bit_shift(bitmask); in rtl92s_phy_query_bb_reg() 27 returnvalue = (originalvalue & bitmask) >> bitshift; in rtl92s_phy_query_bb_reg() 40 u32 originalvalue, bitshift; in rtl92s_phy_set_bb_reg() local 48 bitshift = calculate_bit_shift(bitmask); in rtl92s_phy_set_bb_reg() 49 data = ((originalvalue & (~bitmask)) | (data << bitshift)); in rtl92s_phy_set_bb_reg() 143 u32 original_value, readback_value, bitshift; in rtl92s_phy_query_rf_reg() local 153 bitshift = calculate_bit_shift(bitmask); in rtl92s_phy_query_rf_reg() 154 readback_value = (original_value & bitmask) >> bitshift; in rtl92s_phy_query_rf_reg() 170 u32 original_value, bitshift; in rtl92s_phy_set_rf_reg() local [all …]
|
/openbmc/linux/drivers/staging/rtl8712/ |
H A 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()
|
/openbmc/linux/drivers/net/wireless/realtek/rtlwifi/rtl8188ee/ |
H A D | phy.c | 43 u32 returnvalue, originalvalue, bitshift; in rtl88e_phy_query_bb_reg() local 48 bitshift = calculate_bit_shift(bitmask); in rtl88e_phy_query_bb_reg() 49 returnvalue = (originalvalue & bitmask) >> bitshift; in rtl88e_phy_query_bb_reg() 63 u32 originalvalue, bitshift; in rtl88e_phy_set_bb_reg() local 71 bitshift = calculate_bit_shift(bitmask); in rtl88e_phy_set_bb_reg() 72 data = ((originalvalue & (~bitmask)) | (data << bitshift)); in rtl88e_phy_set_bb_reg() 86 u32 original_value, readback_value, bitshift; in rtl88e_phy_query_rf_reg() local 96 bitshift = calculate_bit_shift(bitmask); in rtl88e_phy_query_rf_reg() 97 readback_value = (original_value & bitmask) >> bitshift; in rtl88e_phy_query_rf_reg() 112 u32 original_value, bitshift; in rtl88e_phy_set_rf_reg() local [all …]
|
/openbmc/linux/drivers/net/wireless/realtek/rtlwifi/rtl8723ae/ |
H A D | phy.c | 38 u32 original_value = 0, readback_value, bitshift; in rtl8723e_phy_query_rf_reg() local 52 bitshift = 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 = calculate_bit_shift(bitmask); in rtl8723e_phy_set_rf_reg() 86 (data << bitshift)); in rtl8723e_phy_set_rf_reg() 92 bitshift = calculate_bit_shift(bitmask); in rtl8723e_phy_set_rf_reg() 95 (data << bitshift)); in rtl8723e_phy_set_rf_reg()
|
/openbmc/linux/drivers/net/wireless/realtek/rtlwifi/rtl8192ee/ |
H A D | phy.c | 43 u32 returnvalue, originalvalue, bitshift; in rtl92ee_phy_query_bb_reg() local 48 bitshift = calculate_bit_shift(bitmask); in rtl92ee_phy_query_bb_reg() 49 returnvalue = (originalvalue & bitmask) >> bitshift; in rtl92ee_phy_query_bb_reg() 62 u32 originalvalue, bitshift; in rtl92ee_phy_set_bb_reg() local 70 bitshift = calculate_bit_shift(bitmask); in rtl92ee_phy_set_bb_reg() 71 data = ((originalvalue & (~bitmask)) | (data << bitshift)); in rtl92ee_phy_set_bb_reg() 85 u32 original_value, readback_value, bitshift; in rtl92ee_phy_query_rf_reg() local 94 bitshift = calculate_bit_shift(bitmask); in rtl92ee_phy_query_rf_reg() 95 readback_value = (original_value & bitmask) >> bitshift; in rtl92ee_phy_query_rf_reg() 111 u32 original_value, bitshift; in rtl92ee_phy_set_rf_reg() local [all …]
|
/openbmc/linux/drivers/net/ethernet/altera/ |
H A D | altera_tse_main.c | 816 unsigned int bitshift; in altera_tse_set_mcfilter() local 818 for (bitshift = 0; bitshift < 8; bitshift++) in altera_tse_set_mcfilter() 819 xor_bit ^= ((octet >> bitshift) & 0x01); in altera_tse_set_mcfilter()
|
/openbmc/linux/drivers/net/wireless/realtek/rtlwifi/rtl8192c/ |
H A D | phy_common.c | 15 u32 returnvalue, originalvalue, bitshift; in rtl92c_phy_query_bb_reg() local 20 bitshift = 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 = calculate_bit_shift(bitmask); in rtl92c_phy_set_bb_reg() 44 data = ((originalvalue & (~bitmask)) | (data << bitshift)); in rtl92c_phy_set_bb_reg()
|
/openbmc/linux/drivers/net/wireless/realtek/rtlwifi/rtl8192de/ |
H A D | phy.c | 176 u32 returnvalue, originalvalue, bitshift; in rtl92d_phy_query_bb_reg() local 194 bitshift = calculate_bit_shift(bitmask); in rtl92d_phy_query_bb_reg() 195 returnvalue = (originalvalue & bitmask) >> bitshift; in rtl92d_phy_query_bb_reg() 208 u32 originalvalue, bitshift; in rtl92d_phy_set_bb_reg() local 226 bitshift = calculate_bit_shift(bitmask); in rtl92d_phy_set_bb_reg() 227 data = ((originalvalue & (~bitmask)) | (data << bitshift)); in rtl92d_phy_set_bb_reg() 306 u32 original_value, readback_value, bitshift; in rtl92d_phy_query_rf_reg() local 313 bitshift = calculate_bit_shift(bitmask); in rtl92d_phy_query_rf_reg() 314 readback_value = (original_value & bitmask) >> bitshift; in rtl92d_phy_query_rf_reg() 327 u32 original_value, bitshift; in rtl92d_phy_set_rf_reg() local [all …]
|
/openbmc/linux/drivers/net/wireless/realtek/rtlwifi/rtl8821ae/ |
H A D | phy.c | 103 u32 returnvalue, originalvalue, bitshift; in rtl8821ae_phy_query_bb_reg() local 109 bitshift = _rtl8821ae_phy_calculate_bit_shift(bitmask); in rtl8821ae_phy_query_bb_reg() 110 returnvalue = (originalvalue & bitmask) >> bitshift; in rtl8821ae_phy_query_bb_reg() 122 u32 originalvalue, bitshift; in rtl8821ae_phy_set_bb_reg() local 130 bitshift = _rtl8821ae_phy_calculate_bit_shift(bitmask); in rtl8821ae_phy_set_bb_reg() 132 ((data << bitshift) & bitmask)); in rtl8821ae_phy_set_bb_reg() 147 u32 original_value, readback_value, bitshift; in rtl8821ae_phy_query_rf_reg() local 156 bitshift = _rtl8821ae_phy_calculate_bit_shift(bitmask); in rtl8821ae_phy_query_rf_reg() 157 readback_value = (original_value & bitmask) >> bitshift; in rtl8821ae_phy_query_rf_reg() 173 u32 original_value, bitshift; in rtl8821ae_phy_set_rf_reg() local [all …]
|
/openbmc/linux/drivers/net/wireless/realtek/rtlwifi/rtl8723be/ |
H A D | phy.c | 35 u32 original_value, readback_value, bitshift; in rtl8723be_phy_query_rf_reg() local 44 bitshift = 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 = calculate_bit_shift(bitmask); in rtl8723be_phy_set_rf_reg() 73 (data << bitshift)); in rtl8723be_phy_set_rf_reg()
|
/openbmc/linux/drivers/gpu/drm/display/ |
H A 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()
|
/openbmc/linux/Documentation/bpf/ |
H A D | llvm_reloc.rst | 293 BPF_CORE_FIELD_LSHIFT_U64 = 4, /* bitfield-specific left bitshift */ 294 BPF_CORE_FIELD_RSHIFT_U64 = 5, /* bitfield-specific right bitshift */
|
/openbmc/linux/fs/ocfs2/ |
H A D | super.c | 571 unsigned int bitshift = 32; in ocfs2_max_file_offset() local 591 bitshift = 31; in ocfs2_max_file_offset() 600 return (((unsigned long long)bytes) << bitshift) - trim; in ocfs2_max_file_offset()
|