Searched defs:nlines (Results 1 - 22 of 22) sorted by relevance

/external/elfutils/libdwfl/
H A Dlines.c39 size_t nlines; local
40 if (INTUSE(dwarf_getsrclines) (&cu->die, &lines, &nlines) != 0)
43 cu->lines = malloc (offsetof (struct Dwfl_Lines, idx[nlines]));
47 for (unsigned int i = 0; i < nlines; ++i)
H A Ddwfl_getsrclines.c32 dwfl_getsrclines (Dwarf_Die *cudie, size_t *nlines) argument
46 *nlines = cu->die.cu->lines->nlines;
H A Ddwfl_module_getsrc.c46 size_t nlines = lines->nlines; local
47 if (nlines > 0)
50 assert(lines->info[nlines - 1].end_sequence);
56 size_t l = 0, u = nlines - 1;
/external/elfutils/libdw/
H A Ddwarf_decl_file.c62 size_t nlines; local
66 (void) INTUSE(dwarf_getsrclines) (&CUDIE (cu), &lines, &nlines); local
H A Ddwarf_getsrc_die.c42 size_t nlines; local
44 if (INTUSE(dwarf_getsrclines) (cudie, &lines, &nlines) != 0)
48 if (nlines > 0)
50 size_t l = 0, u = nlines - 1;
62 assert (lines->info[nlines - 1].end_sequence);
H A Ddwarf_getsrcfiles.c57 size_t nlines; local
61 res = INTUSE(dwarf_getsrclines) (cudie, &lines, &nlines);
H A Ddwarf_entry_breakpoints.c68 Dwarf_Lines *lines, size_t nlines,
71 size_t l = 0, u = nlines;
95 while (++l < nlines && lines->info[l].addr < high)
113 size_t nlines; local
114 if (INTUSE(dwarf_getsrclines) (&cudie, &lines, &nlines) < 0)
134 return search_range (begin, end, true, true, lines, nlines, bkpts, &nbkpts)
143 lines, nlines, bkpts, &nbkpts) < 0)
161 lines, nlines, bkpts, &nbkpts))
66 search_range(Dwarf_Addr low, Dwarf_Addr high, bool dwarf, bool adhoc, Dwarf_Lines *lines, size_t nlines, Dwarf_Addr **bkpts, int *pnbkpts) argument
H A Ddwarf_getsrc_file.c69 size_t nlines; local
70 if (INTUSE(dwarf_getsrclines) (cudie, &lines, &nlines) != 0)
85 for (size_t cnt = 0; cnt < nlines; ++cnt)
H A Ddwarf_getsrclines.c793 lines->nlines = state.nlinelist;
905 dwarf_getsrclines (Dwarf_Die *cudie, Dwarf_Lines **lines, size_t *nlines) argument
944 *nlines = cu->lines->nlines;
H A DlibdwP.h266 size_t nlines; member in struct:Dwarf_Lines_s
/external/ltp/testcases/network/nfs/nfslock01/
H A Dnfs_flock_dgen.c11 int i, j, k, nlines, nchars, ctype; local
29 nlines = atoi(argv[3]);
33 for (i = 1; i <= nlines; i++) {
/external/syslinux/gpxe/src/hci/mucurses/
H A Dwindows.c43 * @v nlines window height
49 WINDOW *derwin ( WINDOW *parent, int nlines, int ncols, argument
57 ( (unsigned)nlines > parent->height ) )
61 child->height = nlines;
115 * @v nlines number of lines
121 WINDOW *newwin ( int nlines, int ncols, int begin_y, int begin_x ) { argument
125 if ( ( (unsigned)( begin_y + nlines ) > stdscr->height ) &&
130 win->height = nlines;
141 * @v nlines window height
147 WINDOW *subwin ( WINDOW *parent, int nlines, in argument
[all...]
/external/elfutils/tests/
H A Dline2addr.c77 size_t nlines = 0; local
79 if (dwfl_module_getsrc_file (mod, a->file, a->line, 0, &lines, &nlines) == 0)
81 for (size_t inner = 0; inner < nlines; ++inner)
/external/syslinux/com32/cmenu/libmenu/
H A Dhelp.c57 int nlines, i; local
60 nlines = nr - HELP_BODY_ROW - HELP_BOTTOM_MARGIN - 1;
69 for (i = 0; i < nlines; i++) {
/external/libjpeg-turbo/
H A Dbmp.c228 int i, nlines=(*src->get_pixel_rows)(&cinfo, src); local
229 for(i=0; i<nlines; i++)
236 nlines);
238 cinfo.next_scanline+=nlines;
316 int i, nlines=dst->buffer_height; local
317 for(i=0; i<nlines; i++)
324 nlines);
326 (*dst->put_pixel_rows)(&dinfo, dst, nlines);
327 dinfo.output_scanline+=nlines;
/external/pdfium/core/fxcodec/codec/
H A Dfx_codec_jpeg.cpp329 int nlines = jpeg_read_scanlines(&cinfo, &m_pScanlineBuf, 1); local
330 return nlines > 0 ? m_pScanlineBuf : nullptr;
486 unsigned int nlines = jpeg_read_scanlines(&ctx->m_Info, &dest_buf, 1); local
487 return nlines == 1;
/external/libvncserver/libvncserver/
H A Drfbserver.c3242 int nlines; local
3266 nlines = (UPDATE_BUF_SIZE - cl->ublen) / bytesPerLine;
3269 if (nlines > h)
3270 nlines = h;
3275 cl->scaledScreen->paddedWidthInBytes, w, nlines);
3277 cl->ublen += nlines * bytesPerLine;
3278 h -= nlines;
3283 /* buffer full - flush partial rect and do another nlines */
3288 fbptr += (cl->scaledScreen->paddedWidthInBytes * nlines);
3290 nlines
[all...]
/external/python/cpython2/Modules/
H A D_cursesmodule.c338 Window_OneArgNoReturnFunction(winsdelln, int, "i;nlines")
750 int nlines, ncols, begin_y, begin_x; local
752 nlines = 0;
760 if (!PyArg_ParseTuple(args, "iiii;nlines,ncols,begin_y,begin_x",
761 &nlines,&ncols,&begin_y,&begin_x))
769 win = derwin(self->win,nlines,ncols,begin_y,begin_x);
1445 int nlines, ncols, begin_y, begin_x; local
1447 nlines = 0;
1455 if (!PyArg_ParseTuple(args, "iiii;nlines,ncols,begin_y,begin_x",
1456 &nlines,
1483 int nlines; local
2221 int nlines, ncols; local
2241 int nlines, ncols, begin_y=0, begin_x=0; local
[all...]
/external/python/cpython3/Modules/
H A D_cursesmodule.c501 Window_OneArgNoReturnFunction(winsdelln, int, "i;nlines")
1016 int nlines, ncols, begin_y, begin_x; local
1018 nlines = 0;
1026 if (!PyArg_ParseTuple(args, "iiii;nlines,ncols,begin_y,begin_x",
1027 &nlines,&ncols,&begin_y,&begin_x))
1035 win = derwin(self->win,nlines,ncols,begin_y,begin_x);
1834 int nlines, ncols, begin_y, begin_x; local
1836 nlines = 0;
1844 if (!PyArg_ParseTuple(args, "iiii;nlines,ncols,begin_y,begin_x",
1845 &nlines,
1872 int nlines; local
2707 int nlines, ncols; local
2727 int nlines, ncols, begin_y=0, begin_x=0; local
[all...]
/external/libedit/src/
H A Dreadline.c1172 history_truncate_file (const char *filename, int nlines) argument
1241 if (--nlines == 0) {
1250 if (nlines <= 0 || count == 0)
1268 if (ret || nlines > 0)
/external/valgrind/coregrind/m_debuginfo/
H A Dreadpdb.c1678 DWORD nlines; /* number of lines in this block */ member in struct:codeview_linetab2_block
1685 } l[1]; /* actually array of <nlines> */
1725 lbh->size, lbh->nlines);
1763 for (i = 0; i < lbh->nlines; i++) {
1769 if (lbh->nlines > 1) {
1770 for (i = 0; i < lbh->nlines-1; i++) {
1786 + lbh->l[ lbh->nlines-1].offset;
1791 pfx, lbh->l[ lbh->nlines-1 ].lineno ^ 0x80000000,
1797 lbh->l[lbh->nlines-1].lineno ^ 0x80000000, 0 );
/external/elfutils/src/
H A Dreadelf.c6390 size_t nlines; local
6392 if (dwarf_getsrclines (&cudie, &lines, &nlines) != 0)
6400 for (size_t n = 0; n < nlines; n++)

Completed in 1837 milliseconds