Lines Matching defs:Address
103 typedef uintptr_t Address;
104 static const Address kNullAddress = 0;
264 // FUNCTION_ADDR(f) gets the address of a C function f.
265 #define FUNCTION_ADDR(f) (reinterpret_cast<v8::internal::Address>(f))
267 // FUNCTION_CAST<F>(addr) casts an address into a function
271 return reinterpret_cast<F>(reinterpret_cast<Address>(addr));
275 F FUNCTION_CAST(Address addr) {
287 (reinterpret_cast<v8::internal::Address*>( \
686 typedef bool (*ConstraintCallback)(Address new_addr, Address old_addr);
691 typedef void (*InlineCacheCallback)(Code* code, Address ic);
1257 inline uint32_t ObjectHash(Address address) {
1260 return static_cast<uint32_t>(address >> kPointerSizeLog2);
1512 #define DECLARE_ENUM(CamelName, hacker_name) k##CamelName##Address,