OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:lots_of_objects
(Results
1 - 1
of
1
) sorted by null
/art/runtime/gc/space/
space_test.cc
277
mirror::Object*
lots_of_objects
[1024];
local
278
for (size_t i = 0; i < arraysize(
lots_of_objects
); i++) {
280
lots_of_objects
[i] = space->Alloc(self, 16, &allocation_size);
281
EXPECT_EQ(allocation_size, space->AllocationSize(
lots_of_objects
[i]));
282
EXPECT_TRUE(
lots_of_objects
[i] != NULL);
286
space->FreeList(self, arraysize(
lots_of_objects
),
lots_of_objects
);
287
for (size_t i = 0; i < arraysize(
lots_of_objects
); i++) {
288
EXPECT_TRUE(
lots_of_objects
[i] == NULL);
292
for (size_t i = 0; i < arraysize(
lots_of_objects
); i++)
[
all
...]
Completed in 57 milliseconds