Home
last modified time | relevance | path

Searched refs:p_line (Results 1 – 13 of 13) sorted by relevance

/netbsd/src/usr.bin/patch/
Dpch.c63 static char **p_line = NULL;/* the text of the hunk */ variable
135 if (p_line == NULL) in set_hunkmax()
136 p_line = calloc((size_t) hunkmax, sizeof(char *)); in set_hunkmax()
156 if (p_line == NULL || p_len == NULL || p_char == NULL) in grow_hunkmax()
159 new_p_line = pch_realloc(p_line, new_hunkmax, sizeof(char *)); in grow_hunkmax()
161 free(p_line); in grow_hunkmax()
173 p_line = new_p_line; in grow_hunkmax()
175 if (p_line != NULL && p_len != NULL && p_char != NULL) { in grow_hunkmax()
528 free(p_line[p_end]); in another_hunk()
571 p_line[p_end] = NULL; in another_hunk()
[all …]
/netbsd/src/usr.bin/xlint/lint1/
Demit1.c162 outint(tag->s_def_pos.p_line); in outtt()
193 outint(csrc_pos.p_line); in outsym()
197 outint(sym->s_def_pos.p_line); in outsym()
243 outint(posp->p_line); in outfdef()
245 outint(csrc_pos.p_line); in outfdef()
250 outint(posp->p_line); in outfdef()
328 outint(csrc_pos.p_line); in outcall()
332 outint(curr_pos.p_line); in outcall()
540 outint(csrc_pos.p_line); in outusg()
544 outint(curr_pos.p_line); in outusg()
Derr.c481 top->lineno = curr_pos.p_line; in update_location()
551 lbasename(pos->p_file), pos->p_line); in verror_at()
572 lbasename(pos->p_file), pos->p_line); in vwarning_at()
588 lbasename(pos->p_file), pos->p_line); in vmessage_at()
637 lbasename(curr_pos.p_file), curr_pos.p_line); in assert_failed()
776 lbasename(curr_pos.p_file), curr_pos.p_line);
Dmain1.c225 curr_pos.p_line = 0; in main()
244 curr_pos.p_line = 0; in main()
Ddebug.c427 sym->s_def_pos.p_file, sym->s_def_pos.p_line); in debug_sym()
430 sym->s_set_pos.p_file, sym->s_set_pos.p_line); in debug_sym()
433 sym->s_use_pos.p_file, sym->s_use_pos.p_line); in debug_sym()
523 dl->d_func_def_pos.p_file, dl->d_func_def_pos.p_line, in debug_decl_level()
Dlex.c1105 curr_pos.p_line = (int)ln - 1; in set_location()
1108 csrc_pos.p_line = (int)ln - 1; in set_location()
1415 curr_pos.p_line++; in lex_next_line()
1418 debug_printf("parsing %s:%d\n", curr_pos.p_file, curr_pos.p_line); in lex_next_line()
1420 csrc_pos.p_line++; in lex_next_line()
Dlint1.h70 int p_line; member
/netbsd/src/usr.bin/xlint/lint2/
Dlint2.h58 int p_line; member
100 unsigned short p_line; /* line number in p_src */ member
Dmsg.c123 lineno = posp->p_line; in mkpos()
Demit2.c87 outint(tp->t_uniqpos.p_line); in outtype()
Dchk.c1246 return (tp1->t_uniqpos.p_line == in types_compatible()
1247 tp2->t_uniqpos.p_line && in types_compatible()
1280 return (tp1->t_uniqpos.p_line == in types_compatible()
1281 tp2->t_uniqpos.p_line && in types_compatible()
Dread.c193 pos.p_line = (unsigned short)cline; in read_ln_line()
728 tp->t_uniqpos.p_line = parse_int(&cp); in inptype()
/netbsd/src/external/bsd/atf/dist/tools/
Dparser.cpp119 impl::token::token(size_t p_line, in token() argument
123 m_line(p_line), in token()