Home
last modified time | relevance | path

Searched refs:full_type (Results 1 – 10 of 10) sorted by relevance

/external/mesa3d/src/compiler/nir/tests/
Dnegative_equal_tests.cpp29 nir_alu_type full_type, int first);
32 nir_alu_type full_type, unsigned components);
91 #define compare_with_self(full_type) \ argument
92 TEST_F(const_value_negative_equal_test, full_type ## _self) \
94 count_sequence(c1, full_type, 1); \
95 EXPECT_FALSE(nir_const_value_negative_equal(c1[0], c1[0], full_type)); \
113 #define compare_with_negation(full_type) \ in compare_with_self() argument
114 TEST_F(const_value_negative_equal_test, full_type ## _trivially_true) \ in compare_with_self()
116 count_sequence(c1, full_type, 1); \ in compare_with_self()
117 negate(c2, c1, full_type, 1); \ in compare_with_self()
[all …]
/external/python/google-api-python-client/googleapiclient/
Dmimeparse.py49 full_type = parts[0].strip()
52 if full_type == '*':
53 full_type = '*/*'
54 (type, subtype) = full_type.split('/')
/external/mesa3d/src/freedreno/ir3/
Dir3_validate.c124 validate_assert(ctx, instr->cat1.dst_type == full_type(instr->cat1.dst_type)); in validate_instr()
129 validate_assert(ctx, instr->cat1.src_type == full_type(instr->cat1.src_type)); in validate_instr()
154 validate_assert(ctx, instr->cat5.type == full_type(instr->cat5.type)); in validate_instr()
Dir3.c1253 instr->cat1.dst_type = full_type(instr->cat1.dst_type); in ir3_set_dst_type()
1267 instr->cat5.type = full_type(instr->cat5.type); in ir3_set_dst_type()
1287 instr->cat1.src_type = full_type(instr->cat1.src_type); in ir3_fixup_src_type()
Dir3.h991 static inline type_t full_type(type_t type) in full_type() function
/external/mesa3d/src/compiler/nir/
Dnir_instr_set.c370 nir_alu_type full_type) in nir_const_value_negative_equal() argument
372 assert(nir_alu_type_get_base_type(full_type) != nir_type_invalid); in nir_const_value_negative_equal()
373 assert(nir_alu_type_get_type_size(full_type) != 0); in nir_const_value_negative_equal()
375 switch (full_type) { in nir_const_value_negative_equal()
470 const nir_alu_type full_type = nir_op_infos[alu1->op].input_types[src1] | in nir_alu_srcs_negative_equal() local
476 full_type)) in nir_alu_srcs_negative_equal()
Dnir.h1430 nir_alu_type full_type);
/external/perfetto/src/protozero/protoc_plugin/
Dcppgen_plugin.cc85 std::string full_type; in GetFullName() local
86 full_type.append(msg->name()); in GetFullName()
89 full_type.insert(0, par->name() + "_"); in GetFullName()
96 full_type = prefix + full_type; in GetFullName()
98 return full_type; in GetFullName()
/external/tensorflow/tensorflow/compiler/mlir/lite/transforms/
Doptimize.cc90 auto full_type = type2.dyn_cast<ShapedType>(); in IsTailOfShape() local
91 if (!tail_type || !full_type || tail_type.getRank() > full_type.getRank()) in IsTailOfShape()
94 auto i2 = full_type.getShape().rbegin(); in IsTailOfShape()
/external/flatbuffers/src/
Didl_gen_cpp.cpp1494 auto full_type = in GenMember() local
1503 code_.SetValue("FIELD_TYPE", full_type); in GenMember()