HomeSort by relevance Sort by last modified time
    Searched full:lots_of_objects (Results 1 - 1 of 1) sorted by null

  /art/runtime/gc/space/
space_test.h 371 mirror::Object* lots_of_objects[1024]; local
372 for (size_t i = 0; i < arraysize(lots_of_objects); i++) {
375 lots_of_objects[i] = Alloc(space, self, size_of_zero_length_byte_array, &allocation_size,
377 EXPECT_TRUE(lots_of_objects[i] != nullptr);
379 EXPECT_EQ(allocation_size, space->AllocationSize(lots_of_objects[i], &computed_usable_size));
386 space->FreeList(self, arraysize(lots_of_objects), lots_of_objects);
389 for (size_t i = 0; i < arraysize(lots_of_objects); i++) {
391 lots_of_objects[i] = AllocWithGrowth(space, self, 1024, &allocation_size, &usable_size,
393 EXPECT_TRUE(lots_of_objects[i] != nullptr)
    [all...]

Completed in 50 milliseconds