Home
last modified time | relevance | path

Searched refs:nlines (Results 1 – 25 of 41) sorted by relevance

12

/external/syslinux/gpxe/src/hci/mucurses/
Dwindows.c49 WINDOW *derwin ( WINDOW *parent, int nlines, int ncols, in derwin() argument
57 ( (unsigned)nlines > parent->height ) ) in derwin()
61 child->height = nlines; in derwin()
121 WINDOW *newwin ( int nlines, int ncols, int begin_y, int begin_x ) { in newwin() argument
125 if ( ( (unsigned)( begin_y + nlines ) > stdscr->height ) && in newwin()
130 win->height = nlines; in newwin()
147 WINDOW *subwin ( WINDOW *parent, int nlines, int ncols, in subwin() argument
154 child = newwin( nlines, ncols, begin_y, begin_x ); in subwin()
/external/elfutils/libdw/
Ddwarf_entry_breakpoints.c68 Dwarf_Lines *lines, size_t nlines, in search_range() argument
71 size_t l = 0, u = nlines; in search_range()
95 while (++l < nlines && lines->info[l].addr < high) in search_range()
113 size_t nlines; in dwarf_entry_breakpoints() local
114 if (INTUSE(dwarf_getsrclines) (&cudie, &lines, &nlines) < 0) in dwarf_entry_breakpoints()
134 return search_range (begin, end, true, true, lines, nlines, bkpts, &nbkpts) in dwarf_entry_breakpoints()
143 lines, nlines, bkpts, &nbkpts) < 0) in dwarf_entry_breakpoints()
161 lines, nlines, bkpts, &nbkpts)) in dwarf_entry_breakpoints()
Ddwarf_getsrc_die.c42 size_t nlines; in dwarf_getsrc_die() local
44 if (INTUSE(dwarf_getsrclines) (cudie, &lines, &nlines) != 0) in dwarf_getsrc_die()
48 if (nlines > 0) in dwarf_getsrc_die()
50 size_t l = 0, u = nlines - 1; in dwarf_getsrc_die()
62 assert (lines->info[nlines - 1].end_sequence); in dwarf_getsrc_die()
Ddwarf_getsrc_file.c69 size_t nlines; in dwarf_getsrc_file() local
70 if (INTUSE(dwarf_getsrclines) (cudie, &lines, &nlines) != 0) in dwarf_getsrc_file()
85 for (size_t cnt = 0; cnt < nlines; ++cnt) in dwarf_getsrc_file()
Ddwarf_getsrcfiles.c57 size_t nlines; in dwarf_getsrcfiles() local
61 res = INTUSE(dwarf_getsrclines) (cudie, &lines, &nlines); in dwarf_getsrcfiles()
Ddwarf_decl_file.c62 size_t nlines; in dwarf_decl_file() local
66 (void) INTUSE(dwarf_getsrclines) (&CUDIE (cu), &lines, &nlines); in dwarf_decl_file()
Ddwarf_onesrcline.c43 if (idx >= lines->nlines) in dwarf_onesrcline()
Ddwarf_getsrclines.c793 lines->nlines = state.nlinelist; in read_srclines()
905 dwarf_getsrclines (Dwarf_Die *cudie, Dwarf_Lines **lines, size_t *nlines) in dwarf_getsrclines() argument
944 *nlines = cu->lines->nlines; in dwarf_getsrclines()
/external/elfutils/libdwfl/
Ddwfl_module_getsrc.c46 size_t nlines = lines->nlines; in dwfl_module_getsrc() local
47 if (nlines > 0) in dwfl_module_getsrc()
50 assert(lines->info[nlines - 1].end_sequence); in dwfl_module_getsrc()
56 size_t l = 0, u = nlines - 1; in dwfl_module_getsrc()
Dlines.c39 size_t nlines; in __libdwfl_cu_getsrclines() local
40 if (INTUSE(dwarf_getsrclines) (&cu->die, &lines, &nlines) != 0) in __libdwfl_cu_getsrclines()
43 cu->lines = malloc (offsetof (struct Dwfl_Lines, idx[nlines])); in __libdwfl_cu_getsrclines()
47 for (unsigned int i = 0; i < nlines; ++i) in __libdwfl_cu_getsrclines()
Ddwfl_getsrclines.c32 dwfl_getsrclines (Dwarf_Die *cudie, size_t *nlines) in dwfl_getsrclines() argument
46 *nlines = cu->die.cu->lines->nlines; in dwfl_getsrclines()
Ddwfl_onesrcline.c49 if (idx >= cu->die.cu->lines->nlines) in dwfl_onesrcline()
/external/libjpeg-turbo/
Dbmp.c228 int i, nlines=(*src->get_pixel_rows)(&cinfo, src); in loadbmp() local
229 for(i=0; i<nlines; i++) in loadbmp()
236 nlines); in loadbmp()
238 cinfo.next_scanline+=nlines; in loadbmp()
316 int i, nlines=dst->buffer_height; in savebmp() local
317 for(i=0; i<nlines; i++) in savebmp()
324 nlines); in savebmp()
326 (*dst->put_pixel_rows)(&dinfo, dst, nlines); in savebmp()
327 dinfo.output_scanline+=nlines; in savebmp()
/external/ltp/testcases/network/nfs/nfslock01/
Dnfs_flock_dgen.c11 int i, j, k, nlines, nchars, ctype; in main() local
29 nlines = atoi(argv[3]); in main()
33 for (i = 1; i <= nlines; i++) { in main()
/external/python/cpython2/Lib/test/
Dcurses_tests.py14 ncols, nlines = 8, 3
23 win = curses.newwin(nlines, ncols, uly, ulx)
24 textpad.rectangle(stdscr, uly-1, ulx-1, uly + nlines, ulx + ncols)
/external/python/cpython3/Lib/test/
Dcurses_tests.py14 ncols, nlines = 8, 3
23 win = curses.newwin(nlines, ncols, uly, ulx)
24 textpad.rectangle(stdscr, uly-1, ulx-1, uly + nlines, ulx + ncols)
/external/elfutils/tests/
Dline2addr.c77 size_t nlines = 0; in handle_module() local
79 if (dwfl_module_getsrc_file (mod, a->file, a->line, 0, &lines, &nlines) == 0) in handle_module()
81 for (size_t inner = 0; inner < nlines; ++inner) in handle_module()
/external/syslinux/com32/cmenu/libmenu/
Dhelp.c57 int nlines, i; in printtext() local
60 nlines = nr - HELP_BODY_ROW - HELP_BOTTOM_MARGIN - 1; in printtext()
69 for (i = 0; i < nlines; i++) { in printtext()
/external/python/cpython2/Modules/
D_cursesmodule.c750 int nlines, ncols, begin_y, begin_x; in PyCursesWindow_DerWin() local
752 nlines = 0; in PyCursesWindow_DerWin()
761 &nlines,&ncols,&begin_y,&begin_x)) in PyCursesWindow_DerWin()
769 win = derwin(self->win,nlines,ncols,begin_y,begin_x); in PyCursesWindow_DerWin()
1445 int nlines, ncols, begin_y, begin_x; in PyCursesWindow_SubWin() local
1447 nlines = 0; in PyCursesWindow_SubWin()
1456 &nlines,&ncols,&begin_y,&begin_x)) in PyCursesWindow_SubWin()
1467 win = subpad(self->win, nlines, ncols, begin_y, begin_x); in PyCursesWindow_SubWin()
1470 win = subwin(self->win, nlines, ncols, begin_y, begin_x); in PyCursesWindow_SubWin()
1483 int nlines; in PyCursesWindow_Scroll() local
[all …]
/external/python/cpython2/Lib/curses/
Dtextpad.py179 ncols, nlines = 9, 4
182 win = curses.newwin(nlines, ncols, uly, ulx)
183 rectangle(stdscr, uly-1, ulx-1, uly + nlines, ulx + ncols)
/external/python/cpython3/Lib/curses/
Dtextpad.py192 ncols, nlines = 9, 4
195 win = curses.newwin(nlines, ncols, uly, ulx)
196 rectangle(stdscr, uly-1, ulx-1, uly + nlines, ulx + ncols)
/external/python/cpython3/Modules/
D_cursesmodule.c1016 int nlines, ncols, begin_y, begin_x; in PyCursesWindow_DerWin() local
1018 nlines = 0; in PyCursesWindow_DerWin()
1027 &nlines,&ncols,&begin_y,&begin_x)) in PyCursesWindow_DerWin()
1035 win = derwin(self->win,nlines,ncols,begin_y,begin_x); in PyCursesWindow_DerWin()
1834 int nlines, ncols, begin_y, begin_x; in PyCursesWindow_SubWin() local
1836 nlines = 0; in PyCursesWindow_SubWin()
1845 &nlines,&ncols,&begin_y,&begin_x)) in PyCursesWindow_SubWin()
1856 win = subpad(self->win, nlines, ncols, begin_y, begin_x); in PyCursesWindow_SubWin()
1859 win = subwin(self->win, nlines, ncols, begin_y, begin_x); in PyCursesWindow_SubWin()
1872 int nlines; in PyCursesWindow_Scroll() local
[all …]
/external/python/cpython2/Lib/
Dmarkupbase.py53 nlines = rawdata.count("\n", i, j)
54 if nlines:
55 self.lineno = self.lineno + nlines
/external/python/cpython3/Lib/
D_markupbase.py52 nlines = rawdata.count("\n", i, j)
53 if nlines:
54 self.lineno = self.lineno + nlines
/external/pdfium/core/fxcodec/codec/
Dfx_codec_jpeg.cpp329 int nlines = jpeg_read_scanlines(&cinfo, &m_pScanlineBuf, 1); in v_GetNextLine() local
330 return nlines > 0 ? m_pScanlineBuf : nullptr; in v_GetNextLine()
486 unsigned int nlines = jpeg_read_scanlines(&ctx->m_Info, &dest_buf, 1); local
487 return nlines == 1;

12