Lines Matching full:target
104 int target = index + ci.s16bitAt(index + 1);
105 checkTarget(index, target, codeLength, stack, stackDepth);
108 int target, index2;
111 target = index + ci.s16bitAt(index + 1);
112 checkTarget(index, target, codeLength, stack, stackDepth);
115 target = index + ci.s32bitAt(index + 1);
116 checkTarget(index, target, codeLength, stack, stackDepth);
121 target = index + ci.s16bitAt(index + 1);
123 target = index + ci.s32bitAt(index + 1);
125 checkTarget(index, target, codeLength, stack, stackDepth);
157 target = index + ci.s32bitAt(index2);
158 checkTarget(index, target, codeLength, stack, stackDepth);
163 target = index + ci.s32bitAt(index2);
164 checkTarget(index, target, codeLength,
175 target = index + ci.s32bitAt(index2);
176 checkTarget(index, target, codeLength,
189 private void checkTarget(int opIndex, int target, int codeLength,
193 if (target < 0 || codeLength <= target)
196 int d = stack[target];
198 stack[target] = -stackDepth;