OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AllocWithGrowth
(Results
1 - 3
of
3
) sorted by null
/art/runtime/gc/space/
space_test.cc
107
mirror::Object* ptr3 = space->
AllocWithGrowth
(self, 8 * MB, &ptr3_bytes_allocated);
116
mirror::Object* ptr5 = space->
AllocWithGrowth
(self, 8 * MB, &dummy);
126
void* ptr6 = space->
AllocWithGrowth
(self, 9 * MB, &dummy);
150
ptr3 = space->
AllocWithGrowth
(self, 2 * MB, &dummy);
179
mirror::Object* ptr3 = space->
AllocWithGrowth
(self, 8 * MB, &ptr3_bytes_allocated);
188
mirror::Object* ptr5 = space->
AllocWithGrowth
(self, 8 * MB, &dummy);
198
void* ptr6 = space->
AllocWithGrowth
(self, 9 * MB, &dummy);
294
lots_of_objects[i] = space->
AllocWithGrowth
(self, 1024, &allocation_size);
357
object = space->
AllocWithGrowth
(self, alloc_size, &bytes_allocated);
438
large_object = space->
AllocWithGrowth
(self, three_quarters_space, &bytes_allocated)
[
all
...]
dlmalloc_space.h
53
virtual mirror::Object*
AllocWithGrowth
(Thread* self, size_t num_bytes,
dlmalloc_space.cc
51
virtual mirror::Object*
AllocWithGrowth
(Thread* self, size_t num_bytes, size_t* bytes_allocated) {
52
void* obj_with_rdz = DlMallocSpace::
AllocWithGrowth
(self, num_bytes + 2 * kValgrindRedZoneBytes,
251
mirror::Object* DlMallocSpace::
AllocWithGrowth
(Thread* self, size_t num_bytes, size_t* bytes_allocated) {
Completed in 615 milliseconds