Home
last modified time | relevance | path

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

/external/skia/forth/
DForth.cpp18 fStackCurr = fStackStop; in ForthEngine()
34 if (fStackCurr > fStackBase) { in push()
35 SkASSERT(fStackCurr <= fStackStop && fStackCurr > fStackBase); in push()
36 *--fStackCurr = value; in push()
43 SkASSERT(fStackCurr < fStackStop && fStackCurr >= fStackBase); in peek()
44 if (fStackCurr + index < fStackStop) { in peek()
45 return fStackCurr[index]; in peek()
53 if (fStackCurr < fStackStop) { in setTop()
54 SkASSERT(fStackCurr < fStackStop && fStackCurr >= fStackBase); in setTop()
55 *fStackCurr = value; in setTop()
[all …]
DForth.h41 int depth() const { return fStackStop - fStackCurr; } in depth()
42 void clearStack() { fStackCurr = fStackStop; } in clearStack()
61 intptr_t* fStackCurr; variable