Home
last modified time | relevance | path

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

/external/deqp/framework/delibs/depool/
DdePoolArray.h241 DE_INLINE void TYPENAME##_##SORTNAME##ShiftDown (DE_PTR_TYPE(TYPENAME) arr, int startNdx, int endNd…
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; \
/external/deqp/modules/gles3/functional/
Des3fPrimitiveRestartTests.cpp102 void draw (int startNdx, int count);
507 void PrimitiveRestartCase::draw (int startNdx, int count) in draw() argument
545 glDrawElements(primTypeGL, (GLsizei)count, indexTypeGL, (GLvoid*)getIndexPtr(startNdx)); in draw()
547 …glDrawElementsInstanced(primTypeGL, (GLsizei)count, indexTypeGL, (GLvoid*)getIndexPtr(startNdx), 1… in draw()
564 …eElements(primTypeGL, 0, (GLuint)max, (GLsizei)count, indexTypeGL, (GLvoid*)getIndexPtr(startNdx)); in draw()
/external/deqp/modules/gles31/functional/
Des31fProgramInterfaceQueryTestCase.cpp820 static int getIOSubVariableLocation (const std::vector<VariablePathComponent>& path, int startNdx, … in getIOSubVariableLocation() argument
825 if (path[startNdx].getVariableType()->isBasicType()) in getIOSubVariableLocation()
827 else if (path[startNdx].getVariableType()->isArrayType()) in getIOSubVariableLocation()
828 return getIOSubVariableLocation(path, startNdx+1, currentLocation); in getIOSubVariableLocation()
829 else if (path[startNdx].getVariableType()->isStructType()) in getIOSubVariableLocation()
831 for (int ndx = 0; ndx < path[startNdx].getVariableType()->getStructPtr()->getNumMembers(); ++ndx) in getIOSubVariableLocation()
833 …if (&path[startNdx].getVariableType()->getStructPtr()->getMember(ndx).getType() == path[startNdx +… in getIOSubVariableLocation()
834 return getIOSubVariableLocation(path, startNdx + 1, currentLocation); in getIOSubVariableLocation()
837 …currentLocation += getVariableLocationLength(path[startNdx].getVariableType()->getStructPtr()->get… in getIOSubVariableLocation()