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

123

/openjdk9/hotspot/src/jdk.hotspot.agent/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.java354 public long cIntegerTypeMaxValue(long sizeInBytes, boolean isUnsigned) { argument
355 return machDesc.cIntegerTypeMaxValue(sizeInBytes, isUnsigned);
358 public long cIntegerTypeMinValue(long sizeInBytes, boolean isUnsigned) { argument
359 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());
/openjdk9/hotspot/src/jdk.hotspot.agent/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.java354 public long readCInteger(long address, long numBytes, boolean isUnsigned) argument
359 if (isUnsigned) {
367 return utils.dataToCInteger(data, isUnsigned);
378 return utils.dataToCInteger(data, isUnsigned);
384 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) &&
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/debugger/cdbg/
H A DIntType.java32 public boolean isUnsigned(); method in interface:IntType
/openjdk9/hotspot/src/jdk.hotspot.agent/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
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/oops/
H A DCIntField.java36 isUnsigned = ((sun.jvm.hotspot.types.CIntegerType) vmField.getType()).isUnsigned();
40 private boolean isUnsigned; field in class:CIntField
49 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.java78 return cp.getAddress().getCIntegerAt(indices.getOffset() + offset, indices.getSize(), indices.isUnsigned());
/openjdk9/hotspot/src/jdk.hotspot.agent/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());
/openjdk9/jdk/test/javax/sound/sampled/Mixers/
H A DBothEndiansAndSigns.java108 boolean isUnsigned = format.getEncoding().equals(AudioFormat.Encoding.PCM_UNSIGNED);
109 if ((isSigned || isUnsigned) && format.getSampleSizeInBits() > 0) {
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/debugger/linux/
H A DLinuxDebugger.java45 public long readCInteger(long address, long numBytes, boolean isUnsigned) argument
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/debugger/windbg/
H A DWindbgDebugger.java45 public long readCInteger(long address, long numBytes, boolean isUnsigned) argument
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/debugger/proc/
H A DProcDebugger.java46 public long readCInteger(long address, long numBytes, boolean isUnsigned) argument
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/debugger/bsd/
H A DBsdDebugger.java45 public long readCInteger(long address, long numBytes, boolean isUnsigned) argument
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/
H A DHotSpotTypeDataBase.java192 boolean isUnsigned = (entryAddr.getCIntegerAt(typeEntryIsUnsignedOffset, C_INT32_SIZE, false) != 0);
195 createType(typeName, superclassName, isOopType, isIntegerType, isUnsigned, size);
328 boolean isUnsigned = Boolean.valueOf(t.sval).booleanValue();
344 if (type.isCIntegerType() && (((CIntegerType)type).isUnsigned()) != isUnsigned) {
374 createType(typeName, superclassName, isOop, isInteger, isUnsigned, size);
630 boolean isIntegerType, boolean isUnsigned) {
634 type = createBasicType(typeName, isOopType, isIntegerType, isUnsigned);
644 boolean isIntegerType, boolean isUnsigned) {
649 type = new BasicCIntegerType(this, typeName, isUnsigned);
629 lookupOrCreateClass(String typeName, boolean isOopType, boolean isIntegerType, boolean isUnsigned) argument
643 createBasicType(String typeName, boolean isOopType, boolean isIntegerType, boolean isUnsigned) argument
739 createType(String typeName, String superclassName, boolean isOopType, boolean isIntegerType, boolean isUnsigned, long size) argument
[all...]
/openjdk9/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/arrays/
H A DTypedArrayData.java68 public boolean isUnsigned() { method in class:TypedArrayData

Completed in 139 milliseconds

123