Lines Matching refs:loopDepth
1096 return aL[loopDepth]; in relativeAddress()
1521 aL[loopDepth] = aL[loopDepth] + increment[loopDepth]; // FIXME: += in ENDLOOP()
1529 loopDepth--; in ENDLOOP()
1543 loopDepth--; in ENDREP()
1674 loopDepth++; in LOOP()
1676 iteration[loopDepth] = *Pointer<Int>(data + OFFSET(DrawData, ps.i[integerRegister.index][0])); in LOOP()
1677 aL[loopDepth] = *Pointer<Int>(data + OFFSET(DrawData, ps.i[integerRegister.index][1])); in LOOP()
1678 increment[loopDepth] = *Pointer<Int>(data + OFFSET(DrawData, ps.i[integerRegister.index][2])); in LOOP()
1696 branch(iteration[loopDepth] > 0, loopBlock, endBlock); in LOOP()
1699 iteration[loopDepth] = iteration[loopDepth] - 1; // FIXME: -- in LOOP()
1706 loopDepth++; in REP()
1708 iteration[loopDepth] = *Pointer<Int>(data + OFFSET(DrawData, ps.i[integerRegister.index][0])); in REP()
1709 aL[loopDepth] = aL[loopDepth - 1]; in REP()
1722 branch(iteration[loopDepth] > 0, loopBlock, endBlock); in REP()
1725 iteration[loopDepth] = iteration[loopDepth] - 1; // FIXME: -- in REP()