OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:BytesAllocated
(Results
1 - 4
of
4
) sorted by null
/art/runtime/base/
arena_allocator.cc
111
size_t ArenaAllocatorStatsImpl<kCount>::
BytesAllocated
() const {
130
const size_t bytes_allocated =
BytesAllocated
();
287
size_t ArenaAllocator::
BytesAllocated
() const {
288
return ArenaAllocatorStats::
BytesAllocated
();
arena_allocator.h
112
size_t
BytesAllocated
() const { return 0u; }
128
size_t
BytesAllocated
() const;
351
size_t
BytesAllocated
() const;
356
// TODO: Change
BytesAllocated
to this behavior?
/external/llvm/include/llvm/Support/
Allocator.h
115
void printBumpPtrAllocatorStats(unsigned NumSlabs, size_t
BytesAllocated
,
145
: CurPtr(nullptr), End(nullptr),
BytesAllocated
(0), Allocator() {}
148
: CurPtr(nullptr), End(nullptr),
BytesAllocated
(0),
156
BytesAllocated
(Old.
BytesAllocated
),
159
Old.
BytesAllocated
= 0;
175
BytesAllocated
= RHS.
BytesAllocated
;
181
RHS.
BytesAllocated
= 0;
197
BytesAllocated
= 0
[
all
...]
/art/runtime/gc/space/
region_space.h
382
DCHECK_LE(live_bytes_,
BytesAllocated
());
393
DCHECK_LE(live_bytes_,
BytesAllocated
());
394
size_t bytes_allocated = RoundUp(
BytesAllocated
(), kRegionSize);
401
size_t
BytesAllocated
() const {
Completed in 1681 milliseconds