Home
last modified time | relevance | path

Searched refs:bytes_allocated (Results 1 – 21 of 21) sorted by relevance

/external/tensorflow/tensorflow/core/common_runtime/
Dscoped_allocator.cc103 << field->bytes_allocated; in AllocateRaw()
108 if (field->bytes_allocated > field->bytes_requested) { in AllocateRaw()
109 size_t extra_bytes = field->bytes_allocated - field->bytes_requested; in AllocateRaw()
111 field->bytes_allocated - extra_bytes); in AllocateRaw()
115 << field->bytes_allocated << ". Annotating " << extra_bytes in AllocateRaw()
Dscoped_allocator_mgr.cc183 size_t bytes_allocated = bytes_requested; in PopulateFields() local
187 bytes_allocated += alignment_bytes; in PopulateFields()
190 field->bytes_allocated = bytes_allocated; in PopulateFields()
195 << " bytes_allocated=" << field->bytes_allocated; in PopulateFields()
Dscoped_allocator.h39 size_t bytes_allocated; member
/external/tensorflow/tensorflow/core/common_runtime/sycl/
Dsycl_allocator.cc47 const std::size_t bytes_allocated = allocated_buffer.get_range().size(); in AllocateRaw() local
50 stats_.bytes_in_use += bytes_allocated; in AllocateRaw()
54 std::max<int64>(stats_.max_alloc_size, bytes_allocated); in AllocateRaw()
/external/v8/src/heap/
Dstress-marking-observer.h17 void Step(int bytes_allocated, Address soon_object, size_t size) override;
Dstress-marking-observer.cc15 void StressMarkingObserver::Step(int bytes_allocated, Address soon_object, in Step() argument
Dstress-scavenge-observer.h17 void Step(int bytes_allocated, Address soon_object, size_t size) override;
Dstress-scavenge-observer.cc29 void StressScavengeObserver::Step(int bytes_allocated, Address soon_object, in Step() argument
Dallocation-observer.h104 virtual void Step(int bytes_allocated, Address soon_object, size_t size) = 0;
Dincremental-marking.h235 void Step(int bytes_allocated, Address, size_t) override;
Dincremental-marking.cc40 void IncrementalMarking::Observer::Step(int bytes_allocated, Address addr, in Step() argument
Dheap.cc185 void Step(int bytes_allocated, Address, size_t) override { in Step() argument
5116 void Step(int bytes_allocated, Address, size_t) override { in Step() argument
/external/libtextclassifier/native/utils/grammar/
Dmatcher.h170 size_t ArenaSize() const { return arena_.status().bytes_allocated(); } in ArenaSize()
/external/v8/src/profiler/
Dsampling-heap-profiler.h140 void Step(int bytes_allocated, Address soon_object, size_t size) override { in Step() argument
/external/libtextclassifier/native/utils/base/
Darena.h91 size_t bytes_allocated() const { return bytes_allocated_; } in bytes_allocated() function
/external/tensorflow/tensorflow/core/kernels/
Dscoped_allocator_ops.cc42 size_t num_bytes = fields_.back().offset + fields_.back().bytes_allocated; in ScopedAllocatorOp()
Dscoped_allocator_ops_test.cc96 size_t num_bytes = fields->back().offset + fields->back().bytes_allocated; in PrepOp()
/external/e2fsprogs/lib/blkid/
Dprobe.h479 __u32 bytes_allocated; member
/external/protobuf/php/ext/google/protobuf/
Dupb.c5632 size_t bytes_allocated; member
5717 a->bytes_allocated += size; in upb_arena_doalloc()
5748 a->bytes_allocated = 0; in upb_arena_init()
5800 return a->bytes_allocated; in upb_arena_bytesallocated()
/external/protobuf/ruby/ext/google/protobuf_c/
Dupb.c7518 a->bytes_allocated += size; in upb_arena_doalloc()
7527 a->bytes_allocated = 0; in upb_arena_init()
7587 return a->bytes_allocated; in upb_arena_bytesallocated()
Dupb.h701 size_t bytes_allocated; variable