Searched refs:end_pos (Results 1 – 11 of 11) sorted by relevance
/freebsd/crypto/openssh/ |
H A D | progressmeter.c | 67 static off_t end_pos; /* ending position of transfer */ variable 148 bytes_left = end_pos - cur_pos; in refresh_progress_meter() 155 transferred = end_pos - start_pos; in refresh_progress_meter() 187 if (end_pos == 0 || cur_pos == end_pos) in refresh_progress_meter() 190 percent = ((float)cur_pos / end_pos) * 100; in refresh_progress_meter() 253 end_pos = filesize; in start_progress_meter() 276 if (cur_pos != end_pos) in stop_progress_meter()
|
/freebsd/contrib/less/ |
H A D | jump.c | 31 POSITION end_pos; in jump_forw() local 38 end_pos = ch_tell(); in jump_forw() 39 if (position(sc_height-1) == end_pos) in jump_forw() 56 pos = back_line(end_pos); in jump_forw() 62 if (position(sc_height-1) != end_pos) in jump_forw()
|
H A D | ch.c | 536 POSITION end_pos; in ch_end_buffer_seek() 541 end_pos = 0; in ch_end_buffer_seek() 546 if (buf_pos > end_pos) 547 end_pos = buf_pos; 550 return (ch_seek(end_pos)); in ch_beg_seek() 527 POSITION end_pos; ch_end_buffer_seek() local
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | Path.cpp | 141 size_t end_pos = filename_pos(path, style); in parent_path_end() local 144 path.size() > 0 && is_separator(path[end_pos], style); in parent_path_end() 148 while (end_pos > 0 && in parent_path_end() 149 (root_dir_pos == StringRef::npos || end_pos > root_dir_pos) && in parent_path_end() 150 is_separator(path[end_pos - 1], style)) in parent_path_end() 151 --end_pos; in parent_path_end() 153 if (end_pos == root_dir_pos && !filename_was_sep) { in parent_path_end() 160 return end_pos; in parent_path_end() 284 size_t end_pos = Path.find_first_of(separators(S), Position); in operator ++() local 285 Component = Path.slice(Position, end_pos); in operator ++() [all …]
|
/freebsd/contrib/kyua/utils/fs/ |
H A D | path.cpp | 124 const std::string::size_type end_pos = _repr.rfind('/'); in branch_path() local 125 if (end_pos == std::string::npos) in branch_path() 127 else if (end_pos == 0) in branch_path() 130 return fs::path(_repr.substr(0, end_pos)); in branch_path()
|
/freebsd/contrib/llvm-project/lldb/source/Symbol/ |
H A D | LineTable.cpp | 123 entry_collection::iterator end_pos = m_entries.end(); in InsertSequence() local 126 upper_bound(begin_pos, end_pos, entry, less_than_bp); in InsertSequence() 130 while (pos < end_pos && !((pos - 1)->is_terminal_entry)) in InsertSequence() 201 entry_collection::const_iterator end_pos = m_entries.end(); in FindLineEntryByAddress() local 203 begin_pos, end_pos, search_entry, Entry::EntryAddressLessThan); in FindLineEntryByAddress() 204 if (pos != end_pos) { in FindLineEntryByAddress() 217 if (pos != end_pos) { in FindLineEntryByAddress() 219 pos = end_pos; in FindLineEntryByAddress() 223 if (pos != end_pos) { in FindLineEntryByAddress() 248 if (pos != end_pos && pos->is_terminal_entry == false) { in FindLineEntryByAddress()
|
/freebsd/sys/dev/uart/ |
H A D | uart_dev_msm.h | 30 #define UART_DM_EXTR_BITS(value, start_pos, end_pos) \ argument 31 ((value << (32 - end_pos)) >> (32 - (end_pos - start_pos)))
|
/freebsd/sys/cddl/contrib/opensolaris/uts/common/sys/ |
H A D | bitmap.h | 151 size_t end_pos);
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/ |
H A D | CPlusPlusNameParser.cpp | 738 unsigned end_pos = end_loc.getRawEncoding() + last_token.getLength(); in GetTextForRange() local 739 return m_text.take_front(end_pos).drop_front(start_pos); in GetTextForRange()
|
/freebsd/contrib/llvm-project/lldb/source/Target/ |
H A D | StackFrame.cpp | 771 size_t end_pos = var_expr.find_first_of(']'); in GetValueForVariableExpressionPath() local 772 if (end_pos == llvm::StringRef::npos) { in GetValueForVariableExpressionPath() 778 llvm::StringRef index_expr = var_expr.take_front(end_pos); in GetValueForVariableExpressionPath() 781 var_expr = var_expr.drop_front(end_pos + 1); in GetValueForVariableExpressionPath()
|
/freebsd/contrib/libarchive/libarchive/ |
H A D | archive_read_support_format_rar5.c | 181 uint16_t end_pos; member 385 d->end_pos = 0; in cdeque_clear() 438 d->arr[d->end_pos] = (size_t) item; in cdeque_push_back() 439 d->end_pos = (d->end_pos + 1) & d->cap_mask; in cdeque_push_back() 490 d->end_pos = -1; in cdeque_free()
|