Home
last modified time | relevance | path

Searched refs:input_types (Results 1 – 25 of 75) sorted by relevance

123

/third_party/node/deps/v8/src/torque/
Dcfg.h27 base::Optional<Stack<const Type*>> input_types, in Block() argument
30 input_types_(std::move(input_types)), in Block()
40 void SetInputTypes(const Stack<const Type*>& input_types);
98 explicit ControlFlowGraph(Stack<const Type*> input_types) { in ControlFlowGraph() argument
99 start_ = NewBlock(std::move(input_types), false); in ControlFlowGraph()
103 Block* NewBlock(base::Optional<Stack<const Type*>> input_types, in NewBlock() argument
105 blocks_.emplace_back(this, next_block_id_++, std::move(input_types), in NewBlock()
150 explicit CfgAssembler(Stack<const Type*> input_types) in CfgAssembler() argument
151 : current_stack_(std::move(input_types)), cfg_(current_stack_) {} in CfgAssembler()
164 base::Optional<Stack<const Type*>> input_types = base::nullopt,
[all …]
Dcfg.cc13 void Block::SetInputTypes(const Stack<const Type*>& input_types) { in SetInputTypes() argument
15 input_types_ = input_types; in SetInputTypes()
17 } else if (*input_types_ == input_types) { in SetInputTypes()
21 DCHECK_EQ(input_types.Size(), input_types_->Size()); in SetInputTypes()
24 auto c2_iterator = input_types.begin(); in SetInputTypes()
42 for (intptr_t i = std::max(input_types_->Size(), input_types.Size()) - 1; in SetInputTypes()
46 if (static_cast<size_t>(i) < input_types.Size()) { in SetInputTypes()
47 left = input_types.Peek(BottomOffset{static_cast<size_t>(i)}); in SetInputTypes()
/third_party/vixl/tools/test_generator/
Dparser.py54 def __init__(self, operand_types, operand_variants, input_types, argument
58 self.input_types = input_types
77 type_name = self.input_types[identifier]
151 input_types = {
160 return DataTypeBuilder(operand_types, operand_variants, input_types, input_values)
Dgenerator.py252 def GenerateInputs(self, input_types): argument
274 for input_type in input_types
277 args=", ".join(input_types.GetNames()),
/third_party/mesa3d/src/compiler/nir/
Dnir_search_helpers.h45 nir_alu_type type = nir_op_infos[instr->op].input_types[src]; in is_pos_power_of_two()
79 nir_alu_type type = nir_op_infos[instr->op].input_types[src]; in is_neg_power_of_two()
151 nir_alu_type type = nir_op_infos[instr->op].input_types[src]; in is_zero_to_one()
183 nir_alu_type type = nir_op_infos[instr->op].input_types[src]; in is_gt_0_and_lt_1()
208 nir_alu_type type = nir_op_infos[instr->op].input_types[src]; in is_not_const_zero()
400 nir_alu_type type = nir_op_infos[user_alu->op].input_types[index]; in is_only_used_as_float()
Dnir_opcodes.py36 input_types, is_conversion, algebraic_properties, const_expr): argument
72 assert isinstance(input_types, list)
73 assert isinstance(input_types[0], str)
77 assert len(input_sizes) == len(input_types)
88 self.input_types = input_types
154 def opcode(name, output_size, output_type, input_sizes, input_types, argument
158 input_types, is_conversion, algebraic_properties,
Dnir_instr_set.c436 if (nir_alu_type_get_base_type(nir_op_infos[alu1->op].input_types[src1]) == nir_type_float) { in nir_alu_srcs_negative_equal()
437 assert(nir_op_infos[alu1->op].input_types[src1] == in nir_alu_srcs_negative_equal()
438 nir_op_infos[alu2->op].input_types[src2]); in nir_alu_srcs_negative_equal()
440 assert(nir_op_infos[alu1->op].input_types[src1] == nir_type_int); in nir_alu_srcs_negative_equal()
441 assert(nir_op_infos[alu2->op].input_types[src2] == nir_type_int); in nir_alu_srcs_negative_equal()
472 const nir_alu_type full_type = nir_op_infos[alu1->op].input_types[src1] | in nir_alu_srcs_negative_equal()
Dnir_lower_int_to_float.c136 assert(nir_alu_type_get_base_type(info->input_types[i]) != nir_type_int && in lower_alu_instr()
137 nir_alu_type_get_base_type(info->input_types[i]) != nir_type_uint); in lower_alu_instr()
Dnir_constant_expressions.py15 for input_type in op.input_types:
Dnir_lower_bit_size.c61 nir_alu_type type = nir_op_infos[op].input_types[i]; in lower_alu_instr()
141 type = nir_op_infos[nir_intrinsic_reduction_op(intrin)].input_types[0]; in lower_intrinsic_instr()
Dnir_loop_analyze.c177 nir_alu_type_get_base_type(info->input_types[i]) == nir_type_float) in instr_cost()
866 assert(nir_alu_type_get_base_type(nir_op_infos[alu_op].input_types[1]) == nir_type_int || in calculate_iterations()
867 nir_alu_type_get_base_type(nir_op_infos[alu_op].input_types[1]) == nir_type_uint); in calculate_iterations()
869 assert(nir_alu_type_get_base_type(nir_op_infos[alu_op].input_types[0]) == in calculate_iterations()
Dnir_lower_convert_alu_types.c196 nir_alu_type src_type = nir_op_infos[alu->op].input_types[0] | src->bit_size; in lower_alu_conversion()
Dnir_lower_to_source_mods.c77 switch (nir_alu_type_get_base_type(nir_op_infos[alu->op].input_types[i])) { in nir_lower_to_source_mods_block()
Dnir_builder.c92 if (nir_alu_type_get_type_size(op_info->input_types[i]) == 0) { in nir_builder_alu_instr_finish_and_insert()
99 nir_alu_type_get_type_size(op_info->input_types[i])); in nir_builder_alu_instr_finish_and_insert()
Dnir_gather_ssa_types.c136 set_type(alu->src[i].src.ssa->index, info->input_types[i], in nir_gather_ssa_types()
/third_party/mesa3d/src/intel/compiler/
Dbrw_nir_lower_conversions.c69 nir_alu_type src_type = nir_op_infos[alu->op].input_types[0]; in lower_alu_instr()
/third_party/mesa3d/docs/_exts/
Dnir.py91 for i, t, s in zip(range(100), op.input_types, op.input_sizes):
/third_party/vk-gl-cts/external/openglcts/data/mustpass/gles/aosp_mustpass/3.2.2.x/src/
Dgles2-master.txt11385 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_fixed2_vec2_fixed…
11386 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_fixed2_vec2_byte2…
11387 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_fixed2_vec2_short…
11388 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_fixed2_vec2_unsig…
11389 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_fixed2_vec2_unsig…
11390 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_byte2_vec2_fixed2…
11391 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_byte2_vec2_byte2_…
11392 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_byte2_vec2_short2…
11393 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_byte2_vec2_unsign…
11394 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_byte2_vec2_unsign…
[all …]
/third_party/vk-gl-cts/android/cts/main/
Dgles2-master-2020-03-01.txt2896 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_fixed2_vec2_fixed…
2897 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_fixed2_vec2_byte2…
2898 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_fixed2_vec2_short…
2899 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_fixed2_vec2_unsig…
2900 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_fixed2_vec2_unsig…
2901 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_byte2_vec2_fixed2…
2902 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_byte2_vec2_byte2_…
2903 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_byte2_vec2_short2…
2904 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_byte2_vec2_unsign…
2905 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_byte2_vec2_unsign…
[all …]
/third_party/vk-gl-cts/android/cts/master/
Dgles2-master.txt11692 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_fixed2_vec2_fixed…
11693 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_fixed2_vec2_byte2…
11694 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_fixed2_vec2_short…
11695 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_fixed2_vec2_unsig…
11696 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_fixed2_vec2_unsig…
11697 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_byte2_vec2_fixed2…
11698 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_byte2_vec2_byte2_…
11699 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_byte2_vec2_short2…
11700 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_byte2_vec2_unsign…
11701 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_byte2_vec2_unsign…
[all …]
Dgles2-master-2020-03-01.txt11660 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_fixed2_vec2_fixed…
11661 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_fixed2_vec2_byte2…
11662 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_fixed2_vec2_short…
11663 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_fixed2_vec2_unsig…
11664 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_fixed2_vec2_unsig…
11665 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_byte2_vec2_fixed2…
11666 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_byte2_vec2_byte2_…
11667 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_byte2_vec2_short2…
11668 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_byte2_vec2_unsign…
11669 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_byte2_vec2_unsign…
[all …]
/third_party/skia/third_party/externals/swiftshader/tests/regres/testlists/
Dgles2-master.txt11660 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_fixed2_vec2_fixed…
11661 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_fixed2_vec2_byte2…
11662 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_fixed2_vec2_short…
11663 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_fixed2_vec2_unsig…
11664 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_fixed2_vec2_unsig…
11665 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_byte2_vec2_fixed2…
11666 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_byte2_vec2_byte2_…
11667 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_byte2_vec2_short2…
11668 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_byte2_vec2_unsign…
11669 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_byte2_vec2_unsign…
[all …]
Dgles2-master-PASS.txt13508 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_byte2_vec2_byte2_vec2_byte2_v…
13509 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_byte2_vec2_byte2_vec2_fixed2_…
13510 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_byte2_vec2_byte2_vec2_short2_…
13511 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_byte2_vec2_byte2_vec2_unsigne…
13512 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_byte2_vec2_byte2_vec2_unsigne…
13513 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_byte2_vec2_fixed2_vec2_byte2_…
13514 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_byte2_vec2_fixed2_vec2_fixed2…
13515 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_byte2_vec2_fixed2_vec2_short2…
13516 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_byte2_vec2_fixed2_vec2_unsign…
13517 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_byte2_vec2_fixed2_vec2_unsign…
[all …]
/third_party/vk-gl-cts/external/openglcts/data/mustpass/gles/aosp_mustpass/3.2.2.x/
Dgles2-master.txt11385 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_fixed2_vec2_fixed…
11386 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_fixed2_vec2_byte2…
11387 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_fixed2_vec2_short…
11388 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_fixed2_vec2_unsig…
11389 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_fixed2_vec2_unsig…
11390 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_byte2_vec2_fixed2…
11391 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_byte2_vec2_byte2_…
11392 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_byte2_vec2_short2…
11393 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_byte2_vec2_unsign…
11394 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_byte2_vec2_unsign…
[all …]
/third_party/vk-gl-cts/android/cts/master/src/
Dgles2-master-2020-03-01.txt11660 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_fixed2_vec2_fixed…
11661 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_fixed2_vec2_byte2…
11662 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_fixed2_vec2_short…
11663 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_fixed2_vec2_unsig…
11664 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_fixed2_vec2_unsig…
11665 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_byte2_vec2_fixed2…
11666 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_byte2_vec2_byte2_…
11667 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_byte2_vec2_short2…
11668 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_byte2_vec2_unsign…
11669 dEQP-GLES2.functional.vertex_arrays.multiple_attributes.input_types.3_fixed2_vec2_byte2_vec2_unsign…
[all …]

123