Searched refs:min_expand (Results 1 - 3 of 3) sorted by relevance

/freebsd-10.0-release/contrib/gcc/
H A Dggc-common.c714 double min_expand = physmem_total();
717 min_expand = ggc_rlimit_bound (min_expand);
721 min_expand /= 1024*1024*1024;
722 min_expand *= 70;
723 min_expand = MIN (min_expand, 70);
724 min_expand += 30;
726 return min_expand;
713 double min_expand = physmem_total(); local
H A Dggc-zone.c1866 float allocated_last_gc = 0, allocated = 0, min_expand; local
1877 min_expand = allocated_last_gc * PARAM_VALUE (GGC_MIN_EXPAND) / 100;
1879 if (allocated < allocated_last_gc + min_expand)
H A Dggc-page.c1888 float min_expand = allocated_last_gc * PARAM_VALUE (GGC_MIN_EXPAND) / 100;
1890 if (G.allocated < allocated_last_gc + min_expand && !ggc_force_collect)
1883 float min_expand = allocated_last_gc * PARAM_VALUE (GGC_MIN_EXPAND) / 100; local

Completed in 177 milliseconds