| /xsrc/external/mit/MesaLib/dist/src/util/ |
| driconf.h | 72 #define DRI_CONF_OPT_B(_name, def, _desc) { \ 78 .value = { ._bool = def }, \ 81 #define DRI_CONF_OPT_I(_name, def, min, max, _desc) { \ 88 .value = { ._int = def }, \ 91 #define DRI_CONF_OPT_F(_name, def, min, max, _desc) { \ 98 .value = { ._float = def }, \ 101 #define DRI_CONF_OPT_E(_name, def, min, max, _desc, values) { \ 108 .value = { ._int = def }, \ 112 #define DRI_CONF_OPT_S(_name, def, _desc) { \ 118 .value = { ._string = #def }, \ [all...] |
| /xsrc/external/mit/MesaLib.old/src/util/xmlpool/ |
| options.h | 60 #define DRI_CONF_ALWAYS_FLUSH_BATCH(def) \ 61 DRI_CONF_OPT_BEGIN_B(always_flush_batch, def) \ 65 #define DRI_CONF_ALWAYS_FLUSH_CACHE(def) \ 66 DRI_CONF_OPT_BEGIN_B(always_flush_cache, def) \ 70 #define DRI_CONF_DISABLE_THROTTLING(def) \ 71 DRI_CONF_OPT_BEGIN_B(disable_throttling, def) \ 75 #define DRI_CONF_FORCE_GLSL_EXTENSIONS_WARN(def) \ 76 DRI_CONF_OPT_BEGIN_B(force_glsl_extensions_warn, def) \ 80 #define DRI_CONF_DISABLE_BLEND_FUNC_EXTENDED(def) \ 81 DRI_CONF_OPT_BEGIN_B(disable_blend_func_extended, def) \ [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/util/xmlpool/ |
| t_options.h | 58 #define DRI_CONF_ALWAYS_FLUSH_BATCH(def) \ 59 DRI_CONF_OPT_BEGIN_B(always_flush_batch, def) \ 63 #define DRI_CONF_ALWAYS_FLUSH_CACHE(def) \ 64 DRI_CONF_OPT_BEGIN_B(always_flush_cache, def) \ 68 #define DRI_CONF_DISABLE_THROTTLING(def) \ 69 DRI_CONF_OPT_BEGIN_B(disable_throttling, def) \ 73 #define DRI_CONF_FORCE_GLSL_EXTENSIONS_WARN(def) \ 74 DRI_CONF_OPT_BEGIN_B(force_glsl_extensions_warn, def) \ 78 #define DRI_CONF_DISABLE_BLEND_FUNC_EXTENDED(def) \ 79 DRI_CONF_OPT_BEGIN_B(disable_blend_func_extended, def) \ [all...] |
| /xsrc/external/mit/libXrender/dist/src/ |
| Color.c | 30 XRenderParseColor(Display *dpy, char *spec, XRenderColor *def) 72 def->red = elements[0]; 73 def->green = elements[1]; 74 def->blue = elements[2]; 75 def->alpha = elements[3]; 85 def->red = coreColor.red; 86 def->green = coreColor.green; 87 def->blue = coreColor.blue; 88 def->alpha = 0xffff; 90 def->red = (unsigned short) ((unsigned) (def->red * def->alpha) / 0xffffU) [all...] |
| /xsrc/external/mit/MesaLib/dist/src/amd/compiler/tests/ |
| test_builder.cpp | 37 writeout(0, bld.v_mul_imm(bld.def(v1), inputs[0], 0)); 40 writeout(1, bld.v_mul_imm(bld.def(v1), inputs[0], 1)); 44 writeout(2, bld.v_mul_imm(bld.def(v1), inputs[0], 4)); 48 writeout(3, bld.v_mul_imm(bld.def(v1), inputs[0], 2147483648u)); 56 writeout(4, bld.v_mul_imm(bld.def(v1), inputs[0], 9)); 63 writeout(5, bld.v_mul_imm(bld.def(v1), inputs[0], 7)); 74 writeout(6, bld.v_mul_imm(bld.def(v1), inputs[0], 4 | 64)); 83 writeout(7, bld.v_mul_imm(bld.def(v1), inputs[0], 4 | 64 | 256)); 93 writeout(8, bld.v_mul_imm(bld.def(v1), inputs[0], 4 | 64 | 256 | 2048)); 104 writeout(9, bld.v_mul_imm(bld.def(v1), inputs[0], 2 | 4)) [all...] |
| test_optimizer.cpp | 37 writeout(0, bld.vop2(aco_opcode::v_mul_f32, bld.def(v1), inputs[0], neg_b)); 44 writeout(1, bld.vop2(aco_opcode::v_mul_f32, bld.def(v1), Operand::c32(0x123456u), neg_a)); 49 writeout(2, bld.vop2(aco_opcode::v_mul_f32, bld.def(v1), neg_neg_a, inputs[1])); 54 writeout(3, bld.vop2(aco_opcode::v_mul_f32, bld.def(v1), abs_neg_a, inputs[1])); 60 writeout(4, bld.vop2(aco_opcode::v_mul_f32, bld.def(v1), neg_abs_a, inputs[1])); 64 writeout(5, bld.vop2_dpp(aco_opcode::v_mul_f32, bld.def(v1), neg_a, inputs[1], dpp_row_sl(1))); 68 writeout(6, bld.vop2(aco_opcode::v_add_f32, bld.def(v1), neg_a, inputs[1])); 72 writeout(7, bld.vop2(aco_opcode::v_add_f32, bld.def(v1), inputs[1], neg_a)); 76 Temp neg_c = fneg(bld.copy(bld.def(v1), inputs[2])); 77 writeout(8, bld.vop2(aco_opcode::v_mul_f32, bld.def(v1), inputs[0], neg_c)) [all...] |
| test_optimizer_postRA.cpp | 51 auto vcmp = bld.vopc(aco_opcode::v_cmp_eq_u32, bld.def(bld.lm, vcc), Operand::zero(), 53 auto sand = bld.sop2(Builder::s_and, bld.def(bld.lm, reg_s0), bld.def(s1, scc), bld.vcc(vcmp), Operand(exec, bld.lm)); 54 auto br = bld.branch(aco_opcode::p_cbranch_z, bld.def(s2, reg_s2), bld.scc(sand.def(1).getTemp())); 68 auto vcmp = bld.vopc(aco_opcode::v_cmp_eq_u32, bld.def(bld.lm, vcc), Operand::zero(), 70 auto sand = bld.sop2(Builder::s_and, bld.def(bld.lm, reg_s0), bld.def(s1, scc), bld.vcc(vcmp), Operand(exec, bld.lm)); 71 auto ovrwr = bld.sop1(Builder::s_mov, bld.def(bld.lm, vcc), Operand::zero()); 72 auto br = bld.branch(aco_opcode::p_cbranch_z, bld.def(s2, reg_s2), bld.scc(sand.def(1).getTemp())) [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/util/ |
| xmlpool.h | 76 #define DRI_CONF_OPT_BEGIN(name,type,def) \ 77 "<option name=\""#name"\" type=\""#type"\" default=\""#def"\">\n" 83 #define DRI_CONF_OPT_BEGIN_B(name,def) \ 84 "<option name=\""#name"\" type=\"bool\" default="#def">\n" 87 #define DRI_CONF_OPT_BEGIN_V(name,type,def,valid) \ 88 "<option name=\""#name"\" type=\""#type"\" default=\""#def"\" valid=\""valid"\">\n"
|
| /xsrc/external/mit/libX11/dist/src/ |
| StColor.c | 36 XColor *def) 48 citem->pixel = def->pixel; 49 citem->red = def->red; 50 citem->green = def->green; 51 citem->blue = def->blue; 52 citem->flags = def->flags; /* do_red, do_green, do_blue */
|
| GetHColor.c | 35 XColor *def) 44 req->red = def->red; 45 req->green = def->green; 46 req->blue = def->blue; 50 def->pixel = rep.pixel; 51 def->red = rep.red; 52 def->green = rep.green; 53 def->blue = rep.blue;
|
| QuColor.c | 36 XColor *def) /* RETURN */ 41 unsigned long val = def->pixel; /* needed for macro below */ 53 def->red = color.red; 54 def->blue = color.blue; 55 def->green = color.green; 56 def->flags = DoRed | DoGreen | DoBlue;
|
| ParseCol.c | 41 XColor *def) 81 def->red = r << n; 82 def->green = g << n; 83 def->blue = b << n; 84 def->flags = DoRed | DoGreen | DoBlue; 100 cmsColor.pixel = def->pixel; 101 _XcmsRGB_to_XColor(&cmsColor, def, 1); 133 def->red = reply.exactRed; 134 def->green = reply.exactGreen; 135 def->blue = reply.exactBlue [all...] |
| /xsrc/external/mit/MesaLib.old/dist/scons/ |
| x11.py | 31 def generate(env): 44 def exists(env):
|
| /xsrc/external/mit/libXft/dist/src/ |
| xftstr.c | 26 _XftMatchSymbolic (XftSymbolic *s, int n, const char *name, int def) 34 return def;
|
| /xsrc/external/mit/MesaLib/dist/src/compiler/nir/tests/ |
| algebraic_parser_test.py | 43 def common(self, pattern, message): 49 def test_wrong_src_count(self): 53 def test_var_bitsize(self): 58 def test_var_bitsize_2(self): 63 def test_search_src_bitsize(self): 68 def test_replace_src_bitsize(self): 74 def test_search_src_bitsize_fixed(self): 79 def test_replace_src_bitsize_fixed(self): 84 def test_search_dst_bitsize(self): 89 def test_replace_dst_bitsize(self) [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/compiler/nir/tests/ |
| algebraic_parser_test.py | 43 def common(self, pattern, message): 49 def test_wrong_src_count(self): 53 def test_var_bitsize(self): 58 def test_var_bitsize_2(self): 63 def test_search_src_bitsize(self): 68 def test_replace_src_bitsize(self): 74 def test_search_src_bitsize_fixed(self): 79 def test_replace_src_bitsize_fixed(self): 84 def test_search_dst_bitsize(self): 89 def test_replace_dst_bitsize(self) [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/tools/trace/ |
| model.py | 47 def visit(self, visitor): 50 def __str__(self): 60 def __init__(self, value): 63 def visit(self, visitor): 69 def __init__(self, value): 73 def getValue(self): 79 def visit(self, visitor): 85 def __init__(self, name): 88 def visit(self, visitor): 94 def __init__(self, elements) [all...] |
| /xsrc/external/mit/xkeyboard-config/dist/tests/ruby/ |
| utils.rb | 17 def []=(key, value) 33 def full_length() 39 def cardinality(key1, key2) 52 def filter(limit)
|
| /xsrc/external/mit/MesaLib/dist/src/compiler/nir/ |
| nir_repair_ssa.c | 68 repair_ssa_def(nir_ssa_def *def, void *void_state) 73 nir_foreach_use(src, def) { 75 !nir_block_dominates(def->parent_instr->block, get_src_block(src))) { 81 nir_foreach_if_use(src, def) { 85 !nir_block_dominates(def->parent_instr->block, block_before_if)) { 96 BITSET_SET(state->def_set, def->parent_instr->block->index); 99 nir_phi_builder_add_value(pb, def->num_components, def->bit_size, 102 nir_phi_builder_value_set_block_def(val, def->parent_instr->block, def); [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/compiler/spirv/ |
| vtn_amd.c | 40 val->ssa->def = nir_cube_face_index(&b->nb, vtn_ssa_value(b, w[5])->def); 43 val->ssa->def = nir_cube_face_coord(&b->nb, vtn_ssa_value(b, w[5])->def); 50 val->ssa->def = nir_pack_64_2x32(&b->nb, &intrin->dest.ssa); 73 src[i] = vtn_ssa_value(b, w[i + 5])->def; 77 val->ssa->def = nir_fmin3(nb, src[0], src[1], src[2]); 80 val->ssa->def = nir_umin3(nb, src[0], src[1], src[2]); 83 val->ssa->def = nir_imin3(nb, src[0], src[1], src[2]); 86 val->ssa->def = nir_fmax3(nb, src[0], src[1], src[2]) [all...] |
| /xsrc/external/mit/freetype/dist/builds/windows/ |
| w32-bcc.mk | 17 EXPORTS_LIST = $(OBJ_DIR)/freetype.def 18 EXPORTS_OPTIONS = /DEF:$(EXPORTS_LIST) 21 include $(TOP_DIR)/builds/windows/win32-def.mk
|
| w32-gcc.mk | 17 EXPORTS_LIST = $(OBJ_DIR)/freetype.def 22 include $(TOP_DIR)/builds/windows/win32-def.mk
|
| w32-icc.mk | 17 EXPORTS_LIST = $(OBJ_DIR)/freetype.def 18 EXPORTS_OPTIONS = /DEF:$(EXPORTS_LIST) 21 include $(TOP_DIR)/builds/windows/win32-def.mk
|
| w32-intl.mk | 17 EXPORTS_LIST = $(OBJ_DIR)/freetype.def 18 EXPORTS_OPTIONS = /DEF:$(EXPORTS_LIST) 21 include $(TOP_DIR)/builds/windows/win32-def.mk
|
| w32-mingw32.mk | 17 EXPORTS_LIST = $(OBJ_DIR)/freetype.def 22 include $(TOP_DIR)/builds/windows/win32-def.mk
|