Home
last modified time | relevance | path

Searched refs:numArrayElements (Results 1 – 3 of 3) sorted by relevance

/external/deqp/external/vulkancts/modules/vulkan/tessellation/
DvktTessellationUserDefinedIO.cpp107 …virtual std::string glslTraverseBasicTypeArray (const int numArrayElements, //!< If negative, tr…
257 …std::string glslTraverseBasicTypeArray (const int numArrayElements, const int indentationDepth,…
280 std::string Variable::glslTraverseBasicTypeArray (const int numArrayElements, const int indentation… in glslTraverseBasicTypeArray() argument
284 const bool traverseAsArray = numArrayElements >= 0; in glslTraverseBasicTypeArray()
286 const glu::VarType type = traverseAsArray ? glu::VarType(m_type, numArrayElements) : m_type; in glslTraverseBasicTypeArray()
338 …std::string glslTraverseBasicTypeArray (const int numArrayElements, const int indentationDepth…
377 std::string IOBlock::glslTraverseBasicTypeArray (const int numArrayElements, const int indentationD… in glslTraverseBasicTypeArray() argument
379 if (numArrayElements >= 0) in glslTraverseBasicTypeArray()
384 result << indentation << "for (int i0 = 0; i0 < " << numArrayElements << "; ++i0)\n" in glslTraverseBasicTypeArray()
/external/deqp/modules/gles31/functional/
Des31fTessellationTests.cpp5595 …virtual string glslTraverseBasicTypeArray (int numArrayElements, //!< If negative, traverse just …
5618 …string glslTraverseBasicTypeArray (int numArrayElements, int indentationDepth, BasicTypeVisitFun…
5649 …string glslTraverseBasicTypeArray (int numArrayElements, int indentationDepth, BasicTypeVisitFun…
5789 string UserDefinedIOCase::Variable::glslTraverseBasicTypeArray (int numArrayElements, int indentati… in glslTraverseBasicTypeArray() argument
5793 const bool traverseAsArray = numArrayElements >= 0; in glslTraverseBasicTypeArray()
5795 const glu::VarType type = traverseAsArray ? glu::VarType(m_type, numArrayElements) : m_type; in glslTraverseBasicTypeArray()
5807 string UserDefinedIOCase::IOBlock::glslTraverseBasicTypeArray (int numArrayElements, int indentatio… in glslTraverseBasicTypeArray() argument
5809 if (numArrayElements >= 0) in glslTraverseBasicTypeArray()
5812 …string result = indentation + "for (int i0 = 0; i0 < " + de::toString(numArrayElements) + "; … in glslTraverseBasicTypeArray()
/external/clang/lib/Sema/
DSemaInit.cpp318 int numArrayElements(QualType DeclType);
792 int InitListChecker::numArrayElements(QualType DeclType) { in numArrayElements() function in InitListChecker
830 maxElements = numArrayElements(T); in CheckImplicitInitList()