Searched refs:stackTop (Results 1 - 7 of 7) sorted by relevance

/external/javassist/src/main/javassist/bytecode/stackmap/
H A DTracer.java35 protected int stackTop; field in class:Tracer
44 stackTop = 0;
54 stackTop = t.stackTop;
58 copyFrom(t.stackTop, t.stackTypes, stackTypes);
143 * stackTypes[stackTop++] = TOP;
160 stackTypes[stackTop++] = new TypeData.NullType();
169 stackTypes[stackTop++] = INTEGER;
173 stackTypes[stackTop++] = LONG;
174 stackTypes[stackTop
[all...]
H A DMapMaker.java212 maker.stackTop = 1;
225 n = stackTop;
249 int st = stackTop;
288 evalExpected(cp, target.stackTop, target.stackTypes);
351 int stackTop = bb.stackTop;
352 if (stackTop == 0) {
370 else if (stackTop == 1 && diffL == 0) {
379 else if (stackTop == 2 && diffL == 0) {
389 int[] sdata = new int[stackTop];
[all...]
H A DTypedBlock.java21 public int stackTop, numLocals; field in class:TypedBlock
69 printTypes(sbuf, stackTop, stackTypes);
101 stackTop = st;
154 stackTop = 0;
/external/valgrind/main/coregrind/
H A Dm_oset.c122 Int stackTop; // Iterator stack pointer, one past end member in struct:_OSet
249 t->stackTop = 0;
255 vg_assert(t->stackTop < STACK_MAX);
257 t->nodeStack[t->stackTop] = n;
258 t-> numStack[t->stackTop] = i;
259 t->stackTop++;
265 vg_assert(t->stackTop <= STACK_MAX);
267 if (t->stackTop > 0) {
268 t->stackTop--;
269 *n = t->nodeStack[t->stackTop];
[all...]
H A Dm_wordfm.c90 Int stackTop; // Iterator stack pointer, one past end member in struct:_WordFM
470 fm->stackTop = 0;
476 tl_assert(fm->stackTop < WFM_STKMAX);
478 fm->nodeStack[fm->stackTop] = n;
479 fm-> numStack[fm->stackTop] = i;
480 fm->stackTop++;
486 tl_assert(fm->stackTop <= WFM_STKMAX);
488 if (fm->stackTop > 0) {
489 fm->stackTop--;
490 *n = fm->nodeStack[fm->stackTop];
[all...]
/external/valgrind/main/cachegrind/
H A Dcg_merge.c992 Int stackTop; // Iterator stack pointer, one past end member in struct:_WordFM
1301 fm->stackTop = 0;
1307 assert(fm->stackTop < WFM_STKMAX);
1309 fm->nodeStack[fm->stackTop] = n;
1310 fm-> numStack[fm->stackTop] = i;
1311 fm->stackTop++;
1317 assert(fm->stackTop <= WFM_STKMAX);
1319 if (fm->stackTop > 0) {
1320 fm->stackTop--;
1321 *n = fm->nodeStack[fm->stackTop];
[all...]
/external/icu4c/common/
H A Dubidi.c615 UBiDiLevel embeddingLevel=level, newLevel, stackTop=0; local
631 stack[stackTop]=embeddingLevel;
632 ++stackTop;
653 stack[stackTop]=embeddingLevel;
654 ++stackTop;
676 } else if(stackTop>0) {
678 --stackTop;
679 embeddingLevel=stack[stackTop];
685 stackTop=0;

Completed in 761 milliseconds