Searched refs:ex (Results 1 - 25 of 432) sorted by relevance

1234567891011>>

/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.dg/warn/
H A Dsentinel.C3 extern void ex (int i, ...) __attribute__ ((__sentinel__(0)));
7 ex (1, 0); /* { dg-warning "missing sentinel in function call" "" } */
8 ex (1, 0L); /* { dg-warning "missing sentinel in function call" "" } */
9 ex (1, (void *)0);
10 ex (1, __null); /* { dg-bogus "sentinel" } */
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.dg/warn/
H A Dsentinel.C3 extern void ex (int i, ...) __attribute__ ((__sentinel__(0)));
7 ex (1, 0); /* { dg-warning "missing sentinel in function call" "" } */
8 ex (1, 0L); /* { dg-warning "missing sentinel in function call" "" } */
9 ex (1, (void *)0);
10 ex (1, __null); /* { dg-bogus "sentinel" } */
/netbsd-6-1-5-RELEASE/sys/compat/freebsd/
H A Dfreebsd_exec.h39 #define FREEBSD_N_GETMAGIC(ex) \
40 ( (ex).a_midmag & 0xffff )
41 #define FREEBSD_N_GETMID(ex) \
42 ( ((ex).a_midmag >> 16) & 0x03ff )
43 #define FREEBSD_N_GETFLAG(ex) \
44 ( ((ex).a_midmag >> 26) & 0x3f )
45 #define FREEBSD_N_SETMAGIC(ex,mag,mid,flag) \
46 ( (ex).a_midmag = (((flag) & 0x3f) <<26) | (((mid) & 0x03ff) << 16) | \
49 #define FREEBSD_N_ALIGN(ex,x) \
50 (FREEBSD_N_GETMAGIC(ex)
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/
H A Dnested-func-5.c6 void ex(int (*)(void));
13 ex(bar);
/netbsd-6-1-5-RELEASE/sys/arch/vax/include/
H A Dcoff_machdep.h36 #define COFF_BADMAG(ex) (ex->f_magic != COFF_MAGIC_VAX)
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.dg/init/
H A Dref9.C3 struct ex;
6 ex eval() const;
10 struct ex { struct
12 ex() : bp(0) { } function in struct:ex
13 ex(const basic &);
14 virtual ~ex();
18 ex basic::eval() const {
22 inline ex::ex(const basic &b) { construct_from_basic (b); } function in class:ex
23 inline ex
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.dg/init/
H A Dref9.C3 struct ex;
6 ex eval() const;
10 struct ex { struct
12 ex() : bp(0) { } function in struct:ex
13 ex(const basic &);
14 virtual ~ex();
18 ex basic::eval() const {
22 inline ex::ex(const basic &b) { construct_from_basic (b); } function in class:ex
23 inline ex
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/i386/include/
H A Dcoff_machdep.h36 #define COFF_BADMAG(ex) (ex->f_magic != COFF_MAGIC_I386)
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/gdb/
H A Dgdb_gcore.sh57 -ex "set pagination off" -ex "set height 0" -ex "set width 0" \
58 -ex "attach $pid" -ex "gcore $name.$pid" -ex detach -ex quit
/netbsd-6-1-5-RELEASE/tools/m68k-elf2aout/sys/
H A Dexec_aout.h37 #define N_PAGSIZ(ex) (AOUT_LDPGSZ)
90 #define N_GETMAGIC(ex) \
91 ((((ex).a_midmag)&0xffff0000) ? \
92 (be32toh((uint32_t)((ex).a_midmag))&0xffff) : ((ex).a_midmag))
93 #define N_GETMAGIC2(ex) \
94 ((((ex).a_midmag)&0xffff0000) ? \
95 (be32toh((uint32_t)((ex).a_midmag))&0xffff) : (((ex).a_midmag) | 0x10000))
96 #define N_GETMID(ex) \
[all...]
/netbsd-6-1-5-RELEASE/sys/sys/
H A Dexec_aout.h37 #define N_PAGSIZ(ex) (AOUT_LDPGSZ)
90 #define N_GETMAGIC(ex) \
91 ((((ex).a_midmag)&0xffff0000) ? \
92 (be32toh((uint32_t)((ex).a_midmag))&0xffff) : ((ex).a_midmag))
93 #define N_GETMAGIC2(ex) \
94 ((((ex).a_midmag)&0xffff0000) ? \
95 (be32toh((uint32_t)((ex).a_midmag))&0xffff) : (((ex).a_midmag) | 0x10000))
96 #define N_GETMID(ex) \
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/gas/testsuite/gas/z80/
H A Dmisc.s4 ex af,af'
6 ex de,hl
7 ex (sp),hl
8 ex (sp),ix
9 ex (sp),iy
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.dg/template/
H A Dcrash28.C11 a ex; local
12 g(ex.what); // { dg-error "" }
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.dg/template/
H A Dcrash28.C11 a ex; local
12 g(ex.what); // { dg-error "" }
/netbsd-6-1-5-RELEASE/gnu/dist/grep/lib/
H A Dexclude.c51 struct exclude *ex = (struct exclude *) xmalloc (sizeof (struct exclude)); local
52 ex->exclude_count = 0;
53 ex->exclude_alloc = 64;
54 ex->exclude = (char const **) xmalloc (ex->exclude_alloc * sizeof (char *));
55 return ex;
59 excluded_filename (struct exclude const *ex, char const *f, int options) argument
61 char const * const *exclude = ex->exclude;
62 int exclude_count = ex->exclude_count;
73 add_exclude (struct exclude *ex, cha argument
84 add_exclude_file(void (*add_func) PARAMS ((struct exclude *, char const *)), struct exclude *ex, char const *filename, char line_end) argument
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.old-deja/g++.other/
H A Deh3.C20 e ex; local
21 throw ex;
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.old-deja/g++.other/
H A Deh3.C20 e ex; local
21 throw ex;
/netbsd-6-1-5-RELEASE/usr.sbin/rpc.pcnfsd/
H A Dcommon.h176 #define assert(ex) {if (!(ex)) \
178 __LINE__, __FILE__, "ex"); (void)msg_out(asstmp); \
/netbsd-6-1-5-RELEASE/usr.bin/nvi/docs/USD.doc/exref/
H A DMakefile8 DIR= usd/12.ex
9 SRCS= ex.rm ex.summary
15 paper.ps: ex.rm
18 summary.ps: ex.summary
/netbsd-6-1-5-RELEASE/gnu/dist/diffutils/lib/
H A Dexclude.c101 struct exclude *ex = (struct exclude *) xmalloc (sizeof *ex); local
102 ex->exclude_count = 0;
103 ex->exclude_alloc = (1 << 6); /* This must be a power of 2. */
104 ex->exclude = (struct patopts *) xmalloc (ex->exclude_alloc
105 * sizeof ex->exclude[0]);
106 return ex;
112 free_exclude (struct exclude *ex) argument
114 free (ex
147 excluded_filename(struct exclude const *ex, char const *f) argument
193 add_exclude(struct exclude *ex, char const *pattern, int options) argument
217 add_exclude_file(void (*add_func) PARAMS ((struct exclude *, char const *, int)), struct exclude *ex, char const *filename, int options, char line_end) argument
[all...]
/netbsd-6-1-5-RELEASE/sys/kern/
H A Dsubr_extent.c123 extent_alloc_region_descriptor(struct extent *ex, int flags) argument
132 mutex_enter(&ex->ex_lock);
133 exflags = ex->ex_flags;
134 mutex_exit(&ex->ex_lock);
137 struct extent_fixed *fex = (struct extent_fixed *)ex;
139 mutex_enter(&ex->ex_lock);
149 mutex_exit(&ex->ex_lock);
153 mutex_exit(&ex->ex_lock);
157 mutex_exit(&ex->ex_lock);
160 ex
187 extent_free_region_descriptor(struct extent *ex, struct extent_region *rp) argument
232 struct extent *ex; local
313 extent_destroy(struct extent *ex) argument
347 extent_insert_and_optimize(struct extent *ex, u_long start, u_long size, int flags, struct extent_region *after, struct extent_region *rp) argument
452 extent_alloc_region(struct extent *ex, u_long start, u_long size, int flags) argument
604 extent_alloc_subregion1(struct extent *ex, u_long substart, u_long subend, u_long size, u_long alignment, u_long skew, u_long boundary, int flags, u_long *result) argument
976 extent_alloc_subregion(struct extent *ex, u_long start, u_long end, u_long size, u_long alignment, u_long boundary, int flags, u_long *result) argument
985 extent_alloc(struct extent *ex, u_long size, u_long alignment, u_long boundary, int flags, u_long *result) argument
995 extent_alloc1(struct extent *ex, u_long size, u_long alignment, u_long skew, u_long boundary, int flags, u_long *result) argument
1005 extent_free(struct extent *ex, u_long start, u_long size, int flags) argument
1152 extent_print(struct extent *ex) argument
[all...]
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/dist/crypto/x509/
H A Dx509_v3.c88 X509_EXTENSION *ex; local
97 ex=sk_X509_EXTENSION_value(sk,lastpos);
98 if (OBJ_cmp(ex->object,obj) == 0)
108 X509_EXTENSION *ex; local
117 ex=sk_X509_EXTENSION_value(sk,lastpos);
118 if ( ((ex->critical > 0) && crit) ||
119 ((ex->critical <= 0) && !crit))
144 X509_EXTENSION *ex, int loc)
168 if ((new_ex=X509_EXTENSION_dup(ex)) == NULL)
183 X509_EXTENSION *X509_EXTENSION_create_by_NID(X509_EXTENSION **ex, in argument
200 X509_EXTENSION_create_by_OBJ(X509_EXTENSION **ex, ASN1_OBJECT *obj, int crit, ASN1_OCTET_STRING *data) argument
231 X509_EXTENSION_set_object(X509_EXTENSION *ex, ASN1_OBJECT *obj) argument
240 X509_EXTENSION_set_critical(X509_EXTENSION *ex, int crit) argument
247 X509_EXTENSION_set_data(X509_EXTENSION *ex, ASN1_OCTET_STRING *data) argument
257 X509_EXTENSION_get_object(X509_EXTENSION *ex) argument
263 X509_EXTENSION_get_data(X509_EXTENSION *ex) argument
269 X509_EXTENSION_get_critical(X509_EXTENSION *ex) argument
[all...]
/netbsd-6-1-5-RELEASE/dist/nvi/docs/exref/
H A DMakefile6 ALL= exref.ps summary.ps ../html/exref.html ../html/ex-summary.html
10 ../html/exref.html: ex.rm
17 ../html/ex-summary.html: ex.summary
24 exref.ps: ex.rm
28 summary.ps: ex.summary
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.dg/opt/
H A Dpr23714.C13 catch (int *ex)
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.dg/opt/
H A Dpr23714.C13 catch (int *ex)

Completed in 253 milliseconds

1234567891011>>