Searched refs:isUnsigned (Results 1 - 25 of 40) sorted by relevance

12

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/types/basic/
H A DBasicCIntegerType.java35 private boolean isUnsigned; field in class:BasicCIntegerType
37 public BasicCIntegerType(BasicTypeDataBase db, String name, boolean isUnsigned) { argument
40 this.isUnsigned = isUnsigned;
54 if (isUnsigned != arg.isUnsigned) {
63 if (isUnsigned) {
78 public boolean isUnsigned() { method in class:BasicCIntegerType
79 return isUnsigned;
84 public void setIsUnsigned(boolean isUnsigned) { argument
[all...]
H A DBasicCIntegerField.java47 public boolean isUnsigned() { method in class:BasicCIntegerField
48 return intType.isUnsigned();
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);
H A DBasicField.java162 return addr.getCIntegerAt(offset, type.getSize(), type.isUnsigned());
242 return staticFieldAddress.getCIntegerAt(0, type.getSize(), type.isUnsigned());
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/livejvm/
H A DCIntegerAccessor.java32 private boolean isUnsigned; field in class:CIntegerAccessor
34 CIntegerAccessor(Address addr, long numBytes, boolean isUnsigned) { argument
37 this.isUnsigned = isUnsigned;
41 return addr.getCIntegerAt(0, numBytes, isUnsigned);
/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
58 if (isUnsigned) {
69 public long cIntegerTypeMinValue(long sizeInBytes, boolean isUnsigned) { argument
70 if (isUnsigned) {
H A DAddress.java86 public long getCIntegerAt (long offset, long numBytes, boolean isUnsigned) argument
H A DDebuggerBase.java346 public long readCInteger(long address, long numBytes, boolean isUnsigned) argument
351 if (isUnsigned) {
359 return utils.dataToCInteger(data, isUnsigned);
370 return utils.dataToCInteger(data, isUnsigned);
376 return utils.dataToCInteger(data, isUnsigned);
H A DDebuggerUtilities.java153 public long dataToCInteger(byte[] data, boolean isUnsigned) { argument
161 // Therefore we need to check to see whether isUnsigned is false and
164 (isUnsigned == false) &&
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/cdbg/
H A DIntType.java32 public boolean isUnsigned(); method in interface:IntType
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/types/
H A DCIntegerType.java48 public boolean isUnsigned(); method in interface:CIntegerType
H A DCIntegerField.java35 public boolean isUnsigned(); method in interface:CIntegerField
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DCIntField.java35 isUnsigned = ((sun.jvm.hotspot.types.CIntegerType) vmField.getType()).isUnsigned();
39 private boolean isUnsigned; field in class:CIntField
42 return obj.getHandle().getCIntegerAt(getOffset(), size, isUnsigned);
45 return addr.getCIntegerAt(getOffset(), size, isUnsigned);
H A DArray.java93 boolean isUnsigned = true;
94 return this.getHandle().getCIntegerAt(lengthOffsetInBytes(), VM.getVM().getIntSize(), isUnsigned);
H A DConstantPoolCacheEntry.java89 return cp.getHandle().getCIntegerAt(indices.getOffset() + offset, indices.getSize(), indices.isUnsigned());
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/cdbg/basic/
H A DBasicIntType.java45 public boolean isUnsigned() { return unsigned; } method in class:BasicIntType
48 v.doInt(f, a.getCIntegerAt(0, getSize(), isUnsigned()));
52 return new BasicIntType(getName(), getSize(), isUnsigned(), cvAttributes);
H A DBasicBitType.java54 public boolean isUnsigned() { method in class:BasicBitType
56 return ((IntType) underlyingType).isUnsigned();
83 long val = ((a.getCIntegerAt(0, getSize(), isUnsigned())) >> getOffset()) & mask;
84 if (!isUnsigned()) {
H A DBasicEnumType.java64 public boolean isUnsigned() { method in class:BasicEnumType
66 return ((IntType) underlyingType).isUnsigned();
109 long val = a.getCIntegerAt(0, getSize(), isUnsigned());
/openjdk7/hotspot/src/share/vm/runtime/
H A DvmStructs.hpp84 int32_t isUnsigned; // If so, is it unsigned? member in struct:__anon457
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/bsd/
H A DBsdDebugger.java45 public long readCInteger(long address, long numBytes, boolean isUnsigned) argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/linux/
H A DLinuxDebugger.java45 public long readCInteger(long address, long numBytes, boolean isUnsigned) argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/proc/
H A DProcDebugger.java46 public long readCInteger(long address, long numBytes, boolean isUnsigned) argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/windbg/
H A DWindbgDebugger.java45 public long readCInteger(long address, long numBytes, boolean isUnsigned) argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/
H A DHotSpotTypeDataBase.java184 boolean isUnsigned = (entryAddr.getCIntegerAt(typeEntryIsUnsignedOffset, C_INT32_SIZE, false) != 0);
187 createType(typeName, superclassName, isOopType, isIntegerType, isUnsigned, size);
313 boolean isUnsigned = Boolean.valueOf(t.sval).booleanValue();
329 if (type.isCIntegerType() && (((CIntegerType)type).isUnsigned()) != isUnsigned) {
359 createType(typeName, superclassName, isOop, isInteger, isUnsigned, size);
592 boolean isIntegerType, boolean isUnsigned) {
596 type = createBasicType(typeName, isOopType, isIntegerType, isUnsigned);
606 boolean isIntegerType, boolean isUnsigned) {
611 type = new BasicCIntegerType(this, typeName, isUnsigned);
591 lookupOrCreateClass(String typeName, boolean isOopType, boolean isIntegerType, boolean isUnsigned) argument
605 createBasicType(String typeName, boolean isOopType, boolean isIntegerType, boolean isUnsigned) argument
697 createType(String typeName, String superclassName, boolean isOopType, boolean isIntegerType, boolean isUnsigned, long size) argument
[all...]

Completed in 82 milliseconds

12