Searched refs:andWithMask (Results 1 - 20 of 20) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/proc/
H A DProcOopHandle.java38 public Address andWithMask(long mask) throws UnsupportedOperationException { method in class:ProcOopHandle
39 throw new UnsupportedOperationException("andWithMask not applicable to OopHandles (i.e., anything but C addresses)");
H A DProcAddress.java258 public Address andWithMask(long mask) throws UnsupportedOperationException { method in class:ProcAddress
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/remote/
H A DRemoteOopHandle.java38 public Address andWithMask(long mask) throws UnsupportedOperationException { method in class:RemoteOopHandle
39 throw new UnsupportedOperationException("andWithMask not applicable to OopHandles (i.e., anything but C addresses)");
H A DRemoteAddress.java257 public Address andWithMask(long mask) throws UnsupportedOperationException { method in class:RemoteAddress
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/bsd/
H A DBsdOopHandle.java50 public Address andWithMask(long mask) throws UnsupportedOperationException { method in class:BsdOopHandle
51 throw new UnsupportedOperationException("andWithMask not applicable to OopHandles (i.e., anything but C addresses)");
H A DBsdAddress.java262 public Address andWithMask(long mask) throws UnsupportedOperationException { method in class:BsdAddress
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/dummy/
H A DDummyOopHandle.java52 public Address andWithMask(long mask) throws UnsupportedOperationException { method in class:DummyOopHandle
53 throw new UnsupportedOperationException("andWithMask not applicable to OopHandles (i.e., anything but C addresses)");
H A DDummyAddress.java250 public Address andWithMask(long mask) throws UnsupportedOperationException { method in class:DummyAddress
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/linux/
H A DLinuxOopHandle.java50 public Address andWithMask(long mask) throws UnsupportedOperationException { method in class:LinuxOopHandle
51 throw new UnsupportedOperationException("andWithMask not applicable to OopHandles (i.e., anything but C addresses)");
H A DLinuxAddress.java262 public Address andWithMask(long mask) throws UnsupportedOperationException { method in class:LinuxAddress
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/windbg/
H A DWindbgOopHandle.java50 public Address andWithMask(long mask) throws UnsupportedOperationException { method in class:WindbgOopHandle
51 throw new UnsupportedOperationException("andWithMask not applicable to OopHandles (i.e., anything but C addresses)");
H A DWindbgAddress.java267 public Address andWithMask(long mask) throws UnsupportedOperationException { method in class:WindbgAddress
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DBasicHashtableEntry.java70 Address next = (nextValue != null)? nextValue.andWithMask(-2L) : null;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/
H A DAddress.java195 public Address andWithMask(long mask) throws UnsupportedOperationException; method in interface:Address
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/memory/
H A DFreeChunk.java60 Address prev = prevField.getValue(addr).andWithMask(~0x3);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/sparc/
H A DSPARCFrame.java196 Assert.that((unBiasSP(raw_sp).andWithMask(VM.getVM().getAddressSize() - 1) == null),
199 Assert.that((unBiasSP(raw_youngerSP).andWithMask(VM.getVM().getAddressSize() - 1) == null),
257 Assert.that((unBiasSP(raw_sp).andWithMask(VM.getVM().getAddressSize() - 1) == null),
416 if (getFP() == null || (getFP().andWithMask(2 * VM.getVM().getAddressSize() - 1)) != null) {
419 if (getSP() == null || (getSP().andWithMask(2 * VM.getVM().getAddressSize() - 1)) != null) {
1016 return ((sp.andWithMask(mask) == null) &&
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DMark.java157 Address addr = valueAsAddress().andWithMask(~(biasedLockMaskInPlace & ageMaskInPlace));
224 Address addr = valueAsAddress().andWithMask(~monitorValue);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DRegisterMap.java193 if (src.andWithMask(VM.getVM().getAddressSize() - 1) != null) {
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/x86/
H A DX86Frame.java229 if (getFP() == null || getFP().andWithMask(0x3) != null) {
233 if (getSP() == null || getSP().andWithMask(0x3) != null) {
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/
H A DHSDB.java1017 Assert.that(addr.andWithMask(VM.getVM().getAddressSize() - 1) == null,
1026 Assert.that(addr.andWithMask(VM.getVM().getAddressSize() - 1) == null,

Completed in 58 milliseconds