Searched refs:startNdx (Results 1 - 3 of 3) sorted by relevance
/third_party/vk-gl-cts/framework/delibs/depool/ |
H A D | dePoolArray.h | 241 DE_INLINE void TYPENAME##_##SORTNAME##ShiftDown (DE_PTR_TYPE(TYPENAME) arr, int startNdx, int endNdx) \ 243 int rootNdx = startNdx; \ 264 int startNdx = (TYPENAME##_getNumElements(arr) - 2) / 2; \ 266 while (startNdx >= 0) \ 268 TYPENAME##_##SORTNAME##ShiftDown(arr, startNdx, TYPENAME##_getNumElements(arr) - 1); \ 269 startNdx -= 1; \
|
/third_party/vk-gl-cts/modules/gles3/functional/ |
H A D | es3fPrimitiveRestartTests.cpp | 102 void draw (int startNdx, int count); 522 void PrimitiveRestartCase::draw (int startNdx, int count) in draw() argument 560 glDrawElements(primTypeGL, (GLsizei)count, indexTypeGL, (GLvoid*)getIndexPtr(startNdx)); in draw() 562 glDrawElementsInstanced(primTypeGL, (GLsizei)count, indexTypeGL, (GLvoid*)getIndexPtr(startNdx), 1); in draw() 579 glDrawRangeElements(primTypeGL, 0, (GLuint)max, (GLsizei)count, indexTypeGL, (GLvoid*)getIndexPtr(startNdx)); in draw()
|
/third_party/vk-gl-cts/modules/gles31/functional/ |
H A D | es31fProgramInterfaceQueryTestCase.cpp | 821 static int getIOSubVariableLocation (const std::vector<VariablePathComponent>& path, int startNdx, int currentLocation) 826 if (path[startNdx].getVariableType()->isBasicType()) 828 else if (path[startNdx].getVariableType()->isArrayType()) 829 return getIOSubVariableLocation(path, startNdx+1, currentLocation); 830 else if (path[startNdx].getVariableType()->isStructType()) 832 for (int ndx = 0; ndx < path[startNdx].getVariableType()->getStructPtr()->getNumMembers(); ++ndx) 834 if (&path[startNdx].getVariableType()->getStructPtr()->getMember(ndx).getType() == path[startNdx + 1].getVariableType()) 835 return getIOSubVariableLocation(path, startNdx + 1, currentLocation); 838 currentLocation += getVariableLocationLength(path[startNdx] [all...] |
Completed in 3 milliseconds