Home | History | Annotate | Download | only in space

Lines Matching defs:footprint

181   // Succeeds, fits without adjusting the footprint limit.
191 // Fails, requires a higher footprint limit.
195 // Succeeds, adjusts the footprint.
204 // Fails, requires a higher footprint limit.
208 // Also fails, requires a higher allowed footprint.
249 // Succeeds, fits without adjusting the footprint limit.
256 // Fails, requires a higher footprint limit.
260 // Succeeds, adjusts the footprint.
284 // Succeeds, fits without adjusting the footprint limit.
294 // Fails, requires a higher footprint limit.
298 // Succeeds, adjusts the footprint.
307 // Fails, requires a higher footprint limit.
311 // Also fails, requires a higher allowed footprint.
345 // Succeeds, fits without adjusting the max allowed footprint.
361 // Succeeds, fits by adjusting the max allowed footprint.
383 // The space's footprint equals amount of resources requested from system
384 size_t footprint = space->GetFootprint();
387 EXPECT_GT(footprint, 0u);
390 EXPECT_LE(footprint, growth_limit);
397 EXPECT_GE(space->Size(), footprint);
430 footprint = space->GetFootprint();
431 EXPECT_GE(space->Size(), footprint); // invariant
455 EXPECT_LE(footprint, growth_limit);
458 // footprint and size should agree with amount allocated
459 EXPECT_GE(footprint, amount_allocated);
472 footprint = space->GetFootprint();
474 EXPECT_GE(footprint, amount_allocated);
475 EXPECT_LE(footprint, growth_limit);
498 footprint = space->GetFootprint();
499 EXPECT_GE(space->Size(), footprint); // invariant
526 // Sanity check footprint
527 footprint = space->GetFootprint();
528 EXPECT_LE(footprint, growth_limit);
529 EXPECT_GE(space->Size(), footprint);
535 // Sanity check footprint
536 footprint = space->GetFootprint();
537 EXPECT_LE(footprint, growth_limit);
538 EXPECT_GE(space->Size(), footprint);