Lines Matching refs:GET_BITS
26 #define GET_BITS(_x, _pos_msb, _pos_lsb) \ macro
47 ((GET_BITS((_x).horizontal_active_blanking_hi, 7, 4) << 8) + \
50 ((GET_BITS((_x).horizontal_active_blanking_hi, 3, 0) << 8) + \
56 ((GET_BITS((_x).vertical_active_blanking_hi, 7, 4) << 8) + \
59 ((GET_BITS((_x).vertical_active_blanking_hi, 3, 0) << 8) + \
66 ((GET_BITS((_x).hsync_vsync_offset_pulse_width_hi, 7, 6) << 8) + \
69 ((GET_BITS((_x).hsync_vsync_offset_pulse_width_hi, 5, 4) << 8) + \
72 ((GET_BITS((_x).hsync_vsync_offset_pulse_width_hi, 3, 2) << 4) + \
73 GET_BITS((_x).vsync_offset_pulse_width, 7, 4))
75 ((GET_BITS((_x).hsync_vsync_offset_pulse_width_hi, 1, 0) << 4) + \
76 GET_BITS((_x).vsync_offset_pulse_width, 3, 0))
81 ((GET_BITS((_x).himage_vimage_size_hi, 7, 4) << 8) + (_x).himage_size)
83 ((GET_BITS((_x).himage_vimage_size_hi, 3, 0) << 8) + (_x).vimage_size)
90 GET_BITS((_x).flags, 6, 5)
92 GET_BITS((_x).flags, 4, 3)
94 GET_BITS((_x).flags, 2, 1)
134 GET_BITS(((_x).manufacturer_name[0]), 6, 2)
136 ((GET_BITS(((_x).manufacturer_name[0]), 1, 0) << 3) + \
137 GET_BITS(((_x).manufacturer_name[1]), 7, 5))
139 GET_BITS(((_x).manufacturer_name[1]), 4, 0)
156 GET_BITS(((_x).video_input_definition), 6, 5)
178 GET_BITS(((_x).feature_support), 4, 3)
228 GET_BITS(((_x).standard_timings[_i].aspect_vfreq), 7, 6)
230 GET_BITS(((_x).standard_timings[_i].aspect_vfreq), 5, 0)
261 GET_BITS(((_x).dtd_count), 3, 0)
264 GET_BITS((_x).data[offset], 7, 5)
266 GET_BITS((_x).data[offset], 4, 0)