Home
last modified time | relevance | path

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

/external/skia/forth/
DForth.cpp16 fStackBase = reinterpret_cast<intptr_t*>(sk_malloc_throw(size)); in ForthEngine()
17 fStackStop = fStackBase + size/sizeof(intptr_t); in ForthEngine()
22 sk_free(fStackBase); in ~ForthEngine()
34 if (fStackCurr > fStackBase) { in push()
35 SkASSERT(fStackCurr <= fStackStop && fStackCurr > fStackBase); in push()
43 SkASSERT(fStackCurr < fStackStop && fStackCurr >= fStackBase); in peek()
54 SkASSERT(fStackCurr < fStackStop && fStackCurr >= fStackBase); in setTop()
63 SkASSERT(fStackCurr < fStackStop && fStackCurr >= fStackBase); in pop()
DForth.h60 intptr_t* fStackBase; variable