Searched refs:FN (Results 1 - 25 of 49) sorted by relevance

12

/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/
H A Dc90-func-2.c11 const char *s = FN;
H A Dc90-func-2.h2 #define FN __func__ macro
H A Dbuiltins-1.c16 #define FPTEST0(FN) \
17 double test_##FN(void) { return __builtin_##FN(); } \
18 float test_##FN##f(void) { return __builtin_##FN##f(); } \
19 long double test_##FN##l(void) { return __builtin_##FN##l(); }
22 #define FPTEST1(FN) \
23 double test_##FN(double x) { return __builtin_##FN(
[all...]
H A Dc11-typedef-1.c55 typedef void FN(int (*p)[a]); typedef
56 typedef void FN(int (*p)[b]); typedef
57 typedef void FN(int (*p)[*]); /* { dg-message "previous declaration" } */ typedef
58 typedef void FN(int (*p)[1]); /* { dg-error "with different type" } */ typedef
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/torture/
H A Dbuiltin-nonneg-1.c11 #define PROTOTYPE_RTYPE(FN,RTYPE) extern RTYPE FN(double); \
12 extern RTYPE FN##f(float); \
13 extern RTYPE FN##l(long double);
14 #define PROTOTYPE(FN) extern double FN(double); extern float FN##f(float); \
15 extern long double FN##l(long double);
16 #define PROTOTYPE2(FN) extern double FN(doubl
[all...]
H A Dbuiltin-attr-1.c17 #define BUILTIN_TEST1(FN, TYPE) \
18 extern void link_failure_builtin_##FN(void); \
19 void test_builtin_##FN(TYPE x) \
20 { if (__builtin_##FN(x) != __builtin_##FN(x)) link_failure_builtin_##FN(); }
23 #define BUILTIN_TEST2(FN, TYPE) \
24 extern void link_failure_builtin_##FN(void); \
25 void test_builtin_##FN(TYPE x, TYPE y) \
26 { if (__builtin_##FN(
[all...]
H A Dbuiltin-wctype-1.c23 #define TEST_IS_WCTYPE(FN) \
24 extern int FN(__WINT_TYPE__); \
25 extern void link_failure_##FN(void); \
26 if (FN(i) != FN(i)) \
27 link_failure_##FN()
29 #define TEST_TO_WCTYPE(FN) \
30 extern __WINT_TYPE__ FN(__WINT_TYPE__); \
31 extern void link_failure_##FN(void); \
32 if (FN(
[all...]
H A Dbuiltin-ctype-2.c15 #define TEST_CTYPE_CST_TRUE(FN, VALUE) \
16 extern void link_failure_##FN##_cst_true(void); \
17 extern int FN(int); \
18 if (! FN(VALUE)) \
19 link_failure_##FN##_cst_true()
22 #define TEST_CTYPE_CST_FALSE(FN, VALUE) \
23 extern void link_failure_##FN##_cst_false(void); \
24 extern int FN(int); \
25 if (FN(VALUE)) \
26 link_failure_##FN##_cst_fals
[all...]
H A Dbuiltin-ctype-1.c15 #define TEST_CTYPE(FN) \
16 extern int FN(int); \
17 extern void link_failure_##FN(void); \
18 if (FN(i) != FN(i)) \
19 link_failure_##FN()
H A Dbuiltin-power-1.c21 #define PROTOTYPE(FN) extern double FN(double); extern float FN##f(float); \
22 extern long double FN##l(long double);
23 #define PROTOTYPE2(FN) extern double FN(double, double); \
24 extern float FN##f(float, float); \
25 extern long double FN##l(long double, long double);
55 #define POW_ROOT(FN,N,ABS) \
56 extern void link_failure_pow_##FN(voi
[all...]
H A Dvec-cvt-1.c27 #define FN(intt, fltt) FN1 (intt, fltt) FN1 (fltt, intt) macro
29 FN (sc, f) function
30 FN (ss, f)
31 FN (si, f)
32 FN (sl, f)
33 FN (uc, f)
34 FN (us, f)
35 FN (ui, f)
36 FN (ul, f)
37 FN (s
[all...]
H A Dbuiltin-convert-3.c14 #define PROTOTYPE1_RET(FN, RET) \
15 extern RET FN(double); \
16 extern RET FN##f(float); \
17 extern RET FN##l(long double);
/haiku-buildtools/gcc/gcc/testsuite/g++.old-deja/g++.pt/
H A Dref1.C6 template <void (&FN)()>
9 FN ();
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/template/
H A Dnontype9.C6 template <void (&FN)()>
9 FN ();
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/ext/
H A Dsync-4.C13 #define FN(IDX, RET, CALL) \ macro
34 FN(1, ditype, (__sync_fetch_and_add((ditype*)p, 1)))
35 FN(2, ditype, (__sync_fetch_and_sub((ditype*)p, 1)))
36 FN(3, ditype, (__sync_fetch_and_or((ditype*)p, 1)))
37 FN(4, ditype, (__sync_fetch_and_and((ditype*)p, 1)))
38 FN(5, ditype, (__sync_fetch_and_xor((ditype*)p, 1)))
39 FN(6, ditype, (__sync_fetch_and_nand((ditype*)p, 1)))
41 FN( 7, ditype, (__sync_add_and_fetch((ditype*)p, 1)))
42 FN( 8, ditype, (__sync_sub_and_fetch((ditype*)p, 1)))
43 FN(
[all...]
/haiku-buildtools/isl/
H A Disl_power_templ.c4 #define FN(TYPE,NAME) xFN(TYPE,NAME) macro
10 __isl_give TYPE *FN(TYPE,fixed_power)(__isl_take TYPE *map, isl_int exp) function
19 ctx = FN(TYPE,get_ctx)(map);
26 map = FN(TYPE,reverse)(map);
27 return FN(TYPE,fixed_power)(map, exp);
36 res = FN(TYPE,copy)(map);
38 res = FN(TYPE,apply_range)(res,
39 FN(TYPE,copy)(map));
40 res = FN(TYPE,coalesce)(res);
50 map = FN(TYP
66 __isl_give TYPE *FN(TYPE,fixed_power_val)(__isl_take TYPE *map, function
[all...]
H A Disl_union_templ.c12 #define FN(TYPE,NAME) xFN(TYPE,NAME) macro
26 __isl_give UNION *FN(UNION,cow)(__isl_take UNION *u);
28 isl_ctx *FN(UNION,get_ctx)(__isl_keep UNION *u) function
33 __isl_give isl_space *FN(UNION,get_space)(__isl_keep UNION *u) function
41 static __isl_give UNION *FN(UNION,alloc)(__isl_take isl_space *dim, function
44 static __isl_give UNION *FN(UNION,alloc)(__isl_take isl_space *dim, int size)
68 FN(UNION,free)(u);
73 __isl_give UNION *FN(UNION,ZERO)(__isl_take isl_space *dim, enum isl_fold type) function
75 return FN(UNION,alloc)(dim, type, 16);
78 __isl_give UNION *FN(UNIO function
84 __isl_give UNION *FN(UNION,copy)(__isl_keep UNION *u) function
209 __isl_give UNION *FN(UNION,dup)(__isl_keep UNION *u) function
229 __isl_give UNION *FN(UNION,cow)(__isl_take UNION *u) function
247 void *FN(UNION,free)(__isl_take UNION *u) function
297 __isl_give UNION *FN(UNION,align_params)(__isl_take UNION *u, function
336 __isl_give UNION *FN(UNION,add)(__isl_take UNION *u1, __isl_take UNION *u2) function
472 __isl_give UNION *FN(UNION,sub)(__isl_take UNION *u1, __isl_take UNION *u2) function
547 __isl_give UNION *FN(UNION,intersect_params)(__isl_take UNION *u, function
556 __isl_give UNION *FN(UNION,gist_params)(__isl_take UNION *u, function
658 __isl_give UNION *FN(UNION,intersect_domain)(__isl_take UNION *u, function
667 __isl_give UNION *FN(UNION,gist)(__isl_take UNION *u, function
676 __isl_give isl_qpolynomial *FN(UNION,eval)(__isl_take UNION *u, function
722 __isl_give UNION *FN(UNION,coalesce)(__isl_take UNION *u) function
746 __isl_give isl_union_set *FN(UNION,domain)(__isl_take UNION *u) function
775 __isl_give UNION *FN(UNION,mul_isl_int)(__isl_take UNION *u, isl_int v) function
828 __isl_give UNION *FN(UNION,scale_val)(__isl_take UNION *u, function
902 int FN(UNION,plain_is_equal)(__isl_keep UNION *u1, __isl_keep UNION *u2) function
[all...]
H A Disl_list_templ.c23 #define FN(TYPE,NAME) xFN(TYPE,NAME) macro
29 isl_ctx *FN(LIST(EL),get_ctx)(__isl_keep LIST(EL) *list)
34 __isl_give LIST(EL) *FN(LIST(EL),alloc)(isl_ctx *ctx, int n)
55 __isl_give LIST(EL) *FN(LIST(EL),copy)(__isl_keep LIST(EL) *list)
64 __isl_give LIST(EL) *FN(LIST(EL),dup)(__isl_keep LIST(EL) *list)
72 dup = FN(LIST(EL),alloc)(FN(LIST(EL),get_ctx)(list), list->n);
76 dup = FN(LIST(EL),add)(dup, FN(EL,copy)(list->p[i]));
80 __isl_give LIST(EL) *FN(LIS
[all...]
H A Disl_multi_templ.c20 #define FN(TYPE,NAME) xFN(TYPE,NAME) macro
27 isl_ctx *FN(MULTI(BASE),get_ctx)(__isl_keep MULTI(BASE) *multi)
32 __isl_give isl_space *FN(MULTI(BASE),get_space)(__isl_keep MULTI(BASE) *multi)
37 __isl_give isl_space *FN(MULTI(BASE),get_domain_space)(
43 __isl_give MULTI(BASE) *FN(MULTI(BASE),alloc)(__isl_take isl_space *space)
68 __isl_give MULTI(BASE) *FN(MULTI(BASE),dup)(__isl_keep MULTI(BASE) *multi)
76 dup = FN(MULTI(BASE),alloc)(isl_space_copy(multi->space));
81 dup = FN(FN(MULTI(BASE),set),BASE)(dup, i,
82 FN(E
[all...]
H A Disl_pw_templ.c5 #define FN(TYPE,NAME) xFN(TYPE,NAME) macro
10 __isl_give PW *FN(PW,alloc_size)(__isl_take isl_space *dim, function
13 __isl_give PW *FN(PW,alloc_size)(__isl_take isl_space *dim, int n)
42 __isl_give PW *FN(PW,ZERO)(__isl_take isl_space *dim, enum isl_fold type) function
44 return FN(PW,alloc_size)(dim, type, 0);
47 __isl_give PW *FN(PW,ZERO)(__isl_take isl_space *dim) function
49 return FN(PW,alloc_size)(dim, 0);
53 __isl_give PW *FN(PW,add_piece)(__isl_take PW *pw, function
62 if (isl_set_plain_is_empty(set) || FN(EL,EL_IS_ZERO)(el)) {
64 FN(E
93 __isl_give PW *FN(PW,alloc)(enum isl_fold type, function
117 __isl_give PW *FN(PW,dup)(__isl_keep PW *pw) function
140 __isl_give PW *FN(PW,cow)(__isl_take PW *pw) function
151 __isl_give PW *FN(PW,copy)(__isl_keep PW *pw) function
160 void *FN(PW,free)(__isl_take PW *pw) function
179 const char *FN(PW,get_dim_name)(__isl_keep PW *pw, enum isl_dim_type type, function
185 int FN(PW,has_dim_id)(__isl_keep PW *pw, enum isl_dim_type type, unsigned pos) function
190 __isl_give isl_id *FN(PW,get_dim_id)(__isl_keep PW *pw, enum isl_dim_type type, function
196 int FN(PW,has_tuple_name)(__isl_keep PW *pw, enum isl_dim_type type) function
201 const char *FN(PW,get_tuple_name)(__isl_keep PW *pw, enum isl_dim_type type) function
206 int FN(PW,has_tuple_id)(__isl_keep PW *pw, enum isl_dim_type type) function
211 __isl_give isl_id *FN(PW,get_tuple_id)(__isl_keep PW *pw, enum isl_dim_type type) function
216 int FN(PW,IS_ZERO)(__isl_keep PW *pw) function
225 __isl_give PW *FN(PW,realign_domain)(__isl_take PW *pw, function
257 __isl_give PW *FN(PW,align_params)(__isl_take PW *pw, __isl_take isl_space *model) function
292 static __isl_give PW *FN(PW,align_params_pw_pw_and)(__isl_take PW *pw1, function
316 static __isl_give PW *FN(PW,align_params_pw_set_and)(__isl_take PW *pw, function
341 static __isl_give PW *FN(PW,union_add_aligned)(__isl_take PW *pw1, function
421 static __isl_give PW *FN(PW,union_add_)(__isl_take PW *pw1, __isl_take PW *pw2) function
432 static __isl_give PW *FN(PW,grow)(__isl_take PW *pw, int n) function
466 static __isl_give PW *FN(PW,add_disjoint_aligned)(__isl_take PW *pw1, function
514 __isl_give PW *FN(PW,add_disjoint)(__isl_take PW *pw1, __isl_take PW *pw2) function
530 static __isl_give PW *FN(PW,on_shared_domain_in)(__isl_take PW *pw1, function
594 static __isl_give PW *FN(PW,on_shared_domain)(__isl_take PW *pw1, function
612 __isl_give PW *FN(PW,neg)(__isl_take PW *pw) function
635 __isl_give PW *FN(PW,sub)(__isl_take PW *pw1, __isl_take PW *pw2) function
642 __isl_give isl_qpolynomial *FN(PW,eval)(__isl_take PW *pw, function
682 __isl_give isl_set *FN(PW,domain)(__isl_take PW *pw) function
704 static int FN(PW,exploit_equalities_and_remove_if_empty)(__isl_keep PW *pw, function
734 static __isl_give PW *FN(PW,intersect_aligned)(__isl_take PW *pw, function
767 static __isl_give PW *FN(PW,intersect_domain_aligned)(__isl_take PW *pw, function
773 __isl_give PW *FN(PW,intersect_domain)(__isl_take PW *pw, function
780 static __isl_give PW *FN(PW,intersect_params_aligned)(__isl_take PW *pw, function
788 __isl_give PW *FN(PW,intersect_params)(__isl_take PW *pw, function
795 static __isl_give PW *FN(PW,gist_aligned)(__isl_take PW *pw, function
857 static __isl_give PW *FN(PW,gist_domain_aligned)(__isl_take PW *pw, function
864 __isl_give PW *FN(PW,gist)(__isl_take PW *pw, __isl_take isl_set *context) function
870 static __isl_give PW *FN(PW,gist_params_aligned)(__isl_take PW *pw, function
877 __isl_give PW *FN(PW,gist_params)(__isl_take PW *pw, function
884 __isl_give PW *FN(PW,coalesce)(__isl_take PW *pw) function
919 isl_ctx *FN(PW,get_ctx)(__isl_keep PW *pw) function
925 int FN(PW,involves_dims)(__isl_keep PW *pw, enum isl_dim_type type, function
952 __isl_give PW *FN(PW,set_dim_name)(__isl_take PW *pw, function
985 __isl_give PW *FN(PW,drop_dims)(__isl_take PW *pw, function
1026 __isl_give PW *FN(PW,project_out)(__isl_take PW *pw, function
1063 __isl_give PW *FN(PW,project_domain_on_params)(__isl_take PW *pw) function
1078 __isl_give PW *FN(PW,insert_dims)(__isl_take PW *pw, enum isl_dim_type type, function
1117 __isl_give PW *FN(PW,fix_dim)(__isl_take PW *pw, function
1143 __isl_give PW *FN(PW,fix_val)(__isl_take PW *pw, function
1161 unsigned FN(PW,dim)(__isl_keep PW *pw, enum isl_dim_type type) function
1166 __isl_give PW *FN(PW,split_dims)(__isl_take PW *pw, function
1202 __isl_give isl_qpolynomial *FN(PW,opt)(__isl_take PW *pw, int max) function
1232 __isl_give isl_qpolynomial *FN(PW,max)(__isl_take PW *pw) function
1237 __isl_give isl_qpolynomial *FN(PW,min)(__isl_take PW *pw) function
1243 __isl_give isl_space *FN(PW,get_space)(__isl_keep PW *pw) function
1248 __isl_give isl_space *FN(PW,get_domain_space)(__isl_keep PW *pw) function
1258 static __isl_give PW *FN(PW,reset_space_and_domain)(__isl_take PW *pw, function
1291 __isl_give PW *FN(PW,reset_domain_space)(__isl_take PW *pw, function
1301 __isl_give PW *FN(PW,reset_space)(__isl_take PW *pw, __isl_take isl_space *dim) function
1309 __isl_give PW *FN(PW,set_tuple_id)(__isl_keep PW *pw, enum isl_dim_type type, function
1324 __isl_give PW *FN(PW,set_dim_id)(__isl_take PW *pw, function
1335 int FN(PW,has_equal_space)(__isl_keep PW *pw1, __isl_keep PW *pw2) function
1344 __isl_give PW *FN(PW,morph_domain)(__isl_take PW *pw, function
1385 int FN(PW,n_piece)(__isl_keep PW *pw) function
1390 int FN(PW,foreach_piece)(__isl_keep PW *pw, function
1455 int FN(PW,foreach_lifted_piece)(__isl_keep PW *pw, function
1484 __isl_give PW *FN(PW,move_dims)(__isl_take PW *pw, function
1525 __isl_give PW *FN(PW,mul_isl_int)(__isl_take PW *pw, isl_int v) function
1566 __isl_give PW *FN(PW,scale_val)(__isl_take PW *pw, __isl_take isl_val *v) function
1616 __isl_give PW *FN(PW,scale)(__isl_take PW *pw, isl_int v) function
1621 static int FN(PW,qsort_set_cmp)(const void *p1, const void *p2) function
1633 __isl_give PW *FN(PW,normalize)(__isl_take PW *pw) function
1673 int FN(PW,plain_is_equal)(__isl_keep PW *pw1, __isl_keep PW *pw2) function
1715 static __isl_give PW *FN(PW,align_params_pw_multi_aff_and)(__isl_take PW *pw, function
1744 static __isl_give PW *FN(PW,align_params_pw_pw_multi_aff_and)(__isl_take PW *pw, function
1777 static __isl_give PW *FN(PW,pullback_multi_aff_aligned)(__isl_take PW *pw, function
1812 __isl_give PW *FN(PW,pullback_multi_aff)(__isl_take PW *pw, function
1822 static __isl_give PW *FN(PW,pullback_pw_multi_aff_aligned)(__isl_take PW *pw, function
1864 __isl_give PW *FN(PW,pullback_pw_multi_aff)(__isl_take PW *pw, function
[all...]
H A Dprint_templ.c6 #define FN(TYPE,NAME) xFN(TYPE,NAME) macro
8 void FN(TYPE,dump)(__isl_keep TYPE *obj) function
14 p = isl_printer_to_file(FN(TYPE,get_ctx)(obj), stderr);
15 p = FN(isl_printer_print,BASE)(p, obj);
20 __isl_give char *FN(TYPE,to_str)(__isl_keep TYPE *obj) function
27 p = isl_printer_to_str(FN(TYPE,get_ctx)(obj));
28 p = FN(isl_printer_print,BASE)(p, obj);
H A Disl_list_templ.h2 #define FN(TYPE,NAME) xFN(TYPE,NAME) macro
16 __isl_give LIST(EL) *FN(LIST(EL),dup)(__isl_keep LIST(EL) *list);
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/cpp0x/lambda/
H A Dlambda-std-function.C6 typedef std::function<int()> FN; typedef
9 FN f(T fn)
/haiku-buildtools/gcc/libgcc/
H A Dsync.c40 The following __foo_N routines are selected by defining FN=foo
68 #if defined FN
125 /* Find an appropriate type TYPE for SIZE and invoke DEFINE (FN, SIZE, TYPE).
135 DEFINE (FN, 1, UQItype)
140 DEFINE (FN, 2, UHItype)
145 DEFINE (FN, 4, USItype)
150 DEFINE (FN, 8, UDItype)
155 DEFINE (FN, 8, UOItype)
/haiku-buildtools/gcc/gcc/
H A Dbasic-block.h207 /* Defines for accessing the fields of the CFG structure for function FN. */
208 #define ENTRY_BLOCK_PTR_FOR_FN(FN) ((FN)->cfg->x_entry_block_ptr)
209 #define EXIT_BLOCK_PTR_FOR_FN(FN) ((FN)->cfg->x_exit_block_ptr)
210 #define basic_block_info_for_fn(FN) ((FN)->cfg->x_basic_block_info)
211 #define n_basic_blocks_for_fn(FN) ((FN)->cfg->x_n_basic_blocks)
212 #define n_edges_for_fn(FN) ((F
[all...]

Completed in 214 milliseconds

12