HomeSort by relevance Sort by last modified time
    Searched refs:stackp (Results 1 - 4 of 4) sorted by null

  /system/core/sh/
memalloc.c 116 struct stack_block *stackp = &stackbase; variable in typeref:struct:stack_block
138 sp->prev = stackp;
141 stackp = sp;
167 mark->stackp = stackp;
182 while (stackp != mark->stackp) {
183 sp = stackp;
184 stackp = sp->prev;
208 if (stacknxt == stackp->space && stackp != &stackbase)
    [all...]
memalloc.h 38 struct stack_block *stackp; member in struct:stackmark
  /external/chromium_org/third_party/WebKit/Source/core/platform/image-decoders/gif/
GIFImageReader.cpp 262 stack[stackp++] = firstchar;
265 if (stackp == MAX_BYTES)
277 stack[stackp++] = suffix[code];
280 if (stackp == MAX_BYTES)
284 stack[stackp++] = firstchar = suffix[code];
304 *rowIter++ = stack[--stackp];
307 } while (stackp > 0);
789 stackp = 0;
GIFImageReader.h 98 , stackp(0)
128 size_t stackp; // Current stack pointer. member in class:GIFLZWContext

Completed in 4812 milliseconds