Home | History | Annotate | Download | only in platform

Lines Matching defs:address_

313   VirtualMemory(void* address, size_t size) : address_(address), size_(size) {}
331 return address_;
355 reinterpret_cast<size_t>(address_));
357 DCHECK_LT(address_, free_start);
359 reinterpret_cast<size_t>(address_) + size_));
360 bool result = ReleasePartialRegion(address_, size_, free_start, size);
370 void* address = address_;
383 address_ = from->address_;
411 return (reinterpret_cast<uintptr_t>(address_) <=
413 ((reinterpret_cast<uintptr_t>(address_) + size_) >=
417 void* address_; // Start address of the virtual memory.