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

1234567891011>>

/freebsd-11-stable/contrib/gcclibs/libssp/
H A Dsprintf-chk.c54 int done; local
58 done = vsprintf (s, format, arg);
61 done = vsnprintf (s, slen, format, arg);
62 if (done >= 0 && (size_t) done >= slen)
66 return done;
H A Dvsprintf-chk.c53 int done; local
56 done = vsprintf (s, format, arg);
59 done = vsnprintf (s, slen, format, arg);
60 if (done >= 0 && (size_t) done >= slen)
63 return done;
H A Dsnprintf-chk.c51 int done; local
57 done = vsnprintf (s, n, format, arg);
60 return done;
/freebsd-11-stable/contrib/libarchive/tar/test/
H A Dtest_option_zstd.c46 goto done;
55 goto done;
64 goto done;
75 goto done;
83 done:
H A Dtest_option_lz4.c46 goto done;
55 goto done;
64 goto done;
75 goto done;
83 done:
H A Dtest_option_xz.c47 goto done;
51 goto done;
58 done:
H A Dtest_option_z.c45 goto done;
49 goto done;
56 done:
H A Dtest_option_lzop.c45 goto done;
49 goto done;
56 done:
H A Dtest_option_j.c45 goto done;
49 goto done;
57 done:
/freebsd-11-stable/contrib/libarchive/cpio/test/
H A Dtest_option_zstd.c46 goto done;
55 goto done;
64 goto done;
75 goto done;
83 done:
/freebsd-11-stable/contrib/unbound/compat/
H A Dgetentropy_freebsd.c36 size_t len, done; local
40 done = 0;
45 return (done);
46 done += len;
51 return (done);
/freebsd-11-stable/lib/libvmmapi/
H A Dvmmapi_freebsd.c84 goto done;
87 goto done;
91 goto done;
94 goto done;
101 goto done;
112 goto done;
121 goto done;
133 goto done;
138 goto done;
143 goto done;
[all...]
/freebsd-11-stable/crypto/openssl/crypto/
H A Do_init.c75 static int done = 0; local
76 if (done)
78 done = 1;
/freebsd-11-stable/sys/powerpc/powerpc/
H A Dcopystr.c45 copystr(kfaddr, kdaddr, len, done)
49 size_t *done;
64 if (done != NULL) {
65 *done = l;
/freebsd-11-stable/usr.bin/patch/
H A Dmkpath.c51 int done = 0; local
55 while (!done) {
59 done = (*slash == '\0');
/freebsd-11-stable/contrib/byacc/
H A Derror.c11 done(2);
18 done(2);
25 done(2);
33 done(1);
41 done(1);
76 done(1);
85 done(1);
94 done(1);
103 done(1);
112 done(
[all...]
/freebsd-11-stable/lib/libc/string/
H A Dtimingsafe_memcmp.c31 int res = 0, done = 0; local
43 /* set res = cmp if !done. */
44 res |= cmp & ~done;
46 /* set done if p1[i] != p2[i]. */
47 done |= lt | gt;
H A Dwcscspn.c50 goto done;
56 done:
/freebsd-11-stable/contrib/libreadline/examples/
H A Drltest.c53 int done; local
57 done = 0;
59 while (!done)
76 done = 1;
/freebsd-11-stable/contrib/bmake/lst.lib/
H A DlstForEachFrom.c79 Boolean done; local
95 * We're done with the traversal if
101 done = (next == NULL || next == list->firstPtr);
114 done = 0;
121 } while (!result && !LstIsEmpty(list) && !done);
/freebsd-11-stable/sys/compat/linuxkpi/common/include/linux/
H A Dcompletion.h37 unsigned int done; member in struct:completion
41 ((c).done = 0)
43 do { (c)->done = 0; } while (0)
45 do { (c)->done = 0; } while (0)
/freebsd-11-stable/tools/regression/sockets/unix_cmsg/
H A Dt_sockcred.c57 goto done;
61 goto done;
64 goto done;
67 done:
89 goto done;
97 goto done;
102 goto done;
107 goto done;
116 goto done;
119 goto done;
[all...]
/freebsd-11-stable/contrib/bmake/unit-tests/
H A Dcomment.exp4 comment testing done
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/misc/
H A Dtst.roch.d46 /(self->done == 0) && (curthread->t_cpu->cpu_intr_actv == 0) /
48 self->done = 1;
56 /(self->done == 0) && (curthread->t_cpu->cpu_intr_actv == 0) /
58 self->done = 1;
/freebsd-11-stable/lib/libc/sparc64/fpu/
H A Dfpu_compare.c111 goto done;
116 * at most one is 0, and if the signs differ we are done.
120 goto done;
125 goto done;
130 goto done;
153 goto done;
157 goto done;
162 goto done;
174 done:

Completed in 396 milliseconds

1234567891011>>