HomeSort by: relevance | last modified time | path
    Searched defs:done (Results 1 - 25 of 689) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/gpl3/gcc/dist/libssp/
vsprintf-chk.c 51 int done; local
54 done = vsprintf (s, format, arg);
57 done = vsnprintf (s, slen, format, arg);
58 if (done >= 0 && (size_t) done >= slen)
61 return done;
snprintf-chk.c 50 int done; local
56 done = vsnprintf (s, n, format, arg);
59 return done;
sprintf-chk.c 53 int done; local
57 done = vsprintf (s, format, arg);
60 done = vsnprintf (s, slen, format, arg);
61 if (done >= 0 && (size_t) done >= slen)
65 return done;
  /src/external/gpl3/gcc.old/dist/libssp/
vsprintf-chk.c 51 int done; local
54 done = vsprintf (s, format, arg);
57 done = vsnprintf (s, slen, format, arg);
58 if (done >= 0 && (size_t) done >= slen)
61 return done;
snprintf-chk.c 50 int done; local
56 done = vsnprintf (s, n, format, arg);
59 return done;
sprintf-chk.c 53 int done; local
57 done = vsprintf (s, format, arg);
60 done = vsnprintf (s, slen, format, arg);
61 if (done >= 0 && (size_t) done >= slen)
65 return done;
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.compile/
compile-setjmp.c 18 static int done; variable
  /src/external/mit/isl/dist/interface/
python.h 10 set<string> done; member in class:python_generator
39 void print(map<string, isl_class> &classes, set<string> &done);
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.compile/
compile-setjmp.c 18 static int done; variable
  /src/sys/arch/evbppc/explora/
consinit.c 71 static int done = 0; local
73 if (done)
76 done = 1;
  /src/usr.bin/patch/
mkpath.c 57 int done = 0; local
61 while (!done) {
65 done = (*slash == '\0');
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.arch/
amd64-disp-step-self-call.S 44 /* all done */
46 done: label
i386-disp-step-self-call.S 44 /* all done */
46 done: label
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
killed-outside.c 24 done (void) function
32 done ();
siginfo.c 25 static volatile int done; variable
31 done = 1;
37 done = 1;
67 while (!done);
info-program.c 41 done (void) function
59 done ();
savedregs.c 25 static volatile int done; variable
30 return param * done + 1;
36 return callee ((a1 << a2 * a3 / a4) + a6 & a6 % a7 - a8) + done;
42 done = 1;
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
killed-outside.c 24 done (void) function
32 done ();
siginfo.c 25 static volatile int done; variable
31 done = 1;
37 done = 1;
67 while (!done);
  /src/external/bsd/unbound/dist/compat/
getentropy_freebsd.c 36 size_t len, done; local
40 done = 0;
45 return (done);
46 done += len;
51 return (done);
  /src/external/gpl3/binutils/dist/gprofng/src/
gp-gmon.h 12 #define done(INT) exit(INT) macro
  /src/games/adventure/
done.c 1 /* $NetBSD: done.c,v 1.10 2009/08/25 06:56:52 dholland Exp $ */
40 static char sccsid[] = "@(#)done.c 8.1 (Berkeley) 5/31/93";
42 __RCSID("$NetBSD: done.c,v 1.10 2009/08/25 06:56:52 dholland Exp $");
109 done(int entry) function
152 done(2);
157 done(2);
  /src/external/gpl3/gdb/dist/gnulib/import/
windows-initguard.h 28 volatile int done; member in struct:__anon18422
  /src/external/gpl3/gdb/dist/readline/readline/examples/
rltest.c 57 int done; local
65 done = 0;
67 while (!done)
84 done = 1;
  /src/external/gpl3/gdb.old/dist/gdb/unittests/
main-thread-selftests.c 34 static bool done; variable
41 done = true;
50 done = false;
63 while (!done && gdb_do_one_event () >= 0)
68 SELF_CHECK (done);

Completed in 35 milliseconds

1 2 3 4 5 6 7 8 91011>>