Searched refs:num_lines (Results 1 - 25 of 25) sorted by relevance

/openbsd-current/lib/libcurses/base/
H A Dlib_newwin.c142 int num_lines, int num_columns, int begy, int begx)
148 T((T_CALLED("newwin(%p, %d,%d,%d,%d)"), (void *) SP_PARM, num_lines, num_columns,
153 || num_lines < 0
158 if (num_lines == 0)
159 num_lines = SP_PARM->_lines_avail - begy;
164 num_lines, num_columns, begy, begx, 0);
168 for (i = 0; i < num_lines; i++) {
185 newwin(int num_lines, int num_columns, int begy, int begx) argument
190 num_lines, num_columns, begy, begx);
197 derwin(WINDOW *orig, int num_lines, in argument
141 newwin(NCURSES_SP_DCLx int num_lines, int num_columns, int begy, int begx) argument
268 _nc_makenew(NCURSES_SP_DCLx int num_lines, int num_columns, int begy, int begx, int flags) argument
[all...]
/openbsd-current/gnu/usr.bin/binutils-2.17/gprof/
H A Dsource.h30 int num_lines; /* # of lines in file. */
29 int num_lines; /* # of lines in file. */ member in struct:source_file
H A Dbasic_blocks.c331 if (line_num <= sf->num_lines)
478 if (sym->file && sym->line_num > sym->file->num_lines
483 sym->file->num_lines = sym->line_num;
490 if (sf->num_lines > 0)
492 sf->line = (void *) xmalloc (sf->num_lines * sizeof (sf->line[0]));
493 memset (sf->line, 0, sf->num_lines * sizeof (sf->line[0]));
500 if (sym->file && sym->file->num_lines
533 if (!sf->num_lines || (ignore_zeros && sf->ncalls == 0))
548 qsort (sf->line, sf->num_lines, sizeof (sf->line[0]), cmp_ncalls);
551 if (table_len > sf->num_lines)
[all...]
/openbsd-current/gnu/usr.bin/binutils/gprof/
H A Dsource.h30 int num_lines; /* # of lines in file. */
29 int num_lines; /* # of lines in file. */ member in struct:source_file
H A Dbasic_blocks.c341 if (line_num <= sf->num_lines)
488 if (sym->file && sym->line_num > sym->file->num_lines
493 sym->file->num_lines = sym->line_num;
500 if (sf->num_lines > 0)
502 sf->line = (void *) xmalloc (sf->num_lines * sizeof (sf->line[0]));
503 memset (sf->line, 0, sf->num_lines * sizeof (sf->line[0]));
510 if (sym->file && sym->file->num_lines
543 if (!sf->num_lines || (ignore_zeros && sf->ncalls == 0))
558 qsort (sf->line, sf->num_lines, sizeof (sf->line[0]), cmp_ncalls);
561 if (table_len > sf->num_lines)
[all...]
/openbsd-current/gnu/llvm/lldb/source/Commands/
H A DCommandObjectSource.cpp63 if (option_arg.getAsInteger(0, num_lines))
97 num_lines = 0;
112 uint32_t num_lines; member in class:CommandObjectSourceInfo::CommandOptions
135 // end_line. If the num_lines option was specified, dont print more than
136 // num_lines entries.
143 uint32_t num_lines = m_options.num_lines; local
169 if (num_lines > 0 && num_matches > num_lines)
195 // specified, don't print lines greater than end_line. If the num_lines
201 uint32_t num_lines = m_options.num_lines; local
708 uint32_t num_lines; member in class:CommandObjectSourceList::CommandOptions
[all...]
H A DCommandObjectExpression.cpp495 const size_t num_lines = lines.GetSize(); local
496 if (num_lines > 0 && lines[num_lines - 1].empty()) {
/openbsd-current/games/atc/
H A Dgrammar.y248 if (sp->num_lines % REALLOC == 0) {
250 (sp->num_lines + REALLOC) ,
255 sp->line[sp->num_lines].p1.x = $3;
256 sp->line[sp->num_lines].p1.y = $4;
257 sp->line[sp->num_lines].p2.x = $7;
258 sp->line[sp->num_lines].p2.y = $8;
260 sp->num_lines++;
H A Dstruct.h67 int num_lines; member in struct:__anon46
H A Dgraphics.c163 for (i = 0; i < scp->num_lines; i++) {
/openbsd-current/sys/dev/pci/drm/amd/display/dc/dml/dcn314/
H A Ddcn314_fpu.c286 unsigned int num_lines = 0; local
291 num_lines = dml_ceil(1000.0 * num_us / lines_time_in_ns, 1.0);
293 return num_lines;
323 unsigned int num_lines = 0; local
331 num_lines = micro_sec_to_vert_lines(dcn3_14_ip.VBlankNomDefaultUS, timing);
341 pipes[pipe_cnt].pipe.dest.vblank_nom = min(pipes[pipe_cnt].pipe.dest.vblank_nom, num_lines);
/openbsd-current/gnu/llvm/lldb/examples/python/
H A Dlldbtk.py300 num_lines = self.cu.GetNumLineEntries()
305 'children': num_lines > 0,
324 num_lines = self.cu.GetNumLineEntries()
325 summary = '%u line entries' % (num_lines)
329 'children': num_lines > 0,
334 num_lines = self.cu.GetNumLineEntries()
335 for i in range(num_lines):
H A Dgdbremote.py1384 num_lines = len(lines)
1426 while idx < num_lines:
/openbsd-current/gnu/llvm/lldb/include/lldb/Core/
H A DIOHandler.h314 const size_t num_lines = lines.GetSize(); variable
315 if (num_lines > 0 && lines[num_lines - 1] == m_end_line) {
/openbsd-current/gnu/usr.bin/binutils/gdb/tui/
H A Dtui-regs.c76 int num_lines = (-1); local
80 num_lines = (TUI_DATA_WIN->detail.data_display_info.regs_content_count /
84 num_lines++;
86 return num_lines;
/openbsd-current/gnu/gcc/gcc/
H A Dgcov.c240 unsigned num_lines; member in struct:source_info
522 src->lines = XCNEWVEC (line_t, src->num_lines);
762 if (lineno >= src->num_lines)
763 src->num_lines = lineno + 1;
870 if (lineno >= src->num_lines)
871 src->num_lines = lineno + 1;
1573 for (ix = src->num_lines, line = src->lines; ix--; line++)
1823 line_num < src->num_lines; line_num++, line++)
/openbsd-current/distrib/special/more/
H A Dmore.c513 screen(FILE *f, int num_lines) argument
521 while (num_lines > 0 && !Pause) {
558 num_lines--;
576 if ((num_lines = command(NULL, f)) == 0)
580 if (noscroll && num_lines >= dlines) {
/openbsd-current/usr.bin/ssh/
H A Dmoduli.c575 char *checkpoint_file, unsigned long start_lineno, unsigned long num_lines)
590 if (num_lines == 0)
593 end_lineno = start_lineno + num_lines;
574 prime_test(FILE *in, FILE *out, u_int32_t trials, u_int32_t generator_wanted, char *checkpoint_file, unsigned long start_lineno, unsigned long num_lines) argument
/openbsd-current/sys/dev/pci/drm/
H A Ddrm_modes.c197 unsigned int num_lines; member in struct:analog_parameters
217 .num_lines = _lines, \
352 params->num_lines,
486 porches = params->num_lines - vactive - vslen;
497 if (params->num_lines != vtotal) {
499 vtotal, params->num_lines);
508 if (mode->vtotal != params->num_lines)
/openbsd-current/gnu/llvm/lldb/source/Core/
H A DIOHandlerCursesGUI.cpp807 const size_t num_lines = help_delegate_up->GetNumLines(); local
822 if (num_lines + 2 < static_cast<size_t>(bounds.size.height)) {
823 bounds.origin.y += (bounds.size.height - num_lines + 2) / 2;
824 bounds.size.height = num_lines + 2;
6220 const size_t num_lines = m_text.GetSize(); local
6222 if (num_lines <= num_visible_lines)
6239 const size_t num_lines = m_text.GetSize(); local
6242 if (num_lines <= num_visible_lines) {
6254 if (m_first_visible_line + num_visible_lines < num_lines)
6270 if (m_first_visible_line + num_visible_lines < num_lines) {
6894 const size_t num_lines = m_file_sp->GetNumLines(); variable
7231 size_t num_lines = GetNumSourceLines(); local
7251 const size_t num_lines = GetNumLines(); variable
[all...]
/openbsd-current/gnu/llvm/lldb/source/Expression/
H A DREPL.cpp140 const size_t num_lines = lines.GetSize(); local
141 if (num_lines == 1) {
/openbsd-current/gnu/llvm/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp1282 int num_lines = input.GetSize(); local
1283 if (num_lines == 0) {
1311 for (int i = 0; i < num_lines; ++i) {
1391 int num_lines = user_input.GetSize(); local
1413 for (int i = 0; i < num_lines; ++i) {
/openbsd-current/gnu/llvm/lldb/source/Interpreter/
H A DCommandInterpreter.cpp2535 size_t num_lines = commands.GetSize(); local
2547 for (size_t idx = 0; idx < num_lines && !WasInterrupted(); idx++) {
2611 if (idx != num_lines - 1)
2631 if (idx != num_lines - 1)
/openbsd-current/usr.sbin/nsd/
H A Dixfr.c1765 int num_lines = 0, got_old = 0, got_new = 0, got_datasize = 0; local
1775 while(!(got_old && got_new && got_datasize) && num_lines < 10) {
1784 num_lines++;
/openbsd-current/gnu/llvm/lldb/source/Target/
H A DStackFrame.cpp1921 size_t num_lines = local
1925 if (num_lines != 0)

Completed in 353 milliseconds