/external/valgrind/none/tests/x86/ |
D | bug152818-x86.c | 33 #define GET_BIT(var, bit_no) ((var >> bit_no) & 1) macro 40 sz_eflags[0] = GET_BIT(_8bits_eflags, 7) ? 'S' : ' '; in pp_eflags() 41 sz_eflags[1] = GET_BIT(_8bits_eflags, 6) ? 'Z' : ' '; in pp_eflags() 42 sz_eflags[3] = GET_BIT(_8bits_eflags, 4) ? 'A' : ' '; in pp_eflags() 43 sz_eflags[5] = GET_BIT(_8bits_eflags, 2) ? 'P' : ' '; in pp_eflags() 44 sz_eflags[7] = GET_BIT(_8bits_eflags, 0) ? 'C' : ' '; in pp_eflags()
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | brw_wm_debug.c | 103 GET_BIT(inst->writemask, 0) ? "x" : "", in brw_wm_print_insn() 104 GET_BIT(inst->writemask, 1) ? "y" : "", in brw_wm_print_insn() 105 GET_BIT(inst->writemask, 2) ? "z" : "", in brw_wm_print_insn() 106 GET_BIT(inst->writemask, 3) ? "w" : ""); in brw_wm_print_insn()
|
/external/mesa3d/src/gallium/drivers/r300/compiler/ |
D | radeon_compiler_util.c | 122 ret |= GET_BIT(mask, swz) << chan; in swizzle_mask() 172 if (!GET_BIT(old_mask, i) in rewrite_writemask() 298 tmp.Negate |= GET_BIT(srcreg.Negate, swz) << i; in lmul_swizzle() 689 if (!GET_BIT(old_mask, old_idx)) in rc_make_conversion_swizzle() 692 if (GET_BIT(new_mask, new_idx)) { in rc_make_conversion_swizzle() 730 if(GET_BIT(negate, chan)){ in rc_get_constant_value()
|
D | radeon_dataflow_swizzles.c | 63 if (!GET_BIT(split.Phase[phase], chan)) in rewrite_source() 86 GET_BIT(usemask, chan) ? chan : RC_SWIZZLE_UNUSED); in rewrite_source()
|
D | radeon_pair_translate.c | 286 pair->Alpha.DepthWriteMask |= GET_BIT(inst->DstReg.WriteMask, 3); in set_pair_instruction() 295 GET_BIT(inst->DstReg.WriteMask, 3); in set_pair_instruction() 307 pair->Alpha.WriteMask |= (GET_BIT(inst->DstReg.WriteMask, 3) << 3); in set_pair_instruction()
|
D | radeon_program_constants.h | 121 #define GET_BIT(msk, idx) (((msk) >> (idx)) & 0x1) macro
|
D | radeon_dataflow_deadcode.c | 190 if (GET_BIT(newsrcmask, chan)) in update_instruction() 352 if (!GET_BIT(srcmasks[src], chan)) in rc_dataflow_deadcode()
|
D | r500_fragprog.c | 252 if (swz == RC_SWIZZLE_UNUSED || !GET_BIT(usemask, i)) in r500_swizzle_split() 254 negatebase[GET_BIT(src.Negate, i)] |= 1 << i; in r500_swizzle_split()
|
D | r300_fragprog_swizzle.c | 165 if (!GET_BIT(mask, comp)) in r300_swizzle_split()
|
D | radeon_optimize.c | 197 *pnegate = GET_BIT(src.Negate, chan); in is_src_uniform_constant() 200 if (swz != *pswz || *pnegate != GET_BIT(src.Negate, chan)) { in is_src_uniform_constant()
|
D | radeon_program_print.c | 191 if (GET_BIT(negate, comp)) in rc_print_swizzle()
|
D | radeon_dataflow.c | 308 if (GET_BIT(mask, chan)) in mask_to_chan_cb()
|
/external/libhevc/common/arm/ |
D | ihevc_intra_ref_substitution_a9q.c | 63 #define GET_BIT(y,x) ((y) & (1 << x)) && (1 << x) macro 304 get_bits = GET_BIT(nbr_flags_temp, 8); in ihevc_intra_pred_chroma_ref_substitution_a9q() 315 get_bits = GET_BIT(nbr_flags_temp, frwd_nbr_flag); in ihevc_intra_pred_chroma_ref_substitution_a9q() 371 get_bits = GET_BIT(nbr_flags, 16); in ihevc_intra_pred_chroma_ref_substitution_a9q() 381 get_bits = GET_BIT(nbr_flags, frwd_nbr_flag); in ihevc_intra_pred_chroma_ref_substitution_a9q()
|
/external/bzip2/ |
D | decompress.c | 70 #define GET_BIT(lll,uuu) \ macro 95 GET_BIT(label2, zj); \ 268 GET_BIT(BZ_X_MAPPING_1, uc); in BZ2_decompress() 279 GET_BIT(BZ_X_MAPPING_2, uc); in BZ2_decompress() 294 GET_BIT(BZ_X_SELECTOR_3, uc); in BZ2_decompress() 322 GET_BIT(BZ_X_CODING_2, uc); in BZ2_decompress() 324 GET_BIT(BZ_X_CODING_3, uc); in BZ2_decompress()
|
/external/libhevc/common/ |
D | ihevc_chroma_intra_pred_filters.c | 88 #define GET_BIT(y,x) ((y) & (1 << x)) && (1 << x) macro 335 get_bits = GET_BIT(nbr_flags_temp, 8); in ihevc_intra_pred_chroma_ref_substitution() 346 get_bits = GET_BIT(nbr_flags_temp, frwd_nbr_flag); in ihevc_intra_pred_chroma_ref_substitution() 402 get_bits = GET_BIT(nbr_flags, 16); in ihevc_intra_pred_chroma_ref_substitution() 412 get_bits = GET_BIT(nbr_flags, frwd_nbr_flag); in ihevc_intra_pred_chroma_ref_substitution()
|
/external/libavc/common/ |
D | ih264_macros.h | 105 #define GET_BIT(x, pos) ((x) >> (pos)) & 0x1 macro
|
/external/mesa3d/src/mesa/program/ |
D | prog_instruction.h | 61 #define GET_BIT(msk, idx) (((msk) >> (idx)) & 0x1) macro
|
/external/mesa3d/src/mesa/drivers/dri/i915/ |
D | i915_fragprog.c | 194 GET_BIT(source->Negate, 0), in src_vector() 195 GET_BIT(source->Negate, 1), in src_vector() 196 GET_BIT(source->Negate, 2), in src_vector() 197 GET_BIT(source->Negate, 3)); in src_vector()
|
/external/lzma/C/ |
D | LzmaDec.c | 25 #define GET_BIT(p, i) GET_BIT2(p, i, ; , ;) macro 27 #define TREE_GET_BIT(probs, i) { GET_BIT((probs + i), i); } 174 do { GET_BIT(prob + symbol, symbol) } while (symbol < 0x100); in LzmaDec_DecodeReal()
|
/external/libhevc/common/x86/ |
D | ihevc_chroma_intra_pred_filters_sse42_intr.c | 75 #define GET_BIT(y,x) ((y) & (1 << x)) && (1 << x) macro
|
/external/valgrind/VEX/switchback/ |
D | test_bzip2.c | 1403 #define GET_BIT(lll,uuu) \ macro 1428 GET_BIT(label2, zj); \ 1616 GET_BIT(BZ_X_MAPPING_1, uc); in BZ2_decompress() 1627 GET_BIT(BZ_X_MAPPING_2, uc); in BZ2_decompress() 1642 GET_BIT(BZ_X_SELECTOR_3, uc); in BZ2_decompress() 1670 GET_BIT(BZ_X_CODING_2, uc); in BZ2_decompress() 1672 GET_BIT(BZ_X_CODING_3, uc); in BZ2_decompress()
|
/external/valgrind/exp-sgcheck/tests/ |
D | hackedbz2.c | 1429 #define GET_BIT(lll,uuu) \ macro 1454 GET_BIT(label2, zj); \ 1642 GET_BIT(BZ_X_MAPPING_1, uc); in BZ2_decompress() 1653 GET_BIT(BZ_X_MAPPING_2, uc); in BZ2_decompress() 1668 GET_BIT(BZ_X_SELECTOR_3, uc); in BZ2_decompress() 1696 GET_BIT(BZ_X_CODING_2, uc); in BZ2_decompress() 1698 GET_BIT(BZ_X_CODING_3, uc); in BZ2_decompress()
|
/external/valgrind/memcheck/tests/ |
D | origin5-bz2.c | 1420 #define GET_BIT(lll,uuu) \ macro 1445 GET_BIT(label2, zj); \ 1633 GET_BIT(BZ_X_MAPPING_1, uc); in BZ2_decompress() 1644 GET_BIT(BZ_X_MAPPING_2, uc); in BZ2_decompress() 1659 GET_BIT(BZ_X_SELECTOR_3, uc); in BZ2_decompress() 1687 GET_BIT(BZ_X_CODING_2, uc); in BZ2_decompress() 1689 GET_BIT(BZ_X_CODING_3, uc); in BZ2_decompress()
|
D | varinfo6.c | 1458 #define GET_BIT(lll,uuu) \ macro 1483 GET_BIT(label2, zj); \ 1671 GET_BIT(BZ_X_MAPPING_1, uc); in BZ2_decompress() 1682 GET_BIT(BZ_X_MAPPING_2, uc); in BZ2_decompress() 1697 GET_BIT(BZ_X_SELECTOR_3, uc); in BZ2_decompress() 1726 GET_BIT(BZ_X_CODING_2, uc); in BZ2_decompress() 1728 GET_BIT(BZ_X_CODING_3, uc); in BZ2_decompress()
|
/external/valgrind/perf/ |
D | bz2.c | 1418 #define GET_BIT(lll,uuu) \ macro 1443 GET_BIT(label2, zj); \ 1631 GET_BIT(BZ_X_MAPPING_1, uc); in BZ2_decompress() 1642 GET_BIT(BZ_X_MAPPING_2, uc); in BZ2_decompress() 1657 GET_BIT(BZ_X_SELECTOR_3, uc); in BZ2_decompress() 1685 GET_BIT(BZ_X_CODING_2, uc); in BZ2_decompress() 1687 GET_BIT(BZ_X_CODING_3, uc); in BZ2_decompress()
|