Home
last modified time | relevance | path

Searched refs:destination_type (Results 1 – 12 of 12) sorted by relevance

/external/tensorflow/tensorflow/lite/delegates/gpu/metal/
Dcompute_task_descriptor.cc35 RuntimeOptions::Precision destination_type) { in GetByteBufferConverted() argument
36 if (destination_type == metal::RuntimeOptions::Precision::FP32) { in GetByteBufferConverted()
54 RuntimeOptions::Precision destination_type, size_t elements_count) { in GetByteBufferConvertedResized() argument
55 auto result = GetByteBufferConverted(input_vector, destination_type); in GetByteBufferConvertedResized()
57 destination_type == metal::RuntimeOptions::Precision::FP32 in GetByteBufferConvertedResized()
Dcompute_task_descriptor.h130 RuntimeOptions::Precision destination_type);
136 RuntimeOptions::Precision destination_type, size_t elements_count);
/external/deqp/external/openglcts/modules/gl/
Dgl3cGPUShader5Tests.cpp580 std::string GPUShader5ImplicitConversionsTest::getVertexShader(const glw::GLchar* destination_type, in getVertexShader() argument
623 Utils::replaceToken("DESTINATION_TYPE", search_position, destination_type, vs_body); in getVertexShader()
624 Utils::replaceToken("DESTINATION_TYPE", search_position, destination_type, vs_body); in getVertexShader()
627 if (!strcmp(destination_type, "int") || !strcmp(destination_type, "uint")) in getVertexShader()
632 else if (!strcmp(destination_type, "float")) in getVertexShader()
637 else if (!strcmp(destination_type, "ivec2")) in getVertexShader()
642 else if (!strcmp(destination_type, "ivec3")) in getVertexShader()
647 else if (!strcmp(destination_type, "ivec4")) in getVertexShader()
652 else if (!strcmp(destination_type, "uvec2")) in getVertexShader()
657 else if (!strcmp(destination_type, "uvec3")) in getVertexShader()
[all …]
Dgl3cGPUShader5Tests.hpp172 std::string getVertexShader(const glw::GLchar* destination_type, const glw::GLchar* source_type);
Dgl3cTextureSizePromotion.cpp421 glw::GLenum destination_type = GL_FLOAT; in prepareDestinationTextureAndFramebuffer() local
427 destination_type = GL_INT; in prepareDestinationTextureAndFramebuffer()
434 destination_type = GL_UNSIGNED_INT; in prepareDestinationTextureAndFramebuffer()
439 destination_type, destination_data); in prepareDestinationTextureAndFramebuffer()
/external/v8/src/torque/
Dinstructions.h605 explicit UnsafeCastInstruction(const Type* destination_type) in TORQUE_INSTRUCTION_BOILERPLATE()
606 : destination_type(destination_type) {} in TORQUE_INSTRUCTION_BOILERPLATE()
610 const Type* destination_type; member
Dcc-generator.cc352 instruction.destination_type->GetRuntimeType() + in EmitInstruction()
Dimplementation-visitor.cc3012 const Type* destination_type, VisitResult source) { in GenerateImplicitConvert() argument
3018 if (destination_type == source.type()) { in GenerateImplicitConvert()
3022 if (auto from = TypeOracle::ImplicitlyConvertableFrom(destination_type, in GenerateImplicitConvert()
3026 {destination_type, *from}, false)); in GenerateImplicitConvert()
3027 } else if (IsAssignableFrom(destination_type, source.type())) { in GenerateImplicitConvert()
3028 source.SetType(destination_type); in GenerateImplicitConvert()
3033 s << "undefined expression of type " << *destination_type << ": the " in GenerateImplicitConvert()
3037 << " as a value of type " << *destination_type; in GenerateImplicitConvert()
Dinstructions.cc583 stack->Poke(stack->AboveTop() - 1, destination_type); in TypeInstruction()
Dimplementation-visitor.h740 VisitResult GenerateImplicitConvert(const Type* destination_type,
Dcsa-generator.cc814 instruction.destination_type->GetGeneratedTNodeTypeName() + ">(" + in EmitInstruction()
/external/v8/src/objects/
Delements.cc3434 ExternalArrayType destination_type = destination.type(); in CopyElementsFromTypedArray() local
3436 bool same_type = source_type == destination_type; in CopyElementsFromTypedArray()
3439 HasSimpleRepresentation(destination_type); in CopyElementsFromTypedArray()