| /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/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/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/gpl3/gdb.old/dist/gdb/nat/ |
| linux-procfs.c | 270 std::string::size_type end_pos = content->find_first_of (' ', pos); local 271 if (end_pos == std::string::npos) 274 return content->substr (pos, end_pos - pos);
|
| /src/external/gpl3/gdb/dist/gdb/nat/ |
| linux-procfs.c | 270 std::string::size_type end_pos = content->find_first_of (' ', pos); local 271 if (end_pos == std::string::npos) 274 return content->substr (pos, end_pos - pos);
|
| /src/crypto/external/bsd/openssh/dist/ |
| progressmeter.c | 68 static off_t end_pos; /* ending position of transfer */ variable 153 bytes_left = end_pos - cur_pos; 164 transferred = end_pos - start_pos; 196 if (end_pos == 0 || cur_pos == end_pos) 199 percent = ((float)cur_pos / end_pos) * 100; 262 end_pos = filesize; 285 if (cur_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/gpl3/gdb.old/dist/sim/igen/ |
| ld-insn.c | 364 char *end_pos; local 375 end_pos = back_spaces (start_pos, chp); 376 strlen_pos = end_pos - start_pos;
|
| /src/external/gpl3/gdb/dist/sim/igen/ |
| ld-insn.c | 364 char *end_pos; local 375 end_pos = back_spaces (start_pos, chp); 376 strlen_pos = end_pos - start_pos;
|
| /src/external/gpl3/gcc/dist/gcc/ |
| input.cc | 94 size_t end_pos; member in class:file_cache_slot::line_info 97 : line_num (l), start_pos (s), end_pos (e) 101 :line_num (0), start_pos (0), end_pos (0) 896 *line_len = i->end_pos - i->start_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/mit/libuv/dist/src/win/ |
| fs.c | 724 LARGE_INTEGER pos, end_pos; local 761 end_pos.QuadPart = pos.QuadPart + read_size; 807 fd_info->current_pos = end_pos; 905 LARGE_INTEGER pos, end_pos; local 938 end_pos.QuadPart = pos.QuadPart + write_size; 941 if (end_pos.QuadPart > fd_info->size.QuadPart) { 949 end_pos.HighPart, 950 end_pos.LowPart, 962 fd_info->size = end_pos; 1011 fd_info->current_pos = end_pos; [all...] |
| /src/external/bsd/libarchive/dist/libarchive/ |
| archive_read_support_format_rar5.c | 184 uint16_t end_pos; member in struct:cdeque 389 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;
|