Home
last modified time | relevance | path

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

/dflybsd-src/contrib/gcc-4.7/gcc/
H A Dgcc.c2507 int n_commands; /* # of command. */ in execute() local
2531 for (n_commands = 1, i = 0; VEC_iterate (const_char_p, argbuf, i, arg); i++) in execute()
2533 n_commands++; in execute()
2536 commands = (struct command *) alloca (n_commands * sizeof (struct command)); in execute()
2553 for (n_commands = 1, i = 0; VEC_iterate (const_char_p, argbuf, i, arg); i++) in execute()
2561 commands[n_commands].prog = VEC_index (const_char_p, argbuf, i + 1); in execute()
2562 commands[n_commands].argv in execute()
2564 string = find_a_file (&exec_prefixes, commands[n_commands].prog, in execute()
2567 commands[n_commands].argv[0] = string; in execute()
2568 n_commands++; in execute()
[all …]
/dflybsd-src/contrib/gcc-8.0/gcc/
H A Dgcc.c2910 int n_commands; /* # of command. */ in execute() local
2934 for (n_commands = 1, i = 0; argbuf.iterate (i, &arg); i++) in execute()
2936 n_commands++; in execute()
2939 commands = (struct command *) alloca (n_commands * sizeof (struct command)); in execute()
2956 for (n_commands = 1, i = 0; argbuf.iterate (i, &arg); i++) in execute()
2964 commands[n_commands].prog = argbuf[i + 1]; in execute()
2965 commands[n_commands].argv in execute()
2967 string = find_a_file (&exec_prefixes, commands[n_commands].prog, in execute()
2970 commands[n_commands].argv[0] = string; in execute()
2971 n_commands++; in execute()
[all …]