Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/compiler/xla/service/gpu/
Dir_emitter_nested.cc48 std::vector<llvm::Type*> argument_types; in CodegenNestedComputation() local
54 argument_types.push_back( in CodegenNestedComputation()
64 argument_types.push_back( in CodegenNestedComputation()
71 argument_types.push_back(b_.getInt8PtrTy()); in CodegenNestedComputation()
74 llvm::FunctionType::get(b_.getVoidTy(), argument_types, false); in CodegenNestedComputation()
Dir_emission_utils.cc310 std::vector<llvm::Type*> argument_types; in EmitPrintf() local
327 argument_types.push_back(builder->getDoubleTy()); in EmitPrintf()
329 argument_types.push_back(builder->getInt32Ty()); in EmitPrintf()
331 argument_types.push_back(type); in EmitPrintf()
334 auto* arguments_type = llvm::StructType::create(argument_types); in EmitPrintf()
/external/v8/src/torque/
Dtype-inference.cc103 auto& argument_types = specialized_from->specialized_types; in MatchGeneric() local
104 if (parameters.size() != argument_types.size()) { in MatchGeneric()
112 Match(parameters[i], argument_types[i]); in MatchGeneric()
Dinstructions.cc368 std::vector<const Type*> argument_types = stack->PopMany(argc); in TypeInstruction() local
369 if (argument_types != in TypeInstruction()
419 std::vector<const Type*> argument_types = stack->PopMany(argc); in TypeInstruction() local
422 if (argument_types != LowerParameterTypes(f->parameter_types())) { in TypeInstruction()
452 std::vector<const Type*> argument_types = stack->PopMany(argc); in TypeInstruction() local
453 if (argument_types != in TypeInstruction()
Dtype-visitor.cc364 TypeVector argument_types; in ComputeType() local
366 argument_types.push_back(ComputeType(type_exp)); in ComputeType()
369 argument_types, ComputeType(function_type_exp->return_type)); in ComputeType()
Dtype-oracle.h68 TypeVector argument_types, const Type* return_type) { in GetBuiltinPointerType() argument
72 BuiltinPointerType(builtin_type, argument_types, return_type, in GetBuiltinPointerType()
Dimplementation-visitor.cc2964 TypeVector argument_types = arguments.parameters.ComputeTypeVector(); in Visit() local
/external/clang/bindings/python/tests/cindex/
Dtest_type.py165 args = f.type.argument_types()
189 args = f.type.argument_types()
199 args = f.type.argument_types()
208 args = f.type.argument_types()
219 i.type.argument_types()
402 a = foo.type.argument_types()[0]
/external/v8/src/wasm/
Dwasm-debug-evaluate.cc33 std::initializer_list<ValueType> argument_types, in CheckSignature() argument
50 if (sig->parameter_count() != argument_types.size()) { in CheckSignature()
52 sig->parameter_count(), argument_types.size()); in CheckSignature()
56 for (ValueType argument_type : argument_types) { in CheckSignature()
/external/clang/bindings/python/clang/
Dcindex.py1784 def argument_types(self): member in Type