Lines Matching defs:ndx
132 for (int ndx = 0; ndx < numBlocks; ndx++)
192 for (int ndx = 0; ndx < numVars; ndx++)
193 generateBufferVar(rnd, block, (ndx+1 == numVars));
214 static std::string genName (char first, char last, int ndx)
219 while (ndx > alphabetLen)
221 str.insert(str.begin(), (char)(first + ((ndx-1)%alphabetLen)));
222 ndx = ((ndx-1) / alphabetLen);
225 str.insert(str.begin(), (char)(first + (ndx%(alphabetLen+1)) - 1));
269 for (int ndx = 0; ndx < numMembers; ndx++)
276 for (int ndx = 0; ndx < numMembers; ndx++)
278 structType.addMember((string("m") + (char)('A' + ndx)).c_str(), memberTypes[ndx]);
468 for (int ndx = 0; ndx < numCases; ndx++)
469 group->addChild(new RandomSSBOLayoutCase(testCtx, de::toString(ndx).c_str(), bufferMode, features, (deUint32)ndx+baseSeed, usePhysStorageBuffer));
639 for (int ndx = 0; ndx < (m_numInstances ? m_numInstances : 1); ndx++)
642 block.setLastUnsizedArraySize(ndx, lastArrayLen);
680 for (int ndx = 0; ndx < (m_numInstances ? m_numInstances : 1); ndx++)
683 block.setLastUnsizedArraySize(ndx, lastArrayLen);
728 for (int ndx = 0; ndx < (m_numInstances ? m_numInstances : 1); ndx++)
731 block.setLastUnsizedArraySize(ndx, lastArrayLen);
1823 for (int ndx = 0; ndx < DE_LENGTH_OF_ARRAY(subcases); ndx++)
1825 const UnsizedArrayCaseParams& params = subcases[ndx];