Searched refs:growth (Results 1 - 8 of 8) sorted by relevance

/freebsd-9.3-release/lib/libkse/test/
H A Djoin_leak_d.c57 unsigned growth; local
89 growth = nbrk - brk;
91 /* Heap grows down, or no growth. */
92 growth = brk - nbrk;
95 if (growth > MAXGROWTH) {
96 fprintf(stderr, "Heap growth exceeded maximum (%u > %u)\n",
97 growth, MAXGROWTH);
101 fprintf(stderr, "Heap growth acceptable (%u <= %u)\n",
102 growth, MAXGROWTH);
/freebsd-9.3-release/contrib/binutils/gas/
H A Dwrite.c1870 offsetT growth; local
1950 growth = this_type->rlx_length - start_type->rlx_length;
1951 if (growth != 0)
1953 return growth;
2136 offsetT growth = 0; local
2150 growth = 0;
2167 growth = 0;
2195 growth += md_short_jump_size;
2208 growth += md_long_jump_size;
2234 growth
[all...]
/freebsd-9.3-release/contrib/gcc/
H A Dipa-inline.c40 by the limits specified by user (allowed function growth, overall unit
41 growth and so on).
52 on code size growth fits.
59 all functions by their "profitability" (estimated by code size growth)
220 /* Estimate the growth caused by inlining NODE into all callees. */
225 int growth = 0; local
232 growth += (cgraph_estimate_size_after_inlining (1, e->caller, node)
239 growth -= node->global.insns;
241 node->global.estimated_growth = growth;
242 return growth;
388 int growth = local
756 int growth = local
[all...]
H A Dfinal.c590 For this purpose, align_fuzz with a growth argument of 0 computes the
602 align_fuzz (rtx start, rtx end, int known_align_log, unsigned int growth)
624 fuzz += (-align_addr ^ growth) & (new_align - known_align);
598 align_fuzz(rtx start, rtx end, int known_align_log, unsigned int growth) argument
/freebsd-9.3-release/sys/conf/
H A Dkern.pre.mk93 CFLAGS+= --param inline-unit-growth=100
94 CFLAGS+= --param large-function-growth=1000
97 CFLAGS+= --param inline-unit-growth=10000
98 CFLAGS+= --param large-function-growth=100000
H A Dkmod.mk119 CFLAGS+= --param inline-unit-growth=100
120 CFLAGS+= --param large-function-growth=1000
/freebsd-9.3-release/contrib/binutils/gas/config/
H A Dtc-mep.c1146 int growth;
1207 ACTUALLY the growth beyond fr_fix. Whatever we do to grow fr_fix
1257 return subtype_mappings[fragP->fr_subtype].growth;
1293 fragP->fr_fix += subtype_mappings[fragP->fr_subtype].growth;
1351 growth, so we must manually handle converting out-of-range BEQ
1385 if (subtype_mappings[fragP->fr_subtype].growth)
1387 fragP->fr_fix += subtype_mappings[fragP->fr_subtype].growth;
1143 int growth; member in struct:__anon474
/freebsd-9.3-release/contrib/ncurses/form/
H A Dfrm_driver.c98 /* Allow dynamic field growth also when navigating past the end */
616 int growth; local
627 growth = field->cols * amount;
629 growth = Minimum(field->maxgrow - field->dcols, growth);
630 field->dcols += growth;
636 growth = (field->rows + field->nrow) * amount;
638 growth = Minimum(field->maxgrow - field->drows, growth);
639 field->drows += growth;
[all...]

Completed in 220 milliseconds