Home | History | Annotate | Download | only in space

Lines Matching full:footprint

97     // Succeeds, fits without adjusting the footprint limit.
101 // Fails, requires a higher footprint limit.
105 // Succeeds, adjusts the footprint.
111 // Fails, requires a higher footprint limit.
115 // Also fails, requires a higher allowed footprint.
141 // Succeeds, fits without adjusting the footprint limit.
145 // Fails, requires a higher footprint limit.
149 // Succeeds, adjusts the footprint.
169 // Succeeds, fits without adjusting the footprint limit.
173 // Fails, requires a higher footprint limit.
177 // Succeeds, adjusts the footprint.
183 // Fails, requires a higher footprint limit.
187 // Also fails, requires a higher allowed footprint.
276 // Succeeds, fits without adjusting the max allowed footprint.
291 // Succeeds, fits by adjusting the max allowed footprint.
316 // mspace's footprint equals amount of resources requested from system
317 size_t footprint = mspace_footprint(mspace);
320 EXPECT_GT(footprint, 0u);
323 EXPECT_LE(footprint, growth_limit);
330 EXPECT_GE(space->Size(), footprint);
359 footprint = mspace_footprint(mspace);
360 EXPECT_GE(space->Size(), footprint); // invariant
384 EXPECT_LE(footprint, growth_limit);
387 // footprint and size should agree with amount allocated
388 EXPECT_GE(footprint, amount_allocated);
398 footprint = mspace_footprint(mspace);
400 EXPECT_GE(footprint, amount_allocated);
401 EXPECT_LE(footprint, growth_limit);
424 footprint = mspace_footprint(mspace);
425 EXPECT_GE(space->Size(), footprint); // invariant
442 // Sanity check footprint
443 footprint = mspace_footprint(mspace);
444 EXPECT_LE(footprint, growth_limit);
445 EXPECT_GE(space->Size(), footprint);
451 // Sanity check footprint
452 footprint = mspace_footprint(mspace);
453 EXPECT_LE(footprint, growth_limit);
454 EXPECT_GE(space->Size(), footprint);