Lines Matching refs:offset

144                 int offset = ByteArray.readU16bit(info, pos);
146 pos = locals(pos + 4, offset, numLoc);
148 pos = stack(pos + 2, offset, numStack);
156 public int locals(int pos, int offset, int num) {
157 return typeInfoArray(pos, offset, num, true);
164 public int stack(int pos, int offset, int num) {
165 return typeInfoArray(pos, offset, num, false);
176 public int typeInfoArray(int pos, int offset, int num, boolean isLocals) {
220 public void uninitialized(int pos, int offset) {}
242 public int locals(int pos, int offset, int num) {
243 ByteArray.write16bit(offset, dest, pos - 4);
244 return super.locals(pos, offset, num);
247 public int typeInfoArray(int pos, int offset, int num, boolean isLocals) {
249 return super.typeInfoArray(pos, offset, num, isLocals);
262 public void uninitialized(int pos, int offset) {
264 ByteArray.write16bit(offset, dest, pos + 1);
313 public int locals(int pos, int offset, int num) {
314 writer.write16bit(offset);
315 return super.locals(pos, offset, num);
318 public int typeInfoArray(int pos, int offset, int num, boolean isLocals) {
320 return super.typeInfoArray(pos, offset, num, isLocals);
331 public void uninitialized(int pos, int offset) {
332 writer.writeVerifyTypeInfo(UNINIT, offset);
347 public int typeInfoArray(int pos, int offset, int num, boolean isLocals) {
349 return super.typeInfoArray(pos, offset, num, isLocals);
392 public int locals(int pos, int offset, int num) {
393 if (exclusive ? where <= offset : where < offset)
394 ByteArray.write16bit(offset + gap, info, pos - 4);
396 return super.locals(pos, offset, num);
422 public int stack(int pos, int offset, int num) {
423 return stackTypeInfoArray(pos, offset, num);
426 private int stackTypeInfoArray(int pos, int offset, int num) {
490 public int locals(int pos, int offset, int num) {
491 writer.println(" * offset " + offset);
492 return super.locals(pos, offset, num);
528 * @param data <code>cpool_index</code> or <code>offset</code>.