HomeSort by relevance Sort by last modified time
    Searched refs:scalarType (Results 1 - 25 of 25) sorted by null

  /system/tools/hidl/
EnumType.cpp 20 #include "ScalarType.h"
69 const ScalarType *EnumType::resolveToScalarType() const {
131 const ScalarType *scalarType = mStorageType->resolveToScalarType();
132 CHECK(scalarType != NULL);
134 scalarType->emitReaderWriterWithCast(
157 const ScalarType *scalarType = mStorageType->resolveToScalarType();
158 CHECK(scalarType != nullptr);
160 const std::string storageType = scalarType->getCppStackType()
    [all...]
Type.cpp 20 #include "ScalarType.h"
109 const ScalarType *Type::resolveToScalarType() const {
114 const ScalarType *scalarType = resolveToScalarType();
116 if (scalarType == NULL) {
120 return scalarType->isValidEnumStorageType();
  /external/deqp/external/vulkancts/modules/vulkan/pipeline/
vktPipelineSpecConstantTests.cpp     [all...]
  /hardware/intel/common/utils/ISV/include/
isv_worker.h 79 filter_t scalarType;
  /external/deqp/modules/glshared/
glsRandomShaderCase.cpp 410 const char* scalarType = DE_NULL;
415 case rsg::VariableType::TYPE_FLOAT: scalarType = "float"; vecType = "vec"; break;
416 case rsg::VariableType::TYPE_INT: scalarType = "int"; vecType = "ivec"; break;
417 case rsg::VariableType::TYPE_BOOL: scalarType = "bool"; vecType = "bvec"; break;
418 case rsg::VariableType::TYPE_SAMPLER_2D: scalarType = "sampler2D"; break;
419 case rsg::VariableType::TYPE_SAMPLER_CUBE: scalarType = "samplerCube"; break;
426 message << scalarType << "(";
glsRandomShaderProgram.cpp 51 const glu::DataType scalarType = varType.isFloatOrVec() ? glu::TYPE_FLOAT :
57 return glu::DataType(scalarType + numComps - 1);
glsUniformBlockCase.cpp 626 glu::DataType scalarType = glu::getDataTypeScalarType(entry.type);
648 switch (scalarType)
944 glu::DataType scalarType = glu::getDataTypeScalarType(entry.type);
958 DE_ASSERT(scalarType == glu::TYPE_FLOAT);
984 switch (scalarType)
    [all...]
  /external/deqp/modules/gles31/functional/
es31fUniformLocationTests.cpp 328 const glu::DataType scalarType = glu::getDataTypeScalarType(subType.getBasicType());
329 const char* const typeName = glu::getDataTypeName(scalarType);
330 const string expectValue = de::floatToString(getExpectedValue(scalarType, location >= 0 ? location+subTypeIndex : -1, typeName), 3);
332 if (glu::isDataTypeSampler(scalarType))
565 const glu::DataType scalarType = glu::getDataTypeScalarType(type.getBasicType());
566 const char* const typeName = glu::getDataTypeName(scalarType);
567 const float expectedValue = getExpectedValue(scalarType, expectedLocation, typeName);
569 if (glu::isDataTypeSampler(scalarType))
573 texList.push_back(createTexture(scalarType, expectedValue, binding).release());
    [all...]
es31fShaderIntegerFunctionTests.cpp 82 const glu::DataType scalarType = glu::getDataTypeScalarType(basicType);
93 switch (scalarType)
    [all...]
es31fSSBOLayoutCase.cpp 733 const glu::DataType scalarType = glu::getDataTypeScalarType(entry.type);
764 switch (scalarType)
    [all...]
es31fShaderCommonFunctionTests.cpp 369 const glu::DataType scalarType = glu::getDataTypeScalarType(basicType);
380 switch (scalarType)
    [all...]
es31fSeparateShaderTests.cpp 136 const DataType scalarType = rnd.chooseWeighted<DataType>(
138 return getDataTypeVector(scalarType, size);
    [all...]
  /external/deqp/framework/opengl/
gluShaderUtil.cpp 702 DataType getDataTypeVector (DataType scalarType, int size)
705 switch (scalarType)
712 return (DataType)((int)scalarType + size - 1);
gluShaderUtil.hpp 219 DataType getDataTypeVector (DataType scalarType, int size);
  /external/deqp/external/vulkancts/modules/vulkan/ssbo/
vktSSBOLayoutCase.cpp 648 const glu::DataType scalarType = glu::getDataTypeScalarType(entry.type);
679 switch (scalarType)
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
vktShaderIntegerFunctionTests.cpp 84 const glu::DataType scalarType = glu::getDataTypeScalarType(basicType);
95 switch (scalarType)
290 const glu::DataType scalarType = scalarTypes[scalarTypeNdx];
292 if ((!intTypes && scalarType == glu::TYPE_INT) || (!uintTypes && scalarType == glu::TYPE_UINT))
305 group->addChild(new TestClass(parent->getTestContext(), glu::DataType(scalarType + vecSize - 1), glu::Precision(prec), glu::ShaderType(shaderTypeNdx)));
    [all...]
vktShaderCommonFunctionTests.cpp 312 const glu::DataType scalarType = glu::getDataTypeScalarType(basicType);
323 switch (scalarType)
420 const glu::DataType scalarType = scalarTypes[scalarTypeNdx];
422 if ((!floatTypes && scalarType == glu::TYPE_FLOAT) ||
423 (!intTypes && scalarType == glu::TYPE_INT) ||
424 (!uintTypes && scalarType == glu::TYPE_UINT))
434 group->addChild(new TestClass(parent->getTestContext(), glu::DataType(scalarType + vecSize - 1), glu::Precision(prec), glu::ShaderType(shaderTypeNdx)));
    [all...]
  /external/deqp/modules/gles3/functional/
es3fShaderCommonFunctionTests.cpp 295 const glu::DataType scalarType = glu::getDataTypeScalarType(basicType);
306 switch (scalarType)
    [all...]
es3fTransformFeedbackTests.cpp 728 glu::DataType scalarType = glu::getDataTypeScalarType(type);
743 if (scalarType == glu::TYPE_FLOAT)
    [all...]
  /external/mesa3d/src/gallium/drivers/radeon/
AMDILPeepholeOptimizer.cpp 757 Type *scalarType = AndMaskVec->getType()->getScalarType();
783 maskVals.push_back(ConstantInt::get(scalarType, maskVal, isSigned));
784 shiftVals.push_back(ConstantInt::get(scalarType, shiftVal, isSigned));
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/ubo/
vktUniformBlockCase.cpp 577 glu::DataType scalarType = glu::getDataTypeScalarType(entry.type);
599 switch (scalarType)
976 glu::DataType scalarType = glu::getDataTypeScalarType(entry.type);
990 DE_ASSERT(scalarType == glu::TYPE_FLOAT);
1016 switch (scalarType)
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/
vktShaderLibrary.cpp 937 vk::VkFormat getVecFormat (DataType scalarType, int scalarSize)
939 switch (scalarType)
    [all...]
  /external/clang/lib/CodeGen/
CGCall.cpp     [all...]
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/SPIRV/
GlslangToSpv.cpp     [all...]
  /prebuilts/ndk/r13/sources/third_party/vulkan/glslang/SPIRV/
GlslangToSpv.cpp     [all...]

Completed in 1444 milliseconds