/external/u-boot/include/ |
D | edid.h | 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) + \ [all …]
|
/external/linux-kselftest/tools/testing/selftests/x86/ |
D | mpx-hw.h | 74 static inline unsigned long GET_BITS(unsigned long val, int bottombit, int topbit) in GET_BITS() function 83 return GET_BITS((unsigned long)vaddr, MPX_BOUNDS_TABLE_BOTTOM_BIT, in __vaddr_bounds_table_index() 89 return GET_BITS((unsigned long)vaddr, MPX_BOUNDS_DIR_BOTTOM_BIT, in __vaddr_bounds_directory_index()
|
/external/libjpeg-turbo/ |
D | jdphuff.c | 342 r = GET_BITS(s); in decode_mcu_DC_first() 419 r = GET_BITS(s); in decode_mcu_AC_first() 430 r = GET_BITS(r); in decode_mcu_AC_first() 489 if (GET_BITS(1)) in decode_mcu_DC_refine() 563 if (GET_BITS(1)) in decode_mcu_AC_refine() 572 r = GET_BITS(r); in decode_mcu_AC_refine() 587 if (GET_BITS(1)) { in decode_mcu_AC_refine() 621 if (GET_BITS(1)) { in decode_mcu_AC_refine()
|
D | jdhuff.c | 462 code = GET_BITS(l); in jpeg_huff_decode() 470 code |= GET_BITS(1); in jpeg_huff_decode() 585 r = GET_BITS(s); in decode_mcu_slow() 613 r = GET_BITS(s); in decode_mcu_slow() 681 r = GET_BITS(s); in decode_mcu_fast() 703 r = GET_BITS(s); in decode_mcu_fast()
|
D | jdhuff.h | 159 #define GET_BITS(nbits) \ macro 228 s |= GET_BITS(1); \
|
/external/u-boot/lib/bzip2/ |
D | bzlib_decompress.c | 86 #define GET_BITS(lll,vvv,nnn) \ macro 111 GET_BITS(lll,uuu,8) 114 GET_BITS(lll,uuu,1) 132 GET_BITS(label1, zvec, zn); \ 249 GET_BITS(BZ_X_MAGIC_4, s->blockSize100k, 8) in BZ2_decompress() 294 GET_BITS(BZ_X_RANDBIT, s->blockRandomised, 1); in BZ2_decompress() 330 GET_BITS(BZ_X_SELECTOR_1, nGroups, 3); in BZ2_decompress() 332 GET_BITS(BZ_X_SELECTOR_2, nSelectors, 15); in BZ2_decompress() 361 GET_BITS(BZ_X_CODING_1, curr, 5); in BZ2_decompress()
|
/external/bzip2/ |
D | decompress.c | 43 #define GET_BITS(lll,vvv,nnn) \ macro 68 GET_BITS(lll,uuu,8) 71 GET_BITS(lll,uuu,1) 89 GET_BITS(label1, zvec, zn); \ 206 GET_BITS(BZ_X_MAGIC_4, s->blockSize100k, 8) in BZ2_decompress() 251 GET_BITS(BZ_X_RANDBIT, s->blockRandomised, 1); in BZ2_decompress() 287 GET_BITS(BZ_X_SELECTOR_1, nGroups, 3); in BZ2_decompress() 289 GET_BITS(BZ_X_SELECTOR_2, nSelectors, 15); in BZ2_decompress() 319 GET_BITS(BZ_X_CODING_1, curr, 5); in BZ2_decompress()
|
/external/libhevc/common/arm/ |
D | ihevc_intra_ref_substitution_a9q.c | 64 #define GET_BITS(y,x) ((y) & (1 << x)) && (1 << x) macro 655 get_bits = GET_BITS(nbr_flags_temp, 8); in ihevc_intra_pred_luma_ref_substitution_a9q() 663 get_bits = GET_BITS(nbr_flags_temp, frwd_nbr_flag); in ihevc_intra_pred_luma_ref_substitution_a9q() 794 get_bits = GET_BITS(nbr_flags, 16); in ihevc_intra_pred_luma_ref_substitution_a9q() 801 get_bits = GET_BITS(nbr_flags, frwd_nbr_flag); in ihevc_intra_pred_luma_ref_substitution_a9q()
|
D | ihevc_intra_pred_filters_neon_intr.c | 70 #define GET_BITS(y,x) ((y) & (1 << x)) && (1 << x) macro 341 get_bits = GET_BITS(nbr_flags_temp, 8); in ihevc_intra_pred_luma_ref_substitution_neonintr() 349 get_bits = GET_BITS(nbr_flags_temp, frwd_nbr_flag); in ihevc_intra_pred_luma_ref_substitution_neonintr() 401 get_bits = GET_BITS(nbr_flags, 16); in ihevc_intra_pred_luma_ref_substitution_neonintr() 408 get_bits = GET_BITS(nbr_flags, frwd_nbr_flag); in ihevc_intra_pred_luma_ref_substitution_neonintr()
|
/external/libhevc/common/ |
D | ihevc_intra_pred_filters.c | 77 #define GET_BITS(y,x) ((y) & (1 << x)) && (1 << x) macro 457 get_bits = GET_BITS(nbr_flags_temp, 8); in ihevc_intra_pred_luma_ref_substitution() 465 get_bits = GET_BITS(nbr_flags_temp, frwd_nbr_flag); in ihevc_intra_pred_luma_ref_substitution() 597 get_bits = GET_BITS(nbr_flags, 16); in ihevc_intra_pred_luma_ref_substitution() 604 get_bits = GET_BITS(nbr_flags, frwd_nbr_flag); in ihevc_intra_pred_luma_ref_substitution()
|
/external/mesa3d/src/intel/compiler/ |
D | brw_eu_defines.h | 49 #define GET_BITS(data, high, low) ((data & INTEL_MASK((high), (low))) >> (low)) macro
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | brw_defines.h | 46 #define GET_BITS(data, high, low) ((data & INTEL_MASK((high), (low))) >> (low)) macro
|
/external/libhevc/common/x86/ |
D | ihevc_intra_pred_filters_ssse3_intr.c | 78 #define GET_BITS(y,x) ((y) & (1 << x)) && (1 << x) macro 290 get_bits = GET_BITS(nbr_flags_temp, 8); in ihevc_intra_pred_luma_ref_substitution_ssse3() 298 get_bits = GET_BITS(nbr_flags_temp, frwd_nbr_flag); in ihevc_intra_pred_luma_ref_substitution_ssse3() 352 get_bits = GET_BITS(nbr_flags, 16); in ihevc_intra_pred_luma_ref_substitution_ssse3() 359 get_bits = GET_BITS(nbr_flags, frwd_nbr_flag); in ihevc_intra_pred_luma_ref_substitution_ssse3()
|
D | ihevc_intra_pred_filters_sse42_intr.c | 75 #define GET_BITS(y,x) ((y) & (1 << x)) && (1 << x) macro
|