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

  /src/external/bsd/less/dist/
jump.c 33 POSITION end_pos; local
40 end_pos = ch_tell();
41 if (position(sc_height-1) == end_pos)
58 pos = back_line(end_pos);
64 if (position(sc_height-1) != end_pos)
ch.c 529 POSITION end_pos; local
534 end_pos = 0;
539 if (buf_pos > end_pos)
540 end_pos = buf_pos;
543 return (ch_seek(end_pos));
  /src/external/bsd/kyua-cli/dist/utils/fs/
path.cpp 120 const std::string::size_type end_pos = _repr.rfind('/'); local
121 if (end_pos == std::string::npos)
123 else if (end_pos == 0)
126 return fs::path(_repr.substr(0, end_pos));
  /src/external/apache2/llvm/dist/llvm/lib/Support/
Path.cpp 138 size_t end_pos = filename_pos(path, style); local
141 path.size() > 0 && is_separator(path[end_pos], style);
145 while (end_pos > 0 &&
146 (root_dir_pos == StringRef::npos || end_pos > root_dir_pos) &&
147 is_separator(path[end_pos - 1], style))
148 --end_pos;
150 if (end_pos == root_dir_pos && !filename_was_sep) {
157 return end_pos;
281 size_t end_pos = Path.find_first_of(separators(S), Position);
282 Component = Path.slice(Position, end_pos);
    [all...]
  /src/external/gpl2/texinfo/dist/makeinfo/
cmds.h 64 cm_ignore_arg (int arg, int start_pos, int end_pos),
129 cm_sc (int arg, int start_pos, int end_pos),
131 cm_strong (int arg, int start_pos, int end_pos),
134 cm_var (int arg, int start_pos, int end_pos),
213 cm_value (int arg, int start_pos, int end_pos);
cmds.c 924 cm_var (int arg, int start_pos, int end_pos)
936 while (start_pos < end_pos)
949 cm_sc (int arg, int start_pos, int end_pos)
971 all_upper = start_pos < end_pos;
973 while (start_pos < end_pos)
1097 cm_strong (int arg, int start_pos, int end_pos)
1110 && end_pos - start_pos >= 6
1393 cm_ignore_arg (int arg, int start_pos, int end_pos)
makeinfo.h 374 search_forward_until_pos (char *string, int from, int end_pos),
makeinfo.c 3211 search_forward_until_pos (char *string, int from, int end_pos)
3214 input_text_length = end_pos;
3630 cm_value (int arg, int start_pos, int end_pos)
3635 Docbook, so @value{} is no use there. Also start_pos and end_pos does not
3662 output_paragraph[end_pos] = 0;
3665 output_column -= end_pos - start_pos;
3673 && meta_char_pos >= start_pos && meta_char_pos < end_pos)
  /src/usr.bin/mail/
mime_decode.c 298 struct message *top_mp, off_t end_pos, int partnum)
308 (long)blockof(end_pos), blkoffsetof(end_pos));
365 off_t end_pos; local
370 end_pos = cur_pos - line_len;
374 this_mp->m_size = end_pos - beg_pos;
376 warnx("end_pos: %lld, m_lines: %ld, m_blines: %ld",
377 end_pos, this_mp->m_lines, this_mp->m_blines);
396 this_mip = insert_new_mip(this_mip, top_mip, top_mp, end_pos, partnum++);
399 beg_pos = end_pos;
439 off_t end_pos; local
    [all...]
  /src/external/cddl/osnet/dist/uts/common/sys/
bitmap.h 156 size_t end_pos);
  /src/external/gpl2/lvm2/dist/tools/
lvm.c 127 int end_pos __attribute((unused)))
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/scripts/
cpplint.py 1081 end_pos = FindEndOfExpressionInLine(line, pos, 0, startchar, endchar)
1082 if end_pos > -1:
1083 return (line, linenum, end_pos)
2659 (end_line, end_linenum, end_pos) = CloseExpression(
2665 if end_pos >= 0 and Match(r';', end_line[end_pos:]):
  /src/external/gpl3/gcc.old/dist/gcc/
input.cc 87 size_t end_pos; member in class:file_cache_slot::line_info
90 : line_num (l), start_pos (s), end_pos (e)
94 :line_num (0), start_pos (0), end_pos (0)
855 *line_len = i->end_pos - i->start_pos;
  /src/external/bsd/libarchive/dist/libarchive/
archive_read_support_format_rar5.c 184 uint16_t end_pos; member in struct:cdeque
388 d->end_pos = 0;
441 d->arr[d->end_pos] = (size_t) item;
442 d->end_pos = (d->end_pos + 1) & d->cap_mask;
493 d->end_pos = -1;

Completed in 48 milliseconds