Searched refs:done (Results 1 - 25 of 171) sorted by relevance

1234567

/haiku/src/system/libroot/posix/glibc/stdio-common/
H A Dscanf.c33 int done; local
37 done = INTUSE(_IO_vfscanf) (stdin, format, arg, NULL);
39 done = vfscanf (stdin, format, arg);
43 return done;
H A Dfprintf.c29 int done; local
32 done = vfprintf (stream, format, arg);
35 return done;
H A Dfscanf.c28 int done; local
31 done = __vfscanf (stream, format, arg);
34 return done;
H A Dprintf.c30 int done; local
33 done = vfprintf (stdout, format, arg);
36 return done;
H A Dasprintf.c37 int done; local
40 done = vasprintf (string_ptr, format, arg);
43 return done;
H A Ddprintf.c33 int done; local
36 done = vdprintf (d, format, arg);
39 return done;
H A Dsprintf.c33 int done; local
36 done = vsprintf (s, format, arg);
39 return done;
H A Dsscanf.c33 int done; local
36 done = __vsscanf (s, format, arg);
39 return done;
H A Dsnprintf.c36 int done; local
39 done = __vsnprintf (s, maxlen, format, arg);
42 return done;
H A Dprintf_size.c57 ++done; \
69 done += outlen; \
87 done += len; \
126 int done = 0; local
207 return done;
232 done = __printf_fp (fp, &fp_info, &ptr);
233 if (done > 0)
236 if (info->width > done)
237 PADN (' ', info->width - done);
246 done
[all...]
H A Dprintf-prs.c39 done += _IO_padn (s, Padchar, width)
46 return -1; else done += width; }
60 done += _IO_wpadn (s, Padchar, width)
67 return -1; else done += width; }
/haiku/src/system/libroot/posix/glibc/libio/
H A Dfwprintf.c30 int done; local
33 done = __vfwprintf (stream, format, arg);
36 return done;
H A Dfwscanf.c29 int done; local
32 done = __vfwscanf (stream, format, arg);
35 return done;
H A Dswprintf.c29 int done; local
32 done = __vswprintf (s, n, format, arg);
35 return done;
H A Dswscanf.c28 int done; local
31 done = vswscanf (s, format, arg);
34 return done;
H A Dwprintf.c29 int done; local
32 done = __vfwprintf (stdout, format, arg);
35 return done;
H A Dwscanf.c30 int done; local
33 done = _IO_vfwscanf (stdin, format, arg, NULL);
36 return done;
H A Diovdprintf.c39 int done; local
60 done = INTUSE(_IO_vfprintf) (&tmpfil.file, format, arg);
64 return done;
/haiku/src/system/libroot/os/arch/sparc/
H A Dfpu_compare.c110 goto done;
115 * at most one is 0, and if the signs differ we are done.
119 goto done;
124 goto done;
129 goto done;
152 goto done;
156 goto done;
161 goto done;
173 done:
H A Dfpu_implode.c259 goto done;
283 goto done;
291 done:
320 goto done;
376 done:
402 goto done;
424 goto done;
438 done:
464 goto done;
486 goto done;
[all...]
/haiku/src/system/libroot/os/
H A Dstack_protector.cpp26 bool done = false;
29 done = read(fd, &__stack_chk_guard, sizeof(__stack_chk_guard))
34 if (!done) {
/haiku/headers/tools/cppunit/cppunit/
H A DTextTestProgressListener.h27 void done();
/haiku/src/system/boot/platform/bios_ia32/
H A Dsupport.S40 done: label
41 jmp done
/haiku/src/tools/cppunit/cppunit/
H A DTextTestProgressListener.cpp40 TextTestProgressListener::done() function in class:CppUnit::TextTestProgressListener
/haiku/src/add-ons/kernel/file_systems/netfs/client/
H A DQueryIterator.cpp44 int32* countRead, bool* done)
47 *done = true;
43 ReadQuery(struct dirent* buffer, size_t bufferSize, int32 count, int32* countRead, bool* done) argument

Completed in 76 milliseconds

1234567