Home
last modified time | relevance | path

Searched refs:newAddress (Results 1 – 25 of 591) sorted by relevance

12345678910>>...24

/dports/emulators/ppsspp-qt5/ppsspp-1.12.3/Windows/GEDebugger/
H A DCtrlDisplayListView.h67 u32 newAddress = addr&(~(instructionSize-1)); in gotoAddr() local
69 if (newAddress < windowStart || newAddress >= windowEnd) in gotoAddr()
71 windowStart = newAddress-visibleRows/2*instructionSize; in gotoAddr()
74 setCurAddress(newAddress); in gotoAddr()
78 void setCurAddress(u32 newAddress, bool extend = false)
80 u32 after = newAddress + instructionSize;
81 curAddress = newAddress;
82 selectRangeStart = extend ? std::min(selectRangeStart, newAddress) : newAddress;
H A DCtrlDisplayListView.cpp273 u32 newAddress = windowStart + line*instructionSize; in onMouseDown() local
278 if (newAddress == curAddress && hasFocus) in onMouseDown()
285 if (newAddress >= selectRangeStart && newAddress < selectRangeEnd) in onMouseDown()
289 setCurAddress(newAddress,extend); in onMouseDown()
372 u32 newAddress = curAddress; in onMouseUp() local
373 if (!InputBox_GetHex(GetModuleHandle(NULL), wnd, L"Address", curAddress, newAddress)) { in onMouseUp()
376 if (Memory::IsValidAddress(newAddress)) { in onMouseUp()
377 setCurAddress(newAddress); in onMouseUp()
/dports/emulators/ppsspp/ppsspp-1.12.3/Windows/GEDebugger/
H A DCtrlDisplayListView.h67 u32 newAddress = addr&(~(instructionSize-1)); in gotoAddr() local
69 if (newAddress < windowStart || newAddress >= windowEnd) in gotoAddr()
71 windowStart = newAddress-visibleRows/2*instructionSize; in gotoAddr()
74 setCurAddress(newAddress); in gotoAddr()
78 void setCurAddress(u32 newAddress, bool extend = false)
80 u32 after = newAddress + instructionSize;
81 curAddress = newAddress;
82 selectRangeStart = extend ? std::min(selectRangeStart, newAddress) : newAddress;
H A DCtrlDisplayListView.cpp273 u32 newAddress = windowStart + line*instructionSize; in onMouseDown() local
278 if (newAddress == curAddress && hasFocus) in onMouseDown()
285 if (newAddress >= selectRangeStart && newAddress < selectRangeEnd) in onMouseDown()
289 setCurAddress(newAddress,extend); in onMouseDown()
372 u32 newAddress = curAddress; in onMouseUp() local
373 if (!InputBox_GetHex(GetModuleHandle(NULL), wnd, L"Address", curAddress, newAddress)) { in onMouseUp()
376 if (Memory::IsValidAddress(newAddress)) { in onMouseUp()
377 setCurAddress(newAddress); in onMouseUp()
/dports/emulators/libretro-ppsspp/ppsspp-1.12.3/Windows/GEDebugger/
H A DCtrlDisplayListView.h67 u32 newAddress = addr&(~(instructionSize-1)); in gotoAddr() local
69 if (newAddress < windowStart || newAddress >= windowEnd) in gotoAddr()
71 windowStart = newAddress-visibleRows/2*instructionSize; in gotoAddr()
74 setCurAddress(newAddress); in gotoAddr()
78 void setCurAddress(u32 newAddress, bool extend = false)
80 u32 after = newAddress + instructionSize;
81 curAddress = newAddress;
82 selectRangeStart = extend ? std::min(selectRangeStart, newAddress) : newAddress;
H A DCtrlDisplayListView.cpp273 u32 newAddress = windowStart + line*instructionSize; in onMouseDown() local
278 if (newAddress == curAddress && hasFocus) in onMouseDown()
285 if (newAddress >= selectRangeStart && newAddress < selectRangeEnd) in onMouseDown()
289 setCurAddress(newAddress,extend); in onMouseDown()
372 u32 newAddress = curAddress; in onMouseUp() local
373 if (!InputBox_GetHex(GetModuleHandle(NULL), wnd, L"Address", curAddress, newAddress)) { in onMouseUp()
376 if (Memory::IsValidAddress(newAddress)) { in onMouseUp()
377 setCurAddress(newAddress); in onMouseUp()
/dports/irc/smuxi/smuxi-1.1/lib/db4o-net/Db4objects.Db4o/Db4objects.Db4o/IO/
H A DIoAdapter.cs33 public virtual void BlockCopy(int oldAddress, int oldAddressOffset, int newAddress in BlockCopy() argument
36 Copy(RegularAddress(oldAddress, oldAddressOffset), RegularAddress(newAddress, newAddressOffset in BlockCopy()
70 public virtual void Copy(long oldAddress, long newAddress, int length) in Copy() argument
74 DTrace.IoCopy.LogLength(newAddress, length); in Copy()
82 Copy(buffer, oldAddress + pos, newAddress + pos); in Copy()
86 newAddress += pos; in Copy()
89 Copy(new byte[length], oldAddress, newAddress); in Copy()
93 private void Copy(byte[] buffer, long oldAddress, long newAddress) in Copy() argument
97 Seek(newAddress); in Copy()
H A DBlockAwareBin.cs38 public virtual void BlockCopy(int oldAddress, int oldAddressOffset, int newAddress in BlockCopy() argument
41 Copy(RegularAddress(oldAddress, oldAddressOffset), RegularAddress(newAddress, newAddressOffset in BlockCopy()
47 public virtual void Copy(long oldAddress, long newAddress, int length) in Copy() argument
51 DTrace.IoCopy.LogLength(newAddress, length); in Copy()
59 Copy(buffer, oldAddress + pos, newAddress + pos); in Copy()
63 newAddress += pos; in Copy()
66 Copy(new byte[length], oldAddress, newAddress); in Copy()
70 private void Copy(byte[] buffer, long oldAddress, long newAddress) in Copy() argument
/dports/emulators/ppsspp-qt5/ppsspp-1.12.3/Windows/Debugger/
H A DCtrlDisAsmView.h128 u32 newAddress = manager.getStartAddress(addr); in gotoAddr() local
130 if (newAddress < windowStart || newAddress >= windowEnd) in gotoAddr()
132 windowStart = manager.getNthPreviousAddress(newAddress,visibleRows/2); in gotoAddr()
135 setCurAddress(newAddress); in gotoAddr()
167 void setCurAddress(u32 newAddress, bool extend = false)
169 newAddress = manager.getStartAddress(newAddress);
170 u32 after = manager.getNthNextAddress(newAddress,1);
171 curAddress = newAddress;
172 selectRangeStart = extend ? std::min(selectRangeStart, newAddress) : newAddress;
/dports/emulators/ppsspp/ppsspp-1.12.3/Windows/Debugger/
H A DCtrlDisAsmView.h128 u32 newAddress = manager.getStartAddress(addr); in gotoAddr() local
130 if (newAddress < windowStart || newAddress >= windowEnd) in gotoAddr()
132 windowStart = manager.getNthPreviousAddress(newAddress,visibleRows/2); in gotoAddr()
135 setCurAddress(newAddress); in gotoAddr()
167 void setCurAddress(u32 newAddress, bool extend = false)
169 newAddress = manager.getStartAddress(newAddress);
170 u32 after = manager.getNthNextAddress(newAddress,1);
171 curAddress = newAddress;
172 selectRangeStart = extend ? std::min(selectRangeStart, newAddress) : newAddress;
/dports/emulators/libretro-ppsspp/ppsspp-1.12.3/Windows/Debugger/
H A DCtrlDisAsmView.h128 u32 newAddress = manager.getStartAddress(addr); in gotoAddr() local
130 if (newAddress < windowStart || newAddress >= windowEnd) in gotoAddr()
132 windowStart = manager.getNthPreviousAddress(newAddress,visibleRows/2); in gotoAddr()
135 setCurAddress(newAddress); in gotoAddr()
167 void setCurAddress(u32 newAddress, bool extend = false)
169 newAddress = manager.getStartAddress(newAddress);
170 u32 after = manager.getNthNextAddress(newAddress,1);
171 curAddress = newAddress;
172 selectRangeStart = extend ? std::min(selectRangeStart, newAddress) : newAddress;
/dports/devel/arcanist-lib/arcanist-b2e715f/src/ip/__tests__/
H A DPhutilIPAddressTestCase.php31 PhutilIPAddress::newAddress($input);
72 PhutilIPAddress::newAddress($input);
95 $actual = PhutilIPAddress::newAddress($input)->toBits();
124 PhutilIPAddress::newAddress('192.0.2.128')->toBits(),
143 $actual = PhutilIPAddress::newAddress($input)->toBits();
177 $actual = PhutilIPAddress::newAddress($input)->getAddress();
/dports/devel/arcanist/arcanist-b2e715f/src/ip/__tests__/
H A DPhutilIPAddressTestCase.php31 PhutilIPAddress::newAddress($input);
72 PhutilIPAddress::newAddress($input);
95 $actual = PhutilIPAddress::newAddress($input)->toBits();
124 PhutilIPAddress::newAddress('192.0.2.128')->toBits(),
143 $actual = PhutilIPAddress::newAddress($input)->toBits();
177 $actual = PhutilIPAddress::newAddress($input)->getAddress();
/dports/security/vault/vault-1.8.2/vendor/github.com/apple/foundationdb/packaging/
H A Dmake_public.py59 def makePublic(clusterFile, newAddress, makeTLS): argument
60 newAddress = getOrValidateAddress(newAddress)
84 clusterStr = clusterStr.replace('127.0.0.1', newAddress)
93 return newAddress, clusterStr.count(":tls") != 0
/dports/devel/arduino-core/Arduino-b439a77/hardware/arduino/avr/bootloaders/optiboot/
H A Doptiboot.c359 uint16_t newAddress; in main() local
360 newAddress = getch(); in main()
361 newAddress = (newAddress & 0xff) | (getch() << 8); in main()
364 RAMPZ = (newAddress & 0x8000) ? 1 : 0; in main()
366 newAddress += newAddress; // Convert from word address to byte address in main()
367 address = newAddress; in main()
/dports/net/socketapi/socketapi-2.2.19/cppsocketapi/
H A Dtdsocket.cc787 sockaddr_in6 newAddress = *socketAddress; in send() local
788 newAddress.sin6_flowinfo = htonl((ntohl(newAddress.sin6_flowinfo) in send()
847 sockaddr_in6 newAddress = *socketAddress; in sendTo() local
848 newAddress.sin6_flowinfo = htonl((ntohl(newAddress.sin6_flowinfo) in sendTo()
1360 (newAddress->isUnspecified()) ) { in filterInternetAddress()
1478 if(newAddress == NULL) { in getLocalAddressList()
1488 delete newAddress; in getLocalAddressList()
1568 InternetAddress* newAddress = in getLocalAddressList() local
1572 if(newAddress == NULL) { in getLocalAddressList()
1578 delete newAddress; in getLocalAddressList()
[all …]
/dports/devel/okteta/okteta-0.26.6/kasten/controllers/view/structures/datatypes/primitive/
H A Dpointerdatainformation.cpp97 Okteta::Address newAddress(pointer); in delayedReadData() local
99 if (newAddress < 0 || newAddress >= input->size()) { in delayedReadData()
111 …mPointerTarget->readData(input, newAddress, BitCount64(input->size() - newAddress) * 8, &childBitO… in delayedReadData()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.Primitives/src/System/Net/
H A DIPAddress.cs116 public IPAddress(long newAddress) in IPAddress() argument
118 if (newAddress < 0 || newAddress > 0x00000000FFFFFFFF) in IPAddress()
120 throw new ArgumentOutOfRangeException(nameof(newAddress)); in IPAddress()
123 PrivateAddress = (uint)newAddress; in IPAddress()
217 internal IPAddress(int newAddress) in IPAddress() argument
219 PrivateAddress = (uint)newAddress; in IPAddress()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/java.base/share/classes/sun/nio/ch/
H A DNativeObject.java124 long newAddress = 0L; in getObject() local
127 newAddress = unsafe.getLong(offset + address); in getObject()
130 newAddress = unsafe.getInt(offset + address) & 0x00000000FFFFFFFF; in getObject()
136 return new NativeObject(newAddress); in getObject()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/java.base/share/classes/sun/nio/ch/
H A DNativeObject.java124 long newAddress = 0L; in getObject() local
127 newAddress = unsafe.getLong(offset + address); in getObject()
130 newAddress = unsafe.getInt(offset + address) & 0x00000000FFFFFFFF; in getObject()
136 return new NativeObject(newAddress); in getObject()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/java.base/share/classes/sun/nio/ch/
H A DNativeObject.java124 long newAddress = 0L; in getObject() local
127 newAddress = unsafe.getLong(offset + address); in getObject()
130 newAddress = unsafe.getInt(offset + address) & 0x00000000FFFFFFFF; in getObject()
136 return new NativeObject(newAddress); in getObject()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jdk/src/share/classes/sun/nio/ch/
H A DNativeObject.java124 long newAddress = 0L; in getObject() local
127 newAddress = unsafe.getLong(offset + address); in getObject()
130 newAddress = unsafe.getInt(offset + address) & 0x00000000FFFFFFFF; in getObject()
136 return new NativeObject(newAddress); in getObject()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/java.base/share/classes/sun/nio/ch/
H A DNativeObject.java124 long newAddress = 0L; in getObject() local
127 newAddress = unsafe.getLong(offset + address); in getObject()
130 newAddress = unsafe.getInt(offset + address) & 0x00000000FFFFFFFF; in getObject()
136 return new NativeObject(newAddress); in getObject()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/java.base/share/classes/sun/nio/ch/
H A DNativeObject.java124 long newAddress = 0L; in getObject() local
127 newAddress = unsafe.getLong(offset + address); in getObject()
130 newAddress = unsafe.getInt(offset + address) & 0x00000000FFFFFFFF; in getObject()
136 return new NativeObject(newAddress); in getObject()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/java.base/share/classes/sun/nio/ch/
H A DNativeObject.java124 long newAddress = 0L; in getObject() local
127 newAddress = unsafe.getLong(offset + address); in getObject()
130 newAddress = unsafe.getInt(offset + address) & 0x00000000FFFFFFFF; in getObject()
136 return new NativeObject(newAddress); in getObject()

12345678910>>...24