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

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DProfileData.java58 int intAt(int index) { method in class:ProfileData
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DStackValueCollection.java48 public int intAt(int slot) { return (int) get(slot).getInteger(); } method in class:StackValueCollection
52 public float floatAt(int slot) { return Float.intBitsToFloat(intAt(slot)); }
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/model/
H A DJavaLazyReadObject.java122 return ((long)intAt(index, data)) & Snapshot.SMALL_ID_MASK;
149 protected static int intAt(int index, byte[] value) { method in class:JavaLazyReadObject
168 int val = intAt(index, value);
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DInstruction.java241 public int getDefaultLabel() { return intAt(0)+pc; }
245 protected int intAt(int n) { return getInt(bytes, apc + n*4); } method in class:Instruction.Switch
271 public int getLowCase() { return intAt(1); }
272 public int getHighCase() { return intAt(2); }
273 public int getCaseCount() { return intAt(2)-intAt(1)+1; }
275 public int getCaseLabel(int n) { return intAt(3+n)+pc; }
301 public int getCaseCount() { return intAt(1); }
302 public int getCaseValue(int n) { return intAt(2+n*2+0); }
303 public int getCaseLabel(int n) { return intAt(
[all...]

Completed in 40 milliseconds