Home
last modified time | relevance | path

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

/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dgcc.cc3244 int n_commands; /* # of command. */ in execute() local
3267 for (n_commands = 1, i = 0; argbuf.iterate (i, &arg); i++) in execute()
3269 n_commands++; in execute()
3272 commands = XALLOCAVEC (struct command, n_commands); in execute()
3290 for (n_commands = 1, i = 0; argbuf.iterate (i, &arg); i++) in execute()
3297 commands[n_commands].prog = argbuf[i + 1]; in execute()
3298 commands[n_commands].argv in execute()
3300 string = find_a_program(commands[n_commands].prog); in execute()
3302 commands[n_commands].argv[0] = string; in execute()
3303 n_commands++; in execute()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dgcc.c3034 int n_commands; /* # of command. */ in execute() local
3058 for (n_commands = 1, i = 0; argbuf.iterate (i, &arg); i++) in execute()
3060 n_commands++; in execute()
3063 commands = (struct command *) alloca (n_commands * sizeof (struct command)); in execute()
3081 for (n_commands = 1, i = 0; argbuf.iterate (i, &arg); i++) in execute()
3088 commands[n_commands].prog = argbuf[i + 1]; in execute()
3089 commands[n_commands].argv in execute()
3091 string = find_a_file (&exec_prefixes, commands[n_commands].prog, in execute()
3094 commands[n_commands].argv[0] = string; in execute()
3095 n_commands++; in execute()
[all …]