Home
last modified time | relevance | path

Searched refs:def (Results 151 - 175 of 896) sorted by relevance

12345678910>>...36

/third_party/mesa3d/src/nouveau/codegen/
H A Dnv50_ir_emit_gm107.cpp71 inline void emitGPR(int pos, const ValueDef &def) { in emitGPR() argument
72 emitGPR(pos, def.get() ? def.rep() : (const Value *)NULL); in emitGPR()
85 inline void emitPRED(int pos, const ValueDef &def) { in emitPRED() argument
86 emitPRED(pos, def.get() ? def.rep() : (const Value *)NULL); in emitPRED()
718 emitPRED(0x03, insn->def(0)); in emitPSETP()
732 if (insn->def(0).getFile() == FILE_PREDICATE) { in emitMOV()
758 if (insn->def(0).getFile() != FILE_PREDICATE && in emitMOV()
767 if (insn->def( in emitMOV()
[all...]
H A Dnv50_ir_emit_gv100.h244 inline void emitBTS(int pos, const ValueDef &def) { in emitBTS() argument
245 emitBTS(pos, def.get() ? def.rep() : (const Value *)NULL); in emitBTS()
269 inline void emitGPR(int pos, const ValueDef &def) { in emitGPR() argument
270 emitGPR(pos, def.get() ? def.rep() : (const Value *)NULL); in emitGPR()
273 inline void emitGPR(int pos, const ValueDef &def, int off) { in emitGPR() argument
274 emitGPR(pos, def.get() ? def.rep() : (const Value *)NULL, off); in emitGPR()
289 inline void emitPRED(int pos, const ValueDef &def) { in emitPRED() argument
[all...]
/third_party/skia/third_party/externals/spirv-tools/source/reduce/
H A Doperand_to_const_reduction_opportunity_finder.cpp48 auto def = context->get_def_use_mgr()->GetDef(id); in GetAvailableOpportunities() local
49 if (spvOpcodeIsConstant(def->opcode())) { in GetAvailableOpportunities()
53 if (def->opcode() == SpvOpFunction) { in GetAvailableOpportunities()
59 auto type_id = def->type_id(); in GetAvailableOpportunities()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/reduce/
H A Doperand_to_const_reduction_opportunity_finder.cpp48 auto def = context->get_def_use_mgr()->GetDef(id); in GetAvailableOpportunities() local
49 if (spvOpcodeIsConstant(def->opcode())) { in GetAvailableOpportunities()
53 if (def->opcode() == SpvOpFunction) { in GetAvailableOpportunities()
59 auto type_id = def->type_id(); in GetAvailableOpportunities()
/third_party/spirv-tools/source/reduce/
H A Doperand_to_const_reduction_opportunity_finder.cpp48 auto def = context->get_def_use_mgr()->GetDef(id); in GetAvailableOpportunities() local
49 if (spvOpcodeIsConstant(def->opcode())) { in GetAvailableOpportunities()
53 if (def->opcode() == spv::Op::OpFunction) { in GetAvailableOpportunities()
59 auto type_id = def->type_id(); in GetAvailableOpportunities()
/third_party/mesa3d/src/compiler/nir/
H A Dnir_loop_analyze.c37 nir_alu_instr *alu; /* The def of the alu-operation */
48 nir_ssa_def *def; member
90 var->def = value; in get_loop_var()
113 init_loop_def(nir_ssa_def *def, void *void_init_loop_state) in init_loop_def() argument
116 nir_loop_variable *var = get_loop_var(def, loop_init_state->state); in init_loop_def()
229 return var->def->parent_instr->type == nir_instr_type_alu; in is_var_alu()
235 return var->def->parent_instr->type == nir_instr_type_phi; in is_var_phi()
239 mark_invariant(nir_ssa_def *def, loop_info_state *state) in mark_invariant() argument
241 nir_loop_variable *var = get_loop_var(def, state); in mark_invariant()
255 nir_alu_instr *alu = nir_instr_as_alu(def in mark_invariant()
[all...]
H A Dnir_opt_copy_prop_vars.c67 nir_ssa_def *def[NIR_MAX_VEC_COMPONENTS]; member
75 value_set_ssa_components(struct value *value, nir_ssa_def *def, in value_set_ssa_components() argument
82 value->ssa.def[i] = def; in value_set_ssa_components()
115 (value->ssa.def[i] != intrin->src[1].ssa || in value_equals_store_src()
476 value->ssa.def[base_index + i] = from->ssa.def[i]; in value_set_from_value()
499 if (!entry->src.ssa.def[index]) in load_element_from_ssa_entry_value()
506 entry->src.ssa.def[index]->num_components); in load_element_from_ssa_entry_value()
507 nir_ssa_def *def in load_element_from_ssa_entry_value() local
[all...]
H A Dnir_move_vec_src_uses_to_dest.c49 /* Returns true if the given SSA def dominates the instruction. An SSA def is
53 ssa_def_dominates_instr(nir_ssa_def *def, nir_instr *instr) in ssa_def_dominates_instr() argument
55 if (instr->index <= def->parent_instr->index) { in ssa_def_dominates_instr()
57 } else if (def->parent_instr->block == instr->block) { in ssa_def_dominates_instr()
58 return def->parent_instr->index < instr->index; in ssa_def_dominates_instr()
60 return nir_block_dominates(def->parent_instr->block, instr->block); in ssa_def_dominates_instr()
H A Dnir_opt_undef.c54 /* We can't just use nir_alu_src_copy, because we need the def/use in opt_undef_csel()
99 nir_get_undef_mask(nir_ssa_def *def) in nir_get_undef_mask() argument
101 nir_instr *instr = def->parent_instr; in nir_get_undef_mask()
104 return BITSET_MASK(def->num_components); in nir_get_undef_mask()
153 nir_ssa_def *def = intrin->src[arg_index].ssa; in opt_undef_store()
156 unsigned undef_mask = nir_get_undef_mask(def); in opt_undef_store()
/third_party/node/deps/v8/src/flags/
H A Dflag-definitions.h33 #define FLAG_FULL(ftype, ctype, nam, def, cmt) \
35 #define FLAG_READONLY(ftype, ctype, nam, def, cmt) \
36 static constexpr ctype FLAG_##nam = def;
42 #define FLAG_FULL(ftype, ctype, nam, def, cmt) \
45 #define FLAG_FULL(ftype, ctype, nam, def, cmt) \
46 V8_EXPORT_PRIVATE ctype FLAG_##nam = def;
53 #define FLAG_FULL(ftype, ctype, nam, def, cmt) \
54 static constexpr ctype FLAGDEFAULT_##nam = def;
59 #define FLAG_FULL(ftype, ctype, nam, def, cmt) \
95 #define FLAG_FULL(ftype, ctype, nam, def, cm
[all...]
/third_party/protobuf/ruby/compatibility_tests/v3.0.0/tests/
H A Dbasic.rb120 def test_defaults
135 def test_setters
160 def test_ctor_args
174 def test_inspect
183 def test_hash
193 def test_unknown_field_errors
205 def test_initialization_map_errors
222 def test_type_errors
275 def test_string_encoding
304 def test_rptfield_int3
[all...]
/third_party/ltp/tools/sparse/sparse-src/validation/optim/
H A Dinline-return.c1 static inline int def(void) in def() function
8 return def(); in foo()
13 return def(); in bar()
/third_party/mesa3d/src/compiler/nir/tests/
H A Ddce_tests.cpp50 nir_ssa_def *def) in create_one_source_phi()
53 nir_phi_instr_add_src(phi, pred, nir_src_for_ssa(def)); in create_one_source_phi()
55 def->num_components, def->bit_size, NULL); in create_one_source_phi()
49 create_one_source_phi(nir_shader *shader, nir_block *pred, nir_ssa_def *def) create_one_source_phi() argument
/third_party/node/deps/v8/tools/
H A Dobjdump-v836 def get_address_bounds():
47 def format_line(line):
52 def is_comment(line):
56 def main():
/third_party/ltp/tools/sparse/sparse-src/
H A Dir.c49 src = phi->def; in check_phi_node()
64 struct instruction *def; in check_user() local
74 def = pseudo->def; in check_user()
75 if (def && def->bb) in check_user()
/third_party/cJSON/tests/unity/auto/
H A Dgenerate_module.rb47 def initialize(options = nil)
97 def self.default_options
113 def self.grab_config(config_file)
125 def files_to_operate_on(module_name, pattern = nil)
168 def create_filename(part1, part2 = '')
189 def generate(module_name, pattern = nil)
229 def destroy(module_name, pattern = nil)
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
H A DIntlTestDateFormatAPI.java85 DateFormat def = DateFormat.getInstance(); in TestAPI()
130 result1 = def.parseObject(text, pos); in TestAPI()
137 result2 = def.parse(text); in TestAPI()
144 result3 = def.parse(text, pos01); in TestAPI()
193 final Calendar cal = def.getCalendar(); in TestAPI()
201 final NumberFormat nf = def.getNumberFormat(); in TestAPI()
209 final TimeZone tz = def.getTimeZone(); in TestAPI()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/
H A DIntlTestDateFormatAPI.java88 DateFormat def = DateFormat.getInstance(); in TestAPI()
133 result1 = def.parseObject(text, pos); in TestAPI()
140 result2 = def.parse(text); in TestAPI()
147 result3 = def.parse(text, pos01); in TestAPI()
196 final Calendar cal = def.getCalendar(); in TestAPI()
204 final NumberFormat nf = def.getNumberFormat(); in TestAPI()
212 final TimeZone tz = def.getTimeZone(); in TestAPI()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/
H A DPassSupport.h149 #define INITIALIZE_AG_PASS(passName, agName, arg, name, cfg, analysis, def) \
151 if (!def) \
159 Registry.registerAnalysisGroup(&agName::ID, &passName::ID, *AI, def, \
169 #define INITIALIZE_AG_PASS_BEGIN(passName, agName, arg, n, cfg, analysis, def) \
171 if (!def) \
174 #define INITIALIZE_AG_PASS_END(passName, agName, arg, n, cfg, analysis, def) \
181 Registry.registerAnalysisGroup(&agName::ID, &passName::ID, *AI, def, true); \
/third_party/typescript/tests/baselines/reference/
H A DtemplateStringInConditional.js2 var x = `abc${ " " }def` ? `abc${ " " }def` : `abc${ " " }def`;
5 var x = "abc".concat(" ", "def") ? "abc".concat(" ", "def") : "abc".concat(" ", "def");
/third_party/mesa3d/src/amd/compiler/
H A Daco_lower_phis.cpp157 bld.sop2(Builder::s_and, dst, bld.def(s1, scc), cur, Operand(exec, bld.lm)); in build_merge_code()
160 bld.sop2(Builder::s_orn2, dst, bld.def(s1, scc), cur, Operand(exec, bld.lm)); in build_merge_code()
175 bld.sop2(Builder::s_and, bld.def(bld.lm), bld.def(s1, scc), cur, Operand(exec, bld.lm)); in build_merge_code()
177 bld.sop2(Builder::s_or, dst, bld.def(s1, scc), prev, cur); in build_merge_code()
183 bld.sop2(Builder::s_or, dst, bld.def(s1, scc), prev, Operand(exec, bld.lm)); in build_merge_code()
185 bld.sop2(Builder::s_andn2, dst, bld.def(s1, scc), prev, Operand(exec, bld.lm)); in build_merge_code()
189 bld.sop2(Builder::s_andn2, bld.def(bld.lm), bld.def(s1, scc), prev, Operand(exec, bld.lm)); in build_merge_code()
190 cur = bld.sop2(Builder::s_and, bld.def(bl in build_merge_code()
[all...]
H A Daco_reindex_ssa.cpp40 for (Definition& def : instr->definitions) { in reindex_defs()
41 if (!def.isTemp()) in reindex_defs()
44 RegClass rc = def.regClass(); in reindex_defs()
45 ctx.renames[def.tempId()] = new_id; in reindex_defs()
47 def.setTemp(Temp(new_id, rc)); in reindex_defs()
/third_party/python/Python/
H A Dcontext.c58 contextvar_new(PyObject *name, PyObject *def);
183 PyContextVar_New(const char *name, PyObject *def) in PyContextVar_New() argument
189 PyContextVar *var = contextvar_new(pyname, def); in PyContextVar_New()
196 PyContextVar_Get(PyObject *ovar, PyObject *def, PyObject **val) in PyContextVar_Get() argument
234 if (def == NULL) { in PyContextVar_Get()
244 *val = def; in PyContextVar_Get()
815 contextvar_new(PyObject *name, PyObject *def) in contextvar_new() argument
837 Py_XINCREF(def); in contextvar_new()
838 var->var_default = def; in contextvar_new()
845 (def ! in contextvar_new()
864 PyObject *def = NULL; contextvar_tp_new() local
936 PyObject *def = PyObject_Repr(self->var_default); contextvar_tp_repr() local
[all...]
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/translit/
H A Dvarsub.bat55 my ($var, $def) = ($1, $2);
57 if ($def !~ /^\[/) {
61 $VAR{$var} = $def;
69 my $def = $VAR{$var};
70 s/\$$var\b/$def/g;
/third_party/unity/auto/
H A Dunity_test_summary.rb20 def initialize(_opts = {})
27 def run
73 def usage(err_msg = nil)
86 def get_details(_result_file, lines)
104 def parse_test_summary(summary)

Completed in 14 milliseconds

12345678910>>...36