Home
last modified time | relevance | path

Searched refs:next_alloc_offset_ (Results 1 – 4 of 4) sorted by relevance

/external/google-breakpad/src/client/mac/handler/
Dprotected_memory_allocator.cc40 next_alloc_offset_(0), in ProtectedMemoryAllocator()
63 if (valid_ && next_alloc_offset_ + bytes <= pool_size_) { in Allocate()
64 char *p = (char*)base_address_ + next_alloc_offset_; in Allocate()
65 next_alloc_offset_ += bytes; in Allocate()
Dprotected_memory_allocator.h66 vm_size_t GetAllocatedSize() { return next_alloc_offset_; } in GetAllocatedSize()
69 vm_size_t GetFreeSize() { return pool_size_ - next_alloc_offset_; } in GetFreeSize()
81 vm_size_t next_alloc_offset_; variable
/external/tensorflow/tensorflow/core/common_runtime/gpu/
Dgpu_virtual_mem_allocator.cc136 GpuDevicePtr next_va = vmem_.base + next_alloc_offset_; in Alloc()
166 next_alloc_offset_ += handle.bytes; in Alloc()
211 next_alloc_offset_ = mapping_it->va - vmem_.base; in Free()
Dgpu_virtual_mem_allocator.h95 size_t next_alloc_offset_ = 0; variable