Home
last modified time | relevance | path

Searched refs:parameter_type (Results 1 – 16 of 16) sorted by relevance

/external/angle/third_party/spirv-tools/src/source/val/
Dvalidate_function.cpp277 const auto parameter_type = _.FindDef(parameter_type_id); in ValidateFunctionCall() local
278 if (!parameter_type || argument_type->id() != parameter_type->id()) { in ValidateFunctionCall()
280 !DoPointeesLogicallyMatch(argument_type, parameter_type, _)) { in ValidateFunctionCall()
289 if (parameter_type->opcode() == SpvOpTypePointer && in ValidateFunctionCall()
291 SpvStorageClass sc = parameter_type->GetOperandAs<SpvStorageClass>(1u); in ValidateFunctionCall()
/external/swiftshader/third_party/SPIRV-Tools/source/val/
Dvalidate_function.cpp277 const auto parameter_type = _.FindDef(parameter_type_id); in ValidateFunctionCall() local
278 if (!parameter_type || argument_type->id() != parameter_type->id()) { in ValidateFunctionCall()
280 !DoPointeesLogicallyMatch(argument_type, parameter_type, _)) { in ValidateFunctionCall()
289 if (parameter_type->opcode() == SpvOpTypePointer && in ValidateFunctionCall()
291 SpvStorageClass sc = parameter_type->GetOperandAs<SpvStorageClass>(1u); in ValidateFunctionCall()
/external/deqp-deps/SPIRV-Tools/source/val/
Dvalidate_function.cpp277 const auto parameter_type = _.FindDef(parameter_type_id); in ValidateFunctionCall() local
278 if (!parameter_type || argument_type->id() != parameter_type->id()) { in ValidateFunctionCall()
280 !DoPointeesLogicallyMatch(argument_type, parameter_type, _)) { in ValidateFunctionCall()
289 if (parameter_type->opcode() == SpvOpTypePointer && in ValidateFunctionCall()
291 SpvStorageClass sc = parameter_type->GetOperandAs<SpvStorageClass>(1u); in ValidateFunctionCall()
/external/v8/src/torque/
Dinstructions.cc153 const Type* parameter_type = parameter_types.back(); in TypeInstruction() local
155 if (arg_type != parameter_type) { in TypeInstruction()
156 ReportError("parameter ", i, ": expected type ", *parameter_type, in TypeInstruction()
192 const Type* parameter_type = parameter_types.back(); in TypeInstruction() local
194 if (arg_type != parameter_type) { in TypeInstruction()
195 ReportError("parameter ", i, ": expected type ", *parameter_type, in TypeInstruction()
252 const Type* parameter_type = parameter_types.back(); in TypeInstruction() local
254 if (arg_type != parameter_type) { in TypeInstruction()
255 ReportError("parameter ", i, ": expected type ", *parameter_type, in TypeInstruction()
Ddeclaration-visitor.cc83 const Type* parameter_type = signature.parameter_types.types[i]; in CreateBuiltin() local
84 if (!TypeOracle::GetJSAnyType()->IsSubtypeOf(parameter_type)) { in CreateBuiltin()
144 for (const Type* parameter_type : signature.parameter_types.types) { in Visit() local
145 if (!parameter_type->IsSubtypeOf(TypeOracle::GetStrongTaggedType())) { in Visit()
149 *parameter_type); in Visit()
Dimplementation-visitor.cc967 const Type* parameter_type = label->parameter_types[i++]; in Visit() local
968 result = GenerateImplicitConvert(parameter_type, result); in Visit()
1743 const Type* parameter_type = signature.types()[i]; in GenerateFunctionDeclaration() local
1746 ? parameter_type->GetRuntimeType() in GenerateFunctionDeclaration()
1747 : parameter_type->GetGeneratedTypeName(); in GenerateFunctionDeclaration()
2506 Callable* callable, VisitResult parameter, const Type* parameter_type, in AddCallParameter() argument
2514 converted = GenerateImplicitConvert(parameter_type, parameter); in AddCallParameter()
2759 const Type* parameter_type = label->parameter_types[j]; in GenerateCall() local
2760 if (!t->IsSubtypeOf(parameter_type)) { in GenerateCall()
2762 *parameter_type, " but macro produces ", *t, in GenerateCall()
Dimplementation-visitor.h701 const Type* parameter_type,
/external/deqp-deps/SPIRV-Tools/source/fuzz/
Dtransformation_replace_id_with_synonym.cpp164 auto parameter_type = ir_context->get_type_mgr()->GetType( in UseCanBeReplacedWithSynonym() local
166 if (parameter_type->AsPointer()) { in UseCanBeReplacedWithSynonym()
/external/swiftshader/third_party/SPIRV-Tools/source/fuzz/
Dtransformation_replace_id_with_synonym.cpp161 auto parameter_type = context->get_type_mgr()->GetType( in UseCanBeReplacedWithSynonym() local
163 if (parameter_type->AsPointer()) { in UseCanBeReplacedWithSynonym()
/external/angle/third_party/spirv-tools/src/source/fuzz/
Dtransformation_replace_id_with_synonym.cpp167 auto parameter_type = ir_context->get_type_mgr()->GetType( in UseCanBeReplacedWithSynonym() local
169 if (parameter_type->AsPointer()) { in UseCanBeReplacedWithSynonym()
/external/python/cpython3/Modules/_sqlite/
Dstatement.c49 } parameter_type; typedef
119 parameter_type paramtype; in pysqlite_statement_bind_parameter()
/external/python/cpython2/Modules/_sqlite/
Dstatement.c52 } parameter_type; typedef
113 parameter_type paramtype; in pysqlite_statement_bind_parameter()
/external/googletest/googlemock/scripts/generator/cpp/
Dast.py211 def __init__(self, start, end, name, parameter_type, default): argument
214 self.type = parameter_type
605 parameter_type = Type(first_token.start, first_token.end,
609 parameter_type, default)
/external/google-breakpad/src/testing/scripts/generator/cpp/
Dast.py213 def __init__(self, start, end, name, parameter_type, default): argument
216 self.type = parameter_type
607 parameter_type = Type(first_token.start, first_token.end,
611 parameter_type, default)
/external/tensorflow/tensorflow/compiler/tf2tensorrt/convert/
Dconvert_nodes.cc4604 auto parameter_type = inputs.at(1).weights().TrtDType(); in ConvertFusedBatchNorm() local
4605 if ((parameter_type != nvinfer1::DataType::kFLOAT) && in ConvertFusedBatchNorm()
4606 (parameter_type != nvinfer1::DataType::kHALF)) { in ConvertFusedBatchNorm()
4609 node_def.name(), " got ", DebugString(parameter_type)); in ConvertFusedBatchNorm()
4612 if (inputs.at(i).weights().TrtDType() != parameter_type) { in ConvertFusedBatchNorm()
4619 TRT_ShapedWeights dummy_power_weights(parameter_type); in ConvertFusedBatchNorm()
4663 if (parameter_type == nvinfer1::DataType::kFLOAT) { in ConvertFusedBatchNorm()
4665 } else if (parameter_type == nvinfer1::DataType::kHALF) { in ConvertFusedBatchNorm()
4670 if (parameter_type == nvinfer1::DataType::kFLOAT) { in ConvertFusedBatchNorm()
4672 } else if (parameter_type == nvinfer1::DataType::kHALF) { in ConvertFusedBatchNorm()
[all …]
/external/autotest/database/
Dschema_129.sql498 `parameter_type` enum('int','float','string') DEFAULT NULL,
519 `parameter_type` enum('int','float','string') DEFAULT NULL,