Searched refs:fStackStop (Results 1 – 2 of 2) sorted by relevance
17 fStackStop = fStackBase + size/sizeof(intptr_t); in ForthEngine()18 fStackCurr = fStackStop; in ForthEngine()35 SkASSERT(fStackCurr <= fStackStop && fStackCurr > fStackBase); in push()43 SkASSERT(fStackCurr < fStackStop && fStackCurr >= fStackBase); in peek()44 if (fStackCurr + index < fStackStop) { in peek()53 if (fStackCurr < fStackStop) { in setTop()54 SkASSERT(fStackCurr < fStackStop && fStackCurr >= fStackBase); in setTop()62 if (fStackCurr < fStackStop) { in pop()63 SkASSERT(fStackCurr < fStackStop && fStackCurr >= fStackBase); in pop()
41 int depth() const { return fStackStop - fStackCurr; } in depth()42 void clearStack() { fStackCurr = fStackStop; } in clearStack()62 intptr_t* fStackStop; variable