HomeSort by relevance Sort by last modified time
    Searched defs:nlines (Results 1 - 25 of 25) sorted by null

  /external/elfutils/libdwfl/
lines.c 39 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)
dwfl_module_getsrc.c 46 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/
dwarf_getsrcfiles.c 57 size_t nlines; local
61 res = INTUSE(dwarf_getsrclines) (cudie, &lines, &nlines);
dwarf_decl_file.c 62 size_t nlines; local
66 (void) INTUSE(dwarf_getsrclines) (&CUDIE (cu), &lines, &nlines); local
dwarf_getsrc_die.c 42 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);
dwarf_entry_breakpoints.c 68 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))
dwarf_getsrc_file.c 69 size_t nlines; local
70 if (INTUSE(dwarf_getsrclines) (cudie, &lines, &nlines) != 0)
85 for (size_t cnt = 0; cnt < nlines; ++cnt)
libdwP.h 266 size_t nlines; member in struct:Dwarf_Lines_s
  /external/ltp/testcases/network/nfs/nfslock01/
nfs_flock_dgen.c 11 int i, j, k, nlines, nchars, ctype; local
29 nlines = atoi(argv[3]);
33 for (i = 1; i <= nlines; i++) {
  /external/elfutils/tests/
line2addr.c 77 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)
  /prebuilts/go/darwin-x86/src/encoding/json/
stream_test.go 55 if have, want := buf.String(), nlines(streamEncoded, i); have != want {
134 for _, c := range nlines(streamEncoded, i) {
180 func nlines(s string, n int) string { func
  /prebuilts/go/linux-x86/src/encoding/json/
stream_test.go 55 if have, want := buf.String(), nlines(streamEncoded, i); have != want {
134 for _, c := range nlines(streamEncoded, i) {
180 func nlines(s string, n int) string { func
  /art/test/ti-agent/
breakpoint_helper.cc 69 jint nlines; local
72 jvmti_env->GetLineNumberTable(method, &nlines, &lines))) {
75 jintArray lines_array = env->NewIntArray(nlines);
80 jlongArray locs_array = env->NewLongArray(nlines);
97 for (jint i = 0; i < nlines; i++) {
  /external/syslinux/com32/cmenu/libmenu/
help.c 57 int nlines, i; local
60 nlines = nr - HELP_BODY_ROW - HELP_BOTTOM_MARGIN - 1;
69 for (i = 0; i < nlines; i++) {
  /external/libjpeg-turbo/
bmp.c 228 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;
  /art/tools/breakpoint-logger/
breakpoint_logger.cc 198 jint nlines; local
200 jvmtiError err = jvmti_env_->GetLineNumberTable(method_, &nlines, &lines);
202 if (nlines > 0) {
  /external/pdfium/core/fxcodec/codec/
fx_codec_jpeg.cpp 329 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;
  /art/test/ti-stress/
stress.cc 242 jint nlines; local
244 jvmtiError err = jvmtienv_->GetLineNumberTable(method_, &nlines, &lines);
246 if (nlines > 0) {
  /toolchain/binutils/binutils-2.27/opcodes/
opc2c.c 98 int nlines; member in struct:__anon5100
341 for (i = 0; i < op->nlines; i++)
653 op->nlines = 0;
712 op->nlines++;
715 (char **) realloc (op->lines, op->nlines * sizeof (char *));
717 op->lines = (char **) malloc (op->nlines * sizeof (char *));
718 op->lines[op->nlines - 1] = strdup (line);
735 if (opcodes[i]->nlines == 0)
737 opcodes[i]->nlines = opcodes[i + 1]->nlines;
    [all...]
  /toolchain/binutils/binutils-2.27/binutils/
coffgrok.h 155 int nlines; member in struct:coff_line
  /external/libvncserver/libvncserver/
rfbserver.c 3242 int nlines; local
    [all...]
  /external/python/cpython2/Modules/
_cursesmodule.c 338 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
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/
_cursesmodule.c 501 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
1872 int nlines; local
2707 int nlines, ncols; local
2727 int nlines, ncols, begin_y=0, begin_x=0; local
    [all...]
  /external/valgrind/coregrind/m_debuginfo/
readpdb.c 1678 DWORD nlines; \/* number of lines in this block *\/ member in struct:codeview_linetab2_block
    [all...]
  /external/elfutils/src/
readelf.c 6390 size_t nlines; local
    [all...]

Completed in 734 milliseconds