Home
last modified time | relevance | path

Searched refs:wrapLengthParam (Results 1 – 2 of 2) sorted by relevance

/external/deqp/external/vulkancts/modules/vulkan/tessellation/
DvktTessellationUtil.hpp344 std::string elemsStr (const IterT& begin, const IterT& end, int wrapLengthParam = 0, int numIndenta… in elemsStr() argument
349 const int wrapLength = wrapLengthParam > 0 ? wrapLengthParam : bigInt; in elemsStr()
375 std::string containerStr (const ContainerT& c, int wrapLengthParam = 0, int numIndentationSpaces = … in containerStr() argument
377 return elemsStr(c.begin(), c.end(), wrapLengthParam, numIndentationSpaces); in containerStr()
/external/deqp/modules/gles31/functional/
Des31fTessellationTests.cpp98 static string elemsStr (const IterT& begin, const IterT& end, int wrapLengthParam = 0, int numInden… in elemsStr() argument
102 const int wrapLength = wrapLengthParam > 0 ? wrapLengthParam : std::numeric_limits<int>::max(); in elemsStr()
128 static string containerStr (const ContainerT& c, int wrapLengthParam = 0, int numIndentationSpaces … in containerStr() argument
130 return elemsStr(c.begin(), c.end(), wrapLengthParam, numIndentationSpaces); in containerStr()
134 static string arrayStr (const T (&arr)[N], int wrapLengthParam = 0, int numIndentationSpaces = 0) in arrayStr() argument
136 return elemsStr(DE_ARRAY_BEGIN(arr), DE_ARRAY_END(arr), wrapLengthParam, numIndentationSpaces); in arrayStr()