Lines Matching defs:ndx
119 for (int ndx = 0; ndx < numShared; ndx++)
122 for (int ndx = 0; ndx < numVtxBlocks; ndx++)
125 for (int ndx = 0; ndx < numFragBlocks; ndx++)
165 for (int ndx = 0; ndx < numUniforms; ndx++)
171 static std::string genName(char first, char last, int ndx)
176 while (ndx > alphabetLen)
178 str.insert(str.begin(), (char)(first + ((ndx - 1) % alphabetLen)));
179 ndx = ((ndx - 1) / alphabetLen);
182 str.insert(str.begin(), (char)(first + (ndx % (alphabetLen + 1)) - 1));
218 for (int ndx = 0; ndx < numMembers; ndx++)
225 for (int ndx = 0; ndx < numMembers; ndx++)
232 structType.addMember((string("m") + (char)('A' + ndx)).c_str(), memberTypes[ndx], flags);
324 for (int ndx = 0; ndx < numCases; ndx++)
325 group->addChild(new RandomUniformBlockCase(context, de::toString(ndx).c_str(), "", glslVersion, bufferMode,
326 features, (deUint32)deInt32Hash(ndx + baseSeed)));