Home
last modified time | relevance | path

Searched refs:first_blocks_ (Results 1 – 2 of 2) sorted by relevance

/external/tensorflow/tensorflow/core/lib/core/
Darena.cc53 first_blocks_[0].mem = in Arena()
56 first_blocks_[0].size = block_size_; in Arena()
66 port::AlignedFree(first_blocks_[i].mem); in ~Arena()
93 freestart_ = first_blocks_[0].mem; in Reset()
94 remaining_ = first_blocks_[0].size; in Reset()
139 if (blocks_alloced_ < TF_ARRAYSIZE(first_blocks_)) { in AllocNewBlock()
141 block = &first_blocks_[blocks_alloced_++]; in AllocNewBlock()
236 port::AlignedFree(first_blocks_[i].mem); in FreeBlocks()
237 first_blocks_[i].mem = nullptr; in FreeBlocks()
238 first_blocks_[i].size = 0; in FreeBlocks()
Darena.h98 AllocatedBlock first_blocks_[16]; // the length of this array is arbitrary variable