/external/mesa3d/src/intel/compiler/ |
D | brw_eu.h | 306 return GET_BITS(desc, 28, 25); in brw_message_desc_mlen() 308 return GET_BITS(desc, 23, 20); in brw_message_desc_mlen() 315 return GET_BITS(desc, 24, 20); in brw_message_desc_rlen() 317 return GET_BITS(desc, 19, 16); in brw_message_desc_rlen() 325 return GET_BITS(desc, 19, 19); in brw_message_desc_header_present() 339 return GET_BITS(ex_desc, 9, 6); in brw_message_ex_desc_ex_mlen() 369 return GET_BITS(desc, 3, 0); in brw_urb_desc_msg_type() 403 return GET_BITS(desc, 7, 0); in brw_sampler_desc_binding_table_index() 409 return GET_BITS(desc, 11, 8); in brw_sampler_desc_sampler() 416 return GET_BITS(desc, 16, 12); in brw_sampler_desc_msg_type() [all …]
|
D | brw_inst.h | 647 brw_inst_set_bits(inst, 123, 122, GET_BITS(value, 31, 30)); in brw_inst_set_send_desc() 648 brw_inst_set_bits(inst, 71, 67, GET_BITS(value, 29, 25)); in brw_inst_set_send_desc() 649 brw_inst_set_bits(inst, 55, 51, GET_BITS(value, 24, 20)); in brw_inst_set_send_desc() 650 brw_inst_set_bits(inst, 121, 113, GET_BITS(value, 19, 11)); in brw_inst_set_send_desc() 651 brw_inst_set_bits(inst, 91, 81, GET_BITS(value, 10, 0)); in brw_inst_set_send_desc() 701 brw_inst_set_bits(inst, 127, 124, GET_BITS(value, 31, 28)); in brw_inst_set_send_ex_desc() 702 brw_inst_set_bits(inst, 97, 96, GET_BITS(value, 27, 26)); in brw_inst_set_send_ex_desc() 703 brw_inst_set_bits(inst, 65, 64, GET_BITS(value, 25, 24)); in brw_inst_set_send_ex_desc() 704 brw_inst_set_bits(inst, 47, 35, GET_BITS(value, 23, 11)); in brw_inst_set_send_ex_desc() 705 brw_inst_set_bits(inst, 103, 99, GET_BITS(value, 10, 6)); in brw_inst_set_send_ex_desc() [all …]
|
D | brw_eu_defines.h | 58 #define GET_BITS(data, high, low) ((data & INTEL_MASK((high), (low))) >> (low)) macro
|
/external/libjpeg-turbo/ |
D | jdphuff.c | 330 r = GET_BITS(s); in decode_mcu_DC_first() 408 r = GET_BITS(s); in decode_mcu_AC_first() 419 r = GET_BITS(r); in decode_mcu_AC_first() 479 if (GET_BITS(1)) in decode_mcu_DC_refine() 554 if (GET_BITS(1)) in decode_mcu_AC_refine() 563 r = GET_BITS(r); in decode_mcu_AC_refine() 578 if (GET_BITS(1)) { in decode_mcu_AC_refine() 612 if (GET_BITS(1)) { in decode_mcu_AC_refine()
|
D | jdhuff.c | 445 code = GET_BITS(l); in jpeg_huff_decode() 453 code |= GET_BITS(1); in jpeg_huff_decode() 574 r = GET_BITS(s); in decode_mcu_slow() 610 r = GET_BITS(s); in decode_mcu_slow() 678 r = GET_BITS(s); in decode_mcu_fast() 700 r = GET_BITS(s); in decode_mcu_fast()
|
D | jdhuff.h | 165 #define GET_BITS(nbits) \ macro 234 s |= GET_BITS(1); \
|
/external/arm-trusted-firmware/plat/brcm/board/stingray/src/ |
D | bl2_setup.c | 51 #define GET_BITS(first, last, data) \ macro 255 avs_bits = GET_BITS(SWREG_OTP_BITS_START, in read_avs_otp_bits() 260 if (GET_BITS(SWREG_VALID_BIT_START, SWREG_VALID_BIT_END, avs_bits) != in read_avs_otp_bits() 267 vddc_step = GET_BITS(SWREG_VDDC_FIELD_START, in read_avs_otp_bits() 271 ihost_step = GET_BITS(SWREG_IHOST_FIELD_START, in read_avs_otp_bits()
|
/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/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/mesa3d/docs/relnotes/ |
D | 19.0.0.rst | 1405 - intel/eu: Use GET_BITS in brw_inst_set_send_ex_desc
|