HomeSort by relevance Sort by last modified time
    Searched full:nfiles (Results 1 - 25 of 37) sorted by null

1 2

  /system/extras/tests/storage/
opentest.c 29 int nfiles; local
43 nfiles = atoi(argv[2]);
44 if ((nfiles <= 0) || (nfiles > 65536)) {
64 fds = malloc(nfiles * sizeof(int));
66 fprintf(stderr, "Unable to malloc array of %d fds\n", nfiles);
75 rlim.rlim_cur = nfiles + 10;
76 rlim.rlim_max = nfiles + 10;
82 for (i = 0; i < nfiles; i++) {
  /external/elfutils/libdw/
dwarf_getsrcfiles.c 40 dwarf_getsrcfiles (Dwarf_Die *cudie, Dwarf_Files **files, size_t *nfiles)
71 if (nfiles != NULL)
72 *nfiles = cu->files->nfiles;
dwarf_macro_getsrcfiles.c 37 Dwarf_Files **files, size_t *nfiles)
47 *nfiles = 0;
84 *nfiles = table->files->nfiles;
dwarf_filesrc.c 41 if (file == NULL || idx >= file->nfiles)
dwarf_getsrcdirs.c 42 *result = (void *) &files->info[files->nfiles];
dwarf_linesrc.c 43 if (line->file >= line->files->nfiles)
dwarf_decl_file.c 80 if (idx >= cu->files->nfiles)
dwarf_getscopevar.c 61 if (idx >= files->nfiles)
dwarf_getsrc_file.c 92 if (lastfile >= line->files->nfiles)
libdwP.h 229 unsigned int nfiles; member in struct:Dwarf_Files_s
236 /* nfiles of those, followed by char *[ndirs]. */
  /external/libpng/contrib/libtests/
timepng.c 111 static int perform_one_test(FILE *fp, int nfiles)
121 for (i=0; i<nfiles; ++i)
230 int nfiles = 0; local
239 ++nfiles;
261 ++nfiles;
288 if (nfiles > 0)
289 ok = perform_one_test(fp, nfiles);
  /external/elfutils/tests/
get-files.c 71 size_t nfiles; local
72 if (dwarf_getsrcfiles (die, &files, &nfiles) != 0)
95 for (size_t i = 0; i < nfiles; ++i)
dwarf-getmacros.c 62 size_t nfiles; local
63 if (dwarf_macro_getsrcfiles (dbg, macro, &files, &nfiles) < 0)
  /prebuilts/go/darwin-x86/src/cmd/gofmt/
long_test.go 32 nfiles int // number of files processed
112 nfiles++
158 fmt.Printf("processed %d files\n", nfiles)
  /prebuilts/go/linux-x86/src/cmd/gofmt/
long_test.go 32 nfiles int // number of files processed
112 nfiles++
158 fmt.Printf("processed %d files\n", nfiles)
  /external/libevent/
devpoll.c 120 int dpfd, nfiles = NEVENT; local
129 nfiles = rl.rlim_cur;
141 /* FIXME: allocating 'nfiles' worth of space here can be
143 devpollop->events = mm_calloc(nfiles, sizeof(struct pollfd));
149 devpollop->nevents = nfiles;
151 devpollop->changes = mm_calloc(nfiles, sizeof(struct pollfd));
  /external/elfutils/libdwfl/
dwfl_lineinfo.c 49 if (unlikely (info->file >= info->files->nfiles))
dwfl_module_getsrc_file.c 88 if (unlikely (line->file >= line->files->nfiles))
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
restartmanager.h 130 UINT nFiles,
  /prebuilts/go/darwin-x86/src/archive/zip/
zip_test.go 24 const nFiles = (1 << 16) + 42
25 for i := 0; i < nFiles; i++ {
42 if got := len(zr.File); got != nFiles {
43 t.Fatalf("File contains %d files, want %d", got, nFiles)
45 for i := 0; i < nFiles; i++ {
  /prebuilts/go/linux-x86/src/archive/zip/
zip_test.go 24 const nFiles = (1 << 16) + 42
25 for i := 0; i < nFiles; i++ {
42 if got := len(zr.File); got != nFiles {
43 t.Fatalf("File contains %d files, want %d", got, nFiles)
45 for i := 0; i < nFiles; i++ {
  /external/blktrace/btreplay/
btreplay.c 155 static int nfiles = 0; // Number of files to handle variable
421 nfiles);
427 nfiles);
433 nfiles);
439 nfiles);
445 nfiles);
451 nfiles);
457 nfiles);
463 nfiles);
477 assert(1 <= iter_start && iter_start <= nfiles);
    [all...]
  /external/elfutils/src/
nm.c 657 size_t nfiles; local
658 if (dwarf_getsrcfiles (cudie, &files, &nfiles) != 0)
681 if (dwarf_formudata (attr, &fileidx) != 0 || fileidx >= nfiles)
    [all...]
  /prebuilts/go/darwin-x86/src/syscall/
zsysctl_openbsd.go 73 {"kern.nfiles", []_C_int{1, 56}},
  /prebuilts/go/linux-x86/src/syscall/
zsysctl_openbsd.go 73 {"kern.nfiles", []_C_int{1, 56}},

Completed in 1271 milliseconds

1 2