Home | History | Annotate | Download | only in src

Lines Matching refs:Address

16   static uint8_t& uint8_at(Address addr) {
20 static uint16_t& uint16_at(Address addr) {
24 static uint32_t& uint32_at(Address addr) {
28 static int32_t& int32_at(Address addr) {
32 static uint64_t& uint64_at(Address addr) {
36 static int& int_at(Address addr) {
40 static unsigned& unsigned_at(Address addr) {
44 static intptr_t& intptr_at(Address addr) {
48 static uintptr_t& uintptr_at(Address addr) {
52 static double& double_at(Address addr) {
56 static Address& Address_at(Address addr) {
57 return *reinterpret_cast<Address*>(addr);
60 static Object*& Object_at(Address addr) {
64 static Handle<Object>& Object_Handle_at(Address addr) {
68 static bool IsAddressInRange(Address base, Address address, uint32_t size) {
70 uintptr_t numeric_address = reinterpret_cast<uintptr_t>(address);