HomeSort by: relevance | last modified time | path
    Searched refs:curr_pos (Results 1 - 12 of 12) sorted by relevancy

  /src/distrib/utils/more/
input.c 62 * of the NEXT line. The line obtained is the line starting at curr_pos.
65 forw_line(curr_pos)
66 off_t curr_pos;
71 if (curr_pos == NULL_POSITION || ch_seek(curr_pos))
135 back_line(curr_pos)
136 off_t curr_pos;
141 if (curr_pos == NULL_POSITION || curr_pos <= (off_t)0 ||
142 ch_seek(curr_pos-1)
    [all...]
line.c 415 forw_raw_line(curr_pos)
416 off_t curr_pos;
422 if (curr_pos == NULL_POSITION || ch_seek(curr_pos) ||
459 back_raw_line(curr_pos)
460 off_t curr_pos;
466 if (curr_pos == NULL_POSITION || curr_pos <= (off_t)0 ||
467 ch_seek(curr_pos-1))
  /src/usr.bin/xlint/lint1/
err.c 482 top->lineno = curr_pos.p_line;
611 verror_at(msgid, &curr_pos, ap);
638 lbasename(curr_pos.p_file), curr_pos.p_line);
660 vwarning_at(msgid, &curr_pos, ap);
685 verror_at(msgid, &curr_pos, ap);
687 vwarning_at(msgid, &curr_pos, ap);
700 verror_at(msgid, &curr_pos, ap);
712 verror_at(msgid, &curr_pos, ap);
725 verror_at(msgid, &curr_pos, ap)
    [all...]
main1.c 224 curr_pos.p_file = "<gcc-builtins>";
225 curr_pos.p_line = 0;
243 curr_pos.p_file = argv[0];
244 curr_pos.p_line = 0;
lex.c 59 pos_t curr_pos = { "", 1, 0 }; variable in typeref:typename:pos_t
1063 csrc_pos.p_file = curr_pos.p_file;
1064 outsrc(transform_filename(curr_pos.p_file, strlen(curr_pos.p_file)));
1097 curr_pos.p_file = record_filename(fn, fn_len);
1102 update_location(curr_pos.p_file, (int)ln, is_begin, is_end);
1105 curr_pos.p_line = (int)ln - 1;
1106 curr_pos.p_uniq = 0;
1107 if (curr_pos.p_file == csrc_pos.p_file) {
1415 curr_pos.p_line++
    [all...]
mem1.c 352 (curr_pos.p_file != csrc_pos.p_file &&
353 str_ends_with(curr_pos.p_file, ".c"));
emit1.c 330 outint(get_filename_id(curr_pos.p_file));
332 outint(curr_pos.p_line);
542 outint(get_filename_id(curr_pos.p_file));
544 outint(curr_pos.p_line);
func.c 796 cstmt->c_for_expr3_pos = curr_pos;
823 pos_t saved_curr_pos = curr_pos;
825 curr_pos = cstmt->c_for_expr3_pos;
840 curr_pos = saved_curr_pos;
1036 argsused_pos = curr_pos;
1051 vapos = curr_pos;
1070 printflike_pos = curr_pos;
1089 scanflike_pos = curr_pos;
lint1.h 649 /* Copies curr_pos, keeping things unique. */
653 pos_t curr = curr_pos;
654 curr_pos.p_uniq++;
655 if (curr_pos.p_file == csrc_pos.p_file)
ckgetopt.c 154 ck.options_pos = curr_pos;
externs1.h 83 extern pos_t curr_pos;
decl.c 1844 str_ends_with(curr_pos.p_file, ".c") &&
3091 pos_t cpos = curr_pos;
3092 curr_pos = sym->s_def_pos;
3094 curr_pos = cpos;

Completed in 19 milliseconds