Home
last modified time | relevance | path

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

/external/skia/src/gpu/tessellate/
DMiddleOutPolygonTriangulator.h124 int maxStackDepth = SkNextLog2(maxPushVertexCalls) + 1; variable
125 if (maxStackDepth > kStackPreallocCount) {
126 fVertexStack.reset(maxStackDepth);
128 SkDEBUGCODE(fStackAllocCount = maxStackDepth;)
/external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/
DMethodGen.java1000 int maxStackDepth = 0; in getMaxStack() local
1007 if (stackDepth > maxStackDepth) { in getMaxStack()
1008 maxStackDepth = stackDepth; in getMaxStack()
1054 return maxStackDepth; in getMaxStack()