Lines Matching full:address
87 NewSpacePageIterator::NewSpacePageIterator(Address start, Address limit)
156 void MemoryAllocator::Protect(Address start, size_t size) {
161 void MemoryAllocator::Unprotect(Address start, size_t size,
169 base::OS::Protect(chunks_[id].address(), chunks_[id].size());
175 base::OS::Unprotect(chunks_[id].address(), chunks_[id].size(),
209 bool PagedSpace::Contains(Address addr) {
216 bool PagedSpace::Contains(HeapObject* o) { return Contains(o->address()); }
231 MemoryChunk* MemoryChunk::FromAnyPointerAddress(Heap* heap, Address addr) {
240 MemoryChunk* chunk = MemoryChunk::FromAddress(o->address());
285 MemoryChunk* answer = MemoryChunk::FromAddress(heap_object->address());
315 Address current_top = allocation_info_.top();
316 Address new_top = current_top + size_in_bytes;
326 Address current_top = allocation_info_.top();
329 Address new_top = current_top + filler_size + size_in_bytes;
344 Address current_top = allocation_info_.top();
347 Address new_top = current_top + filler_size + *size_in_bytes;
374 SkipList::Update(object->address(), size_in_bytes);
376 MSAN_ALLOCATED_UNINITIALIZED_MEMORY(object->address(), size_in_bytes);
417 MSAN_ALLOCATED_UNINITIALIZED_MEMORY(object->address(), allocation_size);
443 Address top = allocation_info_.top();
466 MSAN_ALLOCATED_UNINITIALIZED_MEMORY(obj->address(), size_in_bytes);
473 Address top = allocation_info_.top();
487 MSAN_ALLOCATED_UNINITIALIZED_MEMORY(obj->address(), size_in_bytes);
536 Address top = HeapObject::cast(obj)->address();