Home
last modified time | relevance | path

Searched refs:n_switches_alloc (Results 1 – 2 of 2) sorted by relevance

/dragonfly/contrib/gcc-4.7/gcc/
HDgcc.c2852 static int n_switches_alloc; variable
3101 if (n_switches_alloc == 0) in alloc_switch()
3103 n_switches_alloc = 16; in alloc_switch()
3104 switches = XNEWVEC (struct switchstr, n_switches_alloc); in alloc_switch()
3106 else if (n_switches_alloc == n_switches) in alloc_switch()
3108 n_switches_alloc *= 2; in alloc_switch()
3109 switches = XRESIZEVEC (struct switchstr, switches, n_switches_alloc); in alloc_switch()
6464 n_switches_alloc_debug_check[1] = n_switches_alloc; in main()
6466 n_switches_alloc); in main()
6470 n_switches_alloc_debug_check[0] = n_switches_alloc; in main()
[all …]
/dragonfly/contrib/gcc-8.0/gcc/
HDgcc.c3298 static int n_switches_alloc; variable
3552 if (n_switches_alloc == 0) in alloc_switch()
3554 n_switches_alloc = 16; in alloc_switch()
3555 switches = XNEWVEC (struct switchstr, n_switches_alloc); in alloc_switch()
3557 else if (n_switches_alloc == n_switches) in alloc_switch()
3559 n_switches_alloc *= 2; in alloc_switch()
3560 switches = XRESIZEVEC (struct switchstr, switches, n_switches_alloc); in alloc_switch()
7685 n_switches_alloc_debug_check[1] = n_switches_alloc; in set_up_specs()
7687 n_switches_alloc); in set_up_specs()
7691 n_switches_alloc_debug_check[0] = n_switches_alloc; in set_up_specs()
[all …]