Home
last modified time | relevance | path

Searched refs:high_bits (Results 1 – 5 of 5) sorted by relevance

/drivers/input/touchscreen/
Djornada720_ts.c55 int coord, high_bits = coords[3]; in jornada720_ts_average() local
57 coord = coords[0] | ((high_bits & 0x03) << 8); in jornada720_ts_average()
58 coord += coords[1] | ((high_bits & 0x0c) << 6); in jornada720_ts_average()
59 coord += coords[2] | ((high_bits & 0x30) << 4); in jornada720_ts_average()
/drivers/gpu/drm/qxl/
Dqxl_kms.c74 uint64_t high_bits; in setup_slot() local
84 high_bits = (qdev->rom->slots_start + slot->index) in setup_slot()
86 high_bits |= slot->generation; in setup_slot()
87 high_bits <<= (64 - (qdev->rom->slot_gen_bits + qdev->rom->slot_id_bits)); in setup_slot()
88 slot->high_bits = high_bits; in setup_slot()
Dqxl_drv.h136 uint64_t high_bits; member
311 return slot->high_bits | ((bo->tbo.mem.start << PAGE_SHIFT) + offset); in qxl_bo_physical_address()
/drivers/net/ethernet/intel/ixgbe/
Dixgbe_phy.c95 u8 high_bits; in ixgbe_read_i2c_combined_generic_int() local
125 if (ixgbe_in_i2c_byte_ack(hw, &high_bits)) in ixgbe_read_i2c_combined_generic_int()
139 *val = (high_bits << 8) | low_bits; in ixgbe_read_i2c_combined_generic_int()
/drivers/net/ethernet/broadcom/bnxt/
Dbnxt_tc.c1722 #define high_bits(x, mask) ((x) & ~(mask)) in accumulate_val() macro
1725 *accum = high_bits(*accum, mask) + val; in accumulate_val()