/external/syslinux/gpxe/src/hci/mucurses/ |
D | windows.c | 49 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/ |
D | dwarf_entry_breakpoints.c | 68 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()
|
D | dwarf_getsrc_die.c | 42 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()
|
D | dwarf_getsrc_file.c | 69 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()
|
D | dwarf_getsrcfiles.c | 57 size_t nlines; in dwarf_getsrcfiles() local 61 res = INTUSE(dwarf_getsrclines) (cudie, &lines, &nlines); in dwarf_getsrcfiles()
|
D | dwarf_decl_file.c | 62 size_t nlines; in dwarf_decl_file() local 66 (void) INTUSE(dwarf_getsrclines) (&CUDIE (cu), &lines, &nlines); in dwarf_decl_file()
|
D | dwarf_onesrcline.c | 43 if (idx >= lines->nlines) in dwarf_onesrcline()
|
D | dwarf_getsrclines.c | 793 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/ |
D | dwfl_module_getsrc.c | 46 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()
|
D | lines.c | 39 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()
|
D | dwfl_getsrclines.c | 32 dwfl_getsrclines (Dwarf_Die *cudie, size_t *nlines) in dwfl_getsrclines() argument 46 *nlines = cu->die.cu->lines->nlines; in dwfl_getsrclines()
|
D | dwfl_onesrcline.c | 49 if (idx >= cu->die.cu->lines->nlines) in dwfl_onesrcline()
|
/external/libjpeg-turbo/ |
D | bmp.c | 228 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/ |
D | nfs_flock_dgen.c | 11 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/ |
D | curses_tests.py | 14 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/ |
D | curses_tests.py | 14 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/ |
D | line2addr.c | 77 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/ |
D | help.c | 57 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.c | 750 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/ |
D | textpad.py | 179 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/ |
D | textpad.py | 192 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.c | 1016 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/ |
D | markupbase.py | 53 nlines = rawdata.count("\n", i, j) 54 if nlines: 55 self.lineno = self.lineno + nlines
|
/external/python/cpython3/Lib/ |
D | _markupbase.py | 52 nlines = rawdata.count("\n", i, j) 53 if nlines: 54 self.lineno = self.lineno + nlines
|
/external/pdfium/core/fxcodec/codec/ |
D | fx_codec_jpeg.cpp | 329 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;
|