Lines Matching refs:loopDepth
1121 return aL[loopDepth]; in relativeAddress()
1552 aL[loopDepth] = aL[loopDepth] + increment[loopDepth]; // FIXME: += in ENDLOOP()
1560 loopDepth--; in ENDLOOP()
1574 loopDepth--; in ENDREP()
1705 loopDepth++; in LOOP()
1707 iteration[loopDepth] = *Pointer<Int>(data + OFFSET(DrawData, ps.i[integerRegister.index][0])); in LOOP()
1708 aL[loopDepth] = *Pointer<Int>(data + OFFSET(DrawData, ps.i[integerRegister.index][1])); in LOOP()
1709 increment[loopDepth] = *Pointer<Int>(data + OFFSET(DrawData, ps.i[integerRegister.index][2])); in LOOP()
1727 branch(iteration[loopDepth] > 0, loopBlock, endBlock); in LOOP()
1730 iteration[loopDepth] = iteration[loopDepth] - 1; // FIXME: -- in LOOP()
1737 loopDepth++; in REP()
1739 iteration[loopDepth] = *Pointer<Int>(data + OFFSET(DrawData, ps.i[integerRegister.index][0])); in REP()
1740 aL[loopDepth] = aL[loopDepth - 1]; in REP()
1753 branch(iteration[loopDepth] > 0, loopBlock, endBlock); in REP()
1756 iteration[loopDepth] = iteration[loopDepth] - 1; // FIXME: -- in REP()