Home | History | Annotate | Download | only in space

Lines Matching refs:allocation_size

348     size_t allocation_size, usable_size;
350 lots_of_objects[i] = Alloc(space, self, size_of_zero_length_byte_array, &allocation_size,
354 EXPECT_EQ(allocation_size, space->AllocationSize(lots_of_objects[i], &computed_usable_size));
363 size_t allocation_size, usable_size;
364 lots_of_objects[i] = AllocWithGrowth(space, self, 1024, &allocation_size, &usable_size);
367 EXPECT_EQ(allocation_size, space->AllocationSize(lots_of_objects[i], &computed_usable_size));
434 size_t allocation_size = space->AllocationSize(object.Get(), nullptr);
435 EXPECT_EQ(bytes_allocated, allocation_size);
437 EXPECT_GE(allocation_size, static_cast<size_t>(object_size));
439 EXPECT_GE(allocation_size, 8u);
441 amount_allocated += allocation_size;
489 size_t allocation_size = space->AllocationSize(object, nullptr);
491 EXPECT_GE(allocation_size, static_cast<size_t>(object_size));
493 EXPECT_GE(allocation_size, 8u);
497 amount_allocated -= allocation_size;