/freebsd/contrib/ncurses/ncurses/base/ |
H A D | lib_newwin.c | 140 int num_lines, int num_columns, int begy, int begx) in NCURSES_SP_NAME() 146 T((T_CALLED("newwin(%p, %d,%d,%d,%d)"), (void *) SP_PARM, num_lines, num_columns, in NCURSES_SP_NAME() 151 || num_lines < 0 in NCURSES_SP_NAME() 156 if (num_lines == 0) in NCURSES_SP_NAME() 157 num_lines = SP_PARM->_lines_avail - begy; in NCURSES_SP_NAME() 162 num_lines, num_columns, begy, begx, 0); in NCURSES_SP_NAME() 166 for (i = 0; i < num_lines; i++) { in NCURSES_SP_NAME() 183 newwin(int num_lines, int num_columns, int begy, int begx) in newwin() argument 188 num_lines, num_columns, begy, begx); in newwin() 195 derwin(WINDOW *orig, int num_lines, int num_columns, int begy, int begx) in derwin() argument [all …]
|
/freebsd/lib/libc/locale/ |
H A D | ldpart.c | 55 int saverr, fd, i, num_lines; in __part_load_locale() local 115 num_lines = split_lines(p, plim); in __part_load_locale() 116 if (num_lines >= locale_buf_size_max) in __part_load_locale() 117 num_lines = locale_buf_size_max; in __part_load_locale() 118 else if (num_lines >= locale_buf_size_min) in __part_load_locale() 119 num_lines = locale_buf_size_min; in __part_load_locale() 131 for (p = *locale_buf, i = 0; i < num_lines; i++) in __part_load_locale() 133 for (i = num_lines; i < locale_buf_size_max; i++) in __part_load_locale()
|
/freebsd/contrib/llvm-project/lldb/source/Commands/ |
H A D | CommandObjectSource.cpp | 64 if (option_arg.getAsInteger(0, num_lines)) in SetOptionValue() 98 num_lines = 0; in OptionParsingStarting() 113 uint32_t num_lines; member in CommandObjectSourceInfo::CommandOptions 144 uint32_t num_lines = m_options.num_lines; in DumpLinesInSymbolContexts() local 167 if (num_lines > 0 && num_matches > num_lines) in DumpLinesInSymbolContexts() 199 uint32_t num_lines = m_options.num_lines; in DumpFileLinesInCompUnit() local 240 if (num_lines > 0 && num_matches > num_lines) in DumpFileLinesInCompUnit() 628 if (option_arg.getAsInteger(0, num_lines)) in SetOptionValue() 684 num_lines = 0; in OptionParsingStarting() 700 uint32_t num_lines; member in CommandObjectSourceList::CommandOptions [all …]
|
H A D | CommandObjectExpression.cpp | 531 const size_t num_lines = lines.GetSize(); in IOHandlerIsInputComplete() local 532 if (num_lines > 0 && lines[num_lines - 1].empty()) { in IOHandlerIsInputComplete()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/ |
H A D | IOHandler.h | 310 const size_t num_lines = lines.GetSize(); in IOHandlerIsInputComplete() local 313 if (num_lines > 0 && llvm::StringRef(lines[num_lines - 1]) == end_line) { in IOHandlerIsInputComplete()
|
/freebsd/crypto/openssh/ |
H A D | moduli.c | 581 char *checkpoint_file, unsigned long start_lineno, unsigned long num_lines) in prime_test() argument 596 if (num_lines == 0) in prime_test() 599 end_lineno = start_lineno + num_lines; in prime_test()
|
/freebsd/contrib/llvm-project/lldb/source/Core/ |
H A D | IOHandlerCursesGUI.cpp | 806 const size_t num_lines = help_delegate_up->GetNumLines(); in CreateHelpSubwindow() local 821 if (num_lines + 2 < static_cast<size_t>(bounds.size.height)) { in CreateHelpSubwindow() 822 bounds.origin.y += (bounds.size.height - num_lines + 2) / 2; in CreateHelpSubwindow() 823 bounds.size.height = num_lines + 2; in CreateHelpSubwindow() 6240 const size_t num_lines = m_text.GetSize(); in WindowDelegateDraw() local 6242 if (num_lines <= num_visible_lines) in WindowDelegateDraw() 6259 const size_t num_lines = m_text.GetSize(); in WindowDelegateHandleChar() local 6262 if (num_lines <= num_visible_lines) { in WindowDelegateHandleChar() 6274 if (m_first_visible_line + num_visible_lines < num_lines) in WindowDelegateHandleChar() 6290 if (m_first_visible_line + num_visible_lines < num_lines) { in WindowDelegateHandleChar() [all …]
|
/freebsd/contrib/llvm-project/openmp/runtime/src/ |
H A D | kmp_alloc.cpp | 2078 size_t num_lines, idx; in ___kmp_fast_allocate() local 2087 num_lines = (size + DCACHE_LINE - 1) / DCACHE_LINE; in ___kmp_fast_allocate() 2088 idx = num_lines - 1; in ___kmp_fast_allocate() 2092 num_lines = 2; // 1, 2 cache lines or less than cache line in ___kmp_fast_allocate() 2095 num_lines = 4; // 3, 4 cache lines in ___kmp_fast_allocate() 2098 num_lines = 16; // 5, 6, ..., 16 cache lines in ___kmp_fast_allocate() 2101 num_lines = 64; // 17, 18, ..., 64 cache lines in ___kmp_fast_allocate() 2136 size = num_lines * DCACHE_LINE; in ___kmp_fast_allocate()
|
/freebsd/contrib/llvm-project/lldb/source/Expression/ |
H A D | REPL.cpp | 143 const size_t num_lines = lines.GetSize(); in IOHandlerIsInputComplete() local 144 if (num_lines == 1) { in IOHandlerIsInputComplete()
|
/freebsd/usr.sbin/bsdconfig/share/ |
H A D | strings.subr | 495 BEGIN { num_lines = 0 } 497 num_lines += split(" "$0, unused, /\\n/) 499 END { print num_lines }
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/ |
H A D | ScriptInterpreterPython.cpp | 1302 int num_lines = input.GetSize(); in GenerateFunction() local 1303 if (num_lines == 0) { in GenerateFunction() 1331 if (num_lines == 1) { in GenerateFunction() 1347 for (int i = 0; i < num_lines; ++i) { in GenerateFunction() 1434 int num_lines = user_input.GetSize(); in GenerateTypeSynthClass() local 1456 for (int i = 0; i < num_lines; ++i) { in GenerateTypeSynthClass()
|
/freebsd/contrib/llvm-project/lldb/source/Interpreter/ |
H A D | CommandInterpreter.cpp | 2551 size_t num_lines = commands.GetSize(); in HandleCommands() local 2563 for (size_t idx = 0; idx < num_lines; idx++) { in HandleCommands() 2627 if (idx != num_lines - 1) in HandleCommands() 2647 if (idx != num_lines - 1) in HandleCommands()
|
/freebsd/contrib/llvm-project/lldb/source/Target/ |
H A D | StackFrame.cpp | 1914 size_t num_lines = in GetStatus() local 1918 if (num_lines != 0) in GetStatus()
|
/freebsd/contrib/ncurses/ncurses/ |
H A D | llib-lncursest | 1649 int num_lines, 1657 int num_lines, 1666 int num_lines, 1684 int num_lines,
|
H A D | llib-lncurses | 1640 int num_lines, 1648 int num_lines, 1657 int num_lines, 1675 int num_lines,
|
H A D | llib-lncursestw | 2230 int num_lines, 2238 int num_lines, 2247 int num_lines, 2265 int num_lines,
|
H A D | llib-lncursesw | 2221 int num_lines, 2229 int num_lines, 2238 int num_lines, 2256 int num_lines,
|
/freebsd/contrib/netbsd-tests/lib/libcurses/slave/ |
H A D | curses_commands.c | 5450 int beg_line, num_lines; in cmd_wredrawln() local 5467 if (sscanf(args[2], "%d", &num_lines) == 0) { in cmd_wredrawln() 5474 report_return(wredrawln(win, beg_line, num_lines)); in cmd_wredrawln()
|
/freebsd/contrib/ncurses/ |
H A D | NEWS | 12875 + correct maxx/maxy expression for num_columns/num_lines in derwin
|