Home
last modified time | relevance | path

Searched refs:result_types (Results 1 – 8 of 8) sorted by relevance

/external/clang/docs/tools/
Ddump_ast_matchers.py68 result_types = []
76 return result_types
79 result_types += [m.group(2)]
175 result_types = [r.strip() for r in results.split(',')]
179 sorted(result_types) != sorted(comment_result_types)):
181 for result_type in result_types:
201 result_types = [r.strip() for r in results.split(',')]
202 if allowed_types and allowed_types != result_types:
208 for result_type in result_types:
246 result_types = allowed_types
[all …]
/external/swiftshader/third_party/SPIRV-Tools/source/val/
Dvalidate_arithmetics.cpp403 std::vector<uint32_t> result_types; in ArithmeticsPass() local
404 if (!_.GetStructMemberTypes(result_type, &result_types)) in ArithmeticsPass()
409 if (result_types.size() != 2) in ArithmeticsPass()
415 if (!_.IsIntScalarType(result_types[0]) && in ArithmeticsPass()
416 !_.IsIntVectorType(result_types[0])) in ArithmeticsPass()
422 if (!_.IsUnsignedIntScalarType(result_types[0]) && in ArithmeticsPass()
423 !_.IsUnsignedIntVectorType(result_types[0])) in ArithmeticsPass()
429 if (result_types[0] != result_types[1]) in ArithmeticsPass()
437 if (left_type_id != result_types[0] || right_type_id != result_types[0]) in ArithmeticsPass()
Dvalidate_extensions.cpp334 std::vector<uint32_t> result_types; in ValidateExtInst() local
335 if (!_.GetStructMemberTypes(result_type, &result_types) || in ValidateExtInst()
336 result_types.size() != 2 || in ValidateExtInst()
337 !_.IsFloatScalarOrVectorType(result_types[0]) || in ValidateExtInst()
338 result_types[1] != result_types[0]) { in ValidateExtInst()
346 if (x_type != result_types[0]) { in ValidateExtInst()
439 std::vector<uint32_t> result_types; in ValidateExtInst() local
440 if (!_.GetStructMemberTypes(result_type, &result_types) || in ValidateExtInst()
441 result_types.size() != 2 || in ValidateExtInst()
442 !_.IsFloatScalarOrVectorType(result_types[0]) || in ValidateExtInst()
[all …]
/external/deqp-deps/SPIRV-Tools/source/val/
Dvalidate_arithmetics.cpp403 std::vector<uint32_t> result_types; in ArithmeticsPass() local
404 if (!_.GetStructMemberTypes(result_type, &result_types)) in ArithmeticsPass()
409 if (result_types.size() != 2) in ArithmeticsPass()
415 if (!_.IsIntScalarType(result_types[0]) && in ArithmeticsPass()
416 !_.IsIntVectorType(result_types[0])) in ArithmeticsPass()
422 if (!_.IsUnsignedIntScalarType(result_types[0]) && in ArithmeticsPass()
423 !_.IsUnsignedIntVectorType(result_types[0])) in ArithmeticsPass()
429 if (result_types[0] != result_types[1]) in ArithmeticsPass()
437 if (left_type_id != result_types[0] || right_type_id != result_types[0]) in ArithmeticsPass()
Dvalidate_extensions.cpp334 std::vector<uint32_t> result_types; in ValidateExtInst() local
335 if (!_.GetStructMemberTypes(result_type, &result_types) || in ValidateExtInst()
336 result_types.size() != 2 || in ValidateExtInst()
337 !_.IsFloatScalarOrVectorType(result_types[0]) || in ValidateExtInst()
338 result_types[1] != result_types[0]) { in ValidateExtInst()
346 if (x_type != result_types[0]) { in ValidateExtInst()
439 std::vector<uint32_t> result_types; in ValidateExtInst() local
440 if (!_.GetStructMemberTypes(result_type, &result_types) || in ValidateExtInst()
441 result_types.size() != 2 || in ValidateExtInst()
442 !_.IsFloatScalarOrVectorType(result_types[0]) || in ValidateExtInst()
[all …]
/external/tensorflow/tensorflow/compiler/tf2xla/
Dxla_compiler.h353 absl::Span<const DataType> result_types,
Dxla_compiler.cc898 absl::Span<const DataType> result_types, CompilationResult* result) { in CompileSingleOp() argument
925 for (int64 i = 0; i < result_types.size(); ++i) { in CompileSingleOp()
930 .Attr("T", result_types[i]) in CompileSingleOp()
/external/python/cpython3/Lib/test/
Dtest_urlparse.py850 result_types = [
855 for result_type in result_types: