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

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/
H A DMachineDescription.java43 public long cIntegerTypeMaxValue(long sizeInBytes, boolean isUnsigned); argument
49 public long cIntegerTypeMinValue(long sizeInBytes, boolean isUnsigned); argument
H A DMachineDescriptionTwosComplement.java57 public long cIntegerTypeMaxValue(long sizeInBytes, boolean isUnsigned) { argument
63 return tableLookup(sizeInBytes, unsignedMaxValues);
65 return tableLookup(sizeInBytes, signedMaxValues);
69 public long cIntegerTypeMinValue(long sizeInBytes, boolean isUnsigned) { argument
74 return tableLookup(sizeInBytes, signedMinValues);
82 private long tableLookup(long sizeInBytes, long[] table) { argument
83 switch ((int) sizeInBytes) {
93 throw new IllegalArgumentException("C integer type of " + sizeInBytes + " not supported");
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/cdbg/basic/
H A DBasicArrayType.java34 public BasicArrayType(String name, Type elementType, int sizeInBytes) { argument
35 this(name, elementType, sizeInBytes, 0, 0);
38 private BasicArrayType(String name, Type elementType, int sizeInBytes, int length, int cvAttributes) { argument
39 super(name, sizeInBytes, cvAttributes);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DProfileData.java45 public int sizeInBytes() { method in class:ProfileData
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/memory/
H A DCompactibleFreeListSpace.java211 public static long adjustObjectSizeInBytes(long sizeInBytes) { argument
212 return Oop.alignObjectSize(Math.max(sizeInBytes, MinChunkSizeInBytes));
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/types/basic/
H A DBasicType.java117 public void setSize(long sizeInBytes) { argument
118 this.size = sizeInBytes;
H A DBasicTypeDataBase.java349 public long cIntegerTypeMaxValue(long sizeInBytes, boolean isUnsigned) { argument
350 return machDesc.cIntegerTypeMaxValue(sizeInBytes, isUnsigned);
353 public long cIntegerTypeMinValue(long sizeInBytes, boolean isUnsigned) { argument
354 return machDesc.cIntegerTypeMinValue(sizeInBytes, isUnsigned);

Completed in 41 milliseconds