Home
last modified time | relevance | path

Searched refs:GET_BIT (Results 1 – 25 of 26) sorted by relevance

12

/external/valgrind/none/tests/x86/
Dbug152818-x86.c33 #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/
Dbrw_wm_debug.c103 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/
Dradeon_compiler_util.c122 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()
Dradeon_dataflow_swizzles.c63 if (!GET_BIT(split.Phase[phase], chan)) in rewrite_source()
86 GET_BIT(usemask, chan) ? chan : RC_SWIZZLE_UNUSED); in rewrite_source()
Dradeon_pair_translate.c286 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()
Dradeon_program_constants.h121 #define GET_BIT(msk, idx) (((msk) >> (idx)) & 0x1) macro
Dradeon_dataflow_deadcode.c190 if (GET_BIT(newsrcmask, chan)) in update_instruction()
352 if (!GET_BIT(srcmasks[src], chan)) in rc_dataflow_deadcode()
Dr500_fragprog.c252 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()
Dr300_fragprog_swizzle.c165 if (!GET_BIT(mask, comp)) in r300_swizzle_split()
Dradeon_optimize.c197 *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()
Dradeon_program_print.c191 if (GET_BIT(negate, comp)) in rc_print_swizzle()
Dradeon_dataflow.c308 if (GET_BIT(mask, chan)) in mask_to_chan_cb()
/external/libhevc/common/arm/
Dihevc_intra_ref_substitution_a9q.c63 #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/
Ddecompress.c70 #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/
Dihevc_chroma_intra_pred_filters.c88 #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/
Dih264_macros.h105 #define GET_BIT(x, pos) ((x) >> (pos)) & 0x1 macro
/external/mesa3d/src/mesa/program/
Dprog_instruction.h61 #define GET_BIT(msk, idx) (((msk) >> (idx)) & 0x1) macro
/external/mesa3d/src/mesa/drivers/dri/i915/
Di915_fragprog.c194 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/
DLzmaDec.c25 #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/
Dihevc_chroma_intra_pred_filters_sse42_intr.c75 #define GET_BIT(y,x) ((y) & (1 << x)) && (1 << x) macro
/external/valgrind/VEX/switchback/
Dtest_bzip2.c1403 #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/
Dhackedbz2.c1429 #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/
Dorigin5-bz2.c1420 #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()
Dvarinfo6.c1458 #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/
Dbz2.c1418 #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()

12