/netbsd-src/sys/arch/hp300/stand/common/ |
H A D | netio.c | 101 static char input_line[100]; variable 166 memset(input_line, 0, sizeof(input_line)); in netmountroot() 167 kgets(input_line, sizeof(input_line)); in netmountroot() 168 if ((myip.s_addr = inet_addr(input_line)) == in netmountroot() 170 printf("invalid IP address: %s\n", input_line); in netmountroot() 176 memset(input_line, 0, sizeof(input_line)); in netmountroot() 177 kgets(input_line, sizeof(input_line)); in netmountroot() 178 if ((netmask = inet_addr(input_line)) == in netmountroot() 180 printf("invalid netmask: %s\n", input_line); in netmountroot() 186 memset(input_line, 0, sizeof(input_line)); in netmountroot() [all …]
|
/netbsd-src/external/apache2/llvm/dist/llvm/utils/ |
H A D | update_mir_test_checks.py | 274 def should_add_line_to_output(input_line, prefix_set): argument 276 m = common.CHECK_RE.match(input_line) 338 for input_line in input_lines: 339 if input_line == autogenerated_note: 343 m = IR_FUNC_NAME_RE.match(input_line) 347 if input_line.rstrip('| \r\n') == '---': 349 output_lines.append(input_line) 351 m = MIR_FUNC_NAME_RE.match(input_line) 355 if input_line.strip() == '...': 358 if should_add_line_to_output(input_line, prefix_set): [all …]
|
H A D | update_analyze_test_checks.py | 139 for input_line in input_lines: 141 if input_line == '': 143 if input_line.lstrip().startswith(';'): 144 m = common.CHECK_RE.match(input_line) 146 output_lines.append(input_line) 154 if common.should_add_line_to_output(input_line, prefix_set): 157 input_line = common.SCRUB_LEADING_WHITESPACE_RE.sub(r' ', input_line) 158 output_lines.append(input_line) 161 if input_line.strip() == '}': 166 if input_line.startswith(ADVERT): [all …]
|
H A D | update_test_checks.py | 166 input_line = input_line_info.line 169 if input_line == '': 171 if input_line.lstrip().startswith(';'): 172 m = common.CHECK_RE.match(input_line) 174 output_lines.append(input_line) 183 m = common.IR_FUNCTION_RE.match(input_line) 189 if common.should_add_line_to_output(input_line, prefix_set, not is_in_function): 192 input_line = common.SCRUB_LEADING_WHITESPACE_RE.sub(r' ', input_line) 193 output_lines.append(input_line) 194 if input_line.strip() == '}': [all …]
|
H A D | update_llc_test_checks.py | 166 input_line = input_info.line 169 if input_line == '': 171 if input_line.lstrip().startswith(';'): 172 m = common.CHECK_RE.match(input_line) 174 output_lines.append(input_line) 182 if common.should_add_line_to_output(input_line, prefix_set): 184 output_lines.append(input_line) 187 if input_line.strip() == '}': 192 output_lines.append(input_line) 194 m = common.IR_FUNCTION_RE.match(input_line)
|
H A D | update_mca_test_checks.py | 441 for input_line in input_lines: 442 if input_line.startswith(ADVERT_PREFIX): 445 if input_line.startswith(COMMENT_CHAR): 446 m = common.CHECK_RE.match(input_line) 452 if '{}-NOT:'.format(prefix) in input_line: 456 output_lines.append(input_line) 459 if common.should_add_line_to_output(input_line, prefix_set): 462 input_line = common.SCRUB_LEADING_WHITESPACE_RE.sub(r' ', input_line) 465 if input_line or output_lines[-1]: 466 output_lines.append(input_line)
|
/netbsd-src/external/gpl2/texinfo/dist/info/ |
H A D | echo-area.c | 49 static char input_line[1 + EA_MAX_INPUT]; variable 55 (char *)NULL, (char *)NULL, (char *)NULL, input_line, 169 strcpy (input_line, prompt); in initialize_input_line() 171 input_line[0] = '\0'; in initialize_input_line() 194 strncpy (return_value, &input_line[input_line_beg], line_len); in echo_area_after_read() 256 for (i = input_line_end; (unsigned int) i < sizeof (input_line); i++) in echo_area_initialize_node() 257 input_line[i] = ' '; in echo_area_initialize_node() 259 input_line[i - 1] = '\n'; in echo_area_initialize_node() 261 input_line[input_line_end] = '\n'; in echo_area_initialize_node() 274 input_line[input_line_end] = '\n'; in echo_area_prep_read() [all …]
|
/netbsd-src/external/gpl3/binutils.old/dist/gprofng/gp-display-html/ |
H A D | gp-display-html.in | 1413 my $input_line = ${ $input_line_ref }; 1426 if ( ($input_line =~ /$g_branch_regex/) 1427 or ($input_line =~ /$g_endbr_regex/)) 1509 my $input_line = ${ $input_line_ref }; 1521 if ( $input_line =~ /$g_function_call_v2_regex/ ) 1523 $msg = "found a function call - line[$line_no] = $input_line"; 3668 my $input_line; 3691 $input_line = $_; 3692 chomp ($input_line); 3693 gp_message ("debug", $subr_name, "read input_line = $input_line"); [all …]
|
/netbsd-src/external/gpl3/binutils/dist/gprofng/gp-display-html/ |
H A D | gp-display-html.in | 1655 my $input_line = ${ $input_line_ref }; 1668 if ( ($input_line =~ /$g_branch_regex/) 1669 or ($input_line =~ /$g_endbr_regex/)) 1753 my $input_line = ${ $input_line_ref }; 1765 if ( $input_line =~ /$g_function_call_v2_regex/ ) 1767 $msg = "found a function call - line[$line_no] = $input_line"; 4000 my $input_line; 4028 $input_line = $_; 4029 chomp ($input_line); 4031 $msg = "read input_line = $input_line"; [all …]
|
/netbsd-src/external/apache2/llvm/dist/llvm/utils/vim/ |
H A D | vimrc | 148 for l:input_line in l:input_lines 150 if l:input_line[:11] == 'COMPLETION: ' 151 let l:value = l:input_line[12:] 190 \ "info": l:input_line, 201 elseif l:input_line[:9] == "OVERLOAD: " 204 let l:value = l:input_line[10:] 208 \ "info": l:input_line,
|
/netbsd-src/external/gpl3/binutils/dist/gas/config/ |
H A D | tc-xgate.c | 473 md_assemble (char *input_line) in md_assemble() argument 479 char *saved_input_line = input_line; in md_assemble() 488 input_line = extract_word (input_line, op_name, sizeof (op_name)); in md_assemble() 502 operandCount = xgate_get_operands (input_line, new_operands); in md_assemble() 533 input_line = skip_whitespace (input_line); in md_assemble() 534 char *macro_inline = input_line; in md_assemble() 541 input_line = macro_inline; /* Rewind. */ in md_assemble() 555 operandCount = xgate_get_operands (input_line, new_operands); in md_assemble() 565 input_line = saved_input_line; in md_assemble()
|
/netbsd-src/external/gpl3/binutils.old/dist/gas/config/ |
H A D | tc-xgate.c | 473 md_assemble (char *input_line) in md_assemble() argument 479 char *saved_input_line = input_line; in md_assemble() 488 input_line = extract_word (input_line, op_name, sizeof (op_name)); in md_assemble() 502 operandCount = xgate_get_operands (input_line, new_operands); in md_assemble() 533 input_line = skip_whitespace (input_line); in md_assemble() 534 char *macro_inline = input_line; in md_assemble() 541 input_line = macro_inline; /* Rewind. */ in md_assemble() 555 operandCount = xgate_get_operands (input_line, new_operands); in md_assemble() 565 input_line = saved_input_line; in md_assemble()
|
/netbsd-src/external/apache2/llvm/dist/llvm/utils/UpdateTestChecks/ |
H A D | common.py | 77 for line_num, input_line in enumerate(self.input_lines): 78 args, argv = check_for_command(input_line, self.parser, 80 yield InputLineInfo(input_line, line_num, args, argv) 85 input_line = line_info.line 87 if input_line.startswith(self.autogenerated_note_prefix): 92 output_lines.append(input_line) 124 def should_add_line_to_output(input_line, prefix_set, skip_global_checks = False): argument 126 if not skip_global_checks and input_line.strip() == ';': 129 if input_line.strip() == SEPARATOR: 135 m = CHECK_RE.match(input_line) [all …]
|
/netbsd-src/external/gpl3/binutils.old/dist/binutils/ |
H A D | mclex.c | 44 static int input_line = 1; variable 81 fprintf (stderr, "In %s at line %d: %s: ", input_filename, input_line, kind); in show_msg() 344 input_line += 1; in skip_until_eol() 388 input_line += 1; in yylex()
|
/netbsd-src/external/gpl3/binutils/dist/binutils/ |
H A D | mclex.c | 44 static int input_line = 1; variable 81 fprintf (stderr, "In %s at line %d: %s: ", input_filename, input_line, kind); in show_msg() 344 input_line += 1; in skip_until_eol() 388 input_line += 1; in yylex()
|
/netbsd-src/external/gpl3/gcc.old/dist/gcc/ |
H A D | gdbinit.in | 318 macro define input_line expand_location(input_location).line
|
/netbsd-src/external/gpl3/gcc/dist/gcc/ |
H A D | gdbinit.in | 318 macro define input_line expand_location(input_location).line
|
H A D | ChangeLog-2003 | 6946 (cb_line_change): Set input_line directly, instead of src_line. 24280 * input.h (input_filename, input_line): Remove variables. 24283 (input_filename, input_line): New #defines. 24286 (input_filename, input_line): Remove. 24289 * toplev.c (input_filename, input_line): Remove. 24344 (input_line): ... here. 24346 (input_line): ... here. 24348 (input_line): ... here. 24350 (input_line): ... here. 24351 (push_srcloc, pop_srcloc): Rename lineno to input_line. [all …]
|
H A D | ChangeLog-2013 | 1144 * gdbinit.in (input_line, input_filename): Define. 5503 * input.h (input_line): Remove.
|
/netbsd-src/external/gpl3/gcc/dist/gcc/fortran/ |
H A D | ChangeLog-2013 | 167 * trans.c (trans_runtime_error_vararg): Remove use of input_line
|
H A D | ChangeLog-2003 | 1301 * f95-lang.c (expand_function_body): Use input_line, not lineno.
|
/netbsd-src/external/gpl3/gcc/dist/gcc/objc/ |
H A D | ChangeLog | 3939 (objc_init): Only set input_line to 0 #ifndef USE_MAPPED_LOCATION. 3941 instead of diddling input_line. Fix spelling.
|
/netbsd-src/external/gpl3/gcc/dist/gcc/cp/ |
H A D | ChangeLog-2004 | 4186 * name-lookup.c: Use input_line macro. 4196 Don't set TREE_COMPLEXITY from input_line.
|
H A D | ChangeLog-2013 | 297 input_line macro.
|
H A D | ChangeLog-2003 | 4501 * class.c (finish_struct): Rename lineno to input_line.
|