Searched refs:argument_types (Results 1 – 10 of 10) sorted by relevance
/external/tensorflow/tensorflow/compiler/xla/service/gpu/ |
D | ir_emitter_nested.cc | 48 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()
|
D | ir_emission_utils.cc | 310 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/ |
D | type-inference.cc | 103 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()
|
D | instructions.cc | 368 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()
|
D | type-visitor.cc | 364 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()
|
D | type-oracle.h | 68 TypeVector argument_types, const Type* return_type) { in GetBuiltinPointerType() argument 72 BuiltinPointerType(builtin_type, argument_types, return_type, in GetBuiltinPointerType()
|
D | implementation-visitor.cc | 2964 TypeVector argument_types = arguments.parameters.ComputeTypeVector(); in Visit() local
|
/external/clang/bindings/python/tests/cindex/ |
D | test_type.py | 165 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/ |
D | wasm-debug-evaluate.cc | 33 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/ |
D | cindex.py | 1784 def argument_types(self): member in Type
|