Home | History | Annotate | Download | only in space

Lines Matching refs:bytes_allocated

64                         size_t* bytes_allocated, size_t* usable_size)
68 mirror::Object* obj = alloc_space->Alloc(self, bytes, bytes_allocated, usable_size);
76 size_t* bytes_allocated, size_t* usable_size)
80 mirror::Object* obj = alloc_space->AllocWithGrowth(self, bytes, bytes_allocated, usable_size);
424 size_t bytes_allocated = 0;
426 object.Assign(Alloc(space, self, alloc_size, &bytes_allocated, nullptr));
428 object.Assign(AllocWithGrowth(space, self, alloc_size, &bytes_allocated, nullptr));
435 EXPECT_EQ(bytes_allocated, allocation_size);
517 size_t bytes_allocated = 0;
519 large_object.Assign(Alloc(space, self, three_quarters_space, &bytes_allocated, nullptr));
521 large_object.Assign(AllocWithGrowth(space, self, three_quarters_space, &bytes_allocated,