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

12

/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DDirectAudioDevice.java114 boolean isUnsigned = format.getEncoding().equals(AudioFormat.Encoding.PCM_UNSIGNED);
115 if ((isSigned || isUnsigned)) {
127 boolean isUnsigned = format.getEncoding().equals(AudioFormat.Encoding.PCM_UNSIGNED);
138 else if (isUnsigned) {
145 } else if (bits > 8 && (isSigned || isUnsigned)) {
306 boolean isUnsigned = format.getEncoding().equals(AudioFormat.Encoding.PCM_UNSIGNED);
313 else if (format.getSampleSizeInBits() == 8 && (isSigned || isUnsigned)) {
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/bsd/
H A DBsdAddress.java67 public long getCIntegerAt(long offset, long numBytes, boolean isUnsigned) argument
69 return debugger.readCInteger(addr + offset, numBytes, isUnsigned);
H A DBsdDebuggerLocal.java479 public long readCInteger(long address, long numBytes, boolean isUnsigned) argument
490 return utils.dataToCInteger(data, isUnsigned);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/linux/
H A DLinuxAddress.java67 public long getCIntegerAt(long offset, long numBytes, boolean isUnsigned) argument
69 return debugger.readCInteger(addr + offset, numBytes, isUnsigned);
H A DLinuxDebuggerLocal.java472 public long readCInteger(long address, long numBytes, boolean isUnsigned) argument
483 return utils.dataToCInteger(data, isUnsigned);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/proc/
H A DProcAddress.java67 public long getCIntegerAt(long offset, long numBytes, boolean isUnsigned) throws UnalignedAddressException, UnmappedAddressException { argument
68 return debugger.readCInteger(addr + offset, numBytes, isUnsigned);
H A DProcDebuggerLocal.java322 public long readCInteger(long address, long numBytes, boolean isUnsigned) argument
338 return utils.dataToCInteger(data, isUnsigned);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/remote/
H A DRemoteAddress.java67 public long getCIntegerAt(long offset, long numBytes, boolean isUnsigned) throws UnalignedAddressException, UnmappedAddressException { argument
68 return debugger.readCInteger(addr + offset, numBytes, isUnsigned);
H A DRemoteDebuggerClient.java237 public long readCInteger(long address, long numBytes, boolean isUnsigned) argument
252 return utils.dataToCInteger(data, isUnsigned);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/windbg/
H A DWindbgAddress.java67 public long getCIntegerAt(long offset, long numBytes, boolean isUnsigned) throws UnalignedAddressException, UnmappedAddressException { argument
68 return debugger.readCInteger(addr + offset, numBytes, isUnsigned);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/dummy/
H A DDummyAddress.java71 public long getCIntegerAt(long offset, long numBytes, boolean isUnsigned) throws UnalignedAddressException, UnmappedAddressException { argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/
H A DCommandProcessor.java276 out.print(((CIntegerType)type).isUnsigned());
1071 new Command("type", "type [ type [ name super isOop isInteger isUnsigned size ] ]", true) {
1085 boolean isUnsigned = Boolean.valueOf(t.nextToken()).booleanValue();
1100 if (type.isCIntegerType() && (((CIntegerType)type).isUnsigned()) != isUnsigned) {
1130 db.createType(typeName, superclassName, isOop, isInteger, isUnsigned, size);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DVM.java176 return addr.getCIntegerAt(0, boolType.getSize(), boolType.isUnsigned())
/openjdk7/jdk/src/share/classes/sun/invoke/util/
H A DWrapper.java126 public boolean isUnsigned() { return format >= Format.BOOLEAN && format < Format.FLOAT; } method in class:Wrapper
/openjdk7/hotspot/src/share/vm/runtime/
H A DvmStructs.cpp3143 ASSIGN_OFFSET_TO_64BIT_VAR(gHotSpotVMTypeEntryIsUnsignedOffset, VMTypeEntry, isUnsigned);

Completed in 98 milliseconds

12