Searched defs:apc (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DInstruction.java244 protected int apc; // aligned pc (table base) field in class:Instruction.Switch
245 protected int intAt(int n) { return getInt(bytes, apc + n*4); }
246 protected void setIntAt(int n, int x) { setInt(bytes, apc + n*4, x); }
249 this.apc = alignPC(pc+1);
253 public int getAlignedPC() { return apc; }
263 public static int alignPC(int apc) { argument
264 while (apc % 4 != 0) ++apc;
265 return apc;
270 // apc
[all...]

Completed in 31 milliseconds