Searched refs:fn_type (Results 1 - 18 of 18) sorted by relevance

/openbsd-current/gnu/usr.bin/perl/ext/XS-APItest/t/
H A Dcall.t276 for my $fn_type (qw(eval_pv eval_sv call_sv)) {
286 next if $fn_type eq 'call_sv' and !$is_fn_name;
298 if ($fn_type eq 'eval_pv') {
315 elsif ($fn_type eq 'eval_sv') {
319 elsif ($fn_type eq 'call_sv') {
323 is(scalar @ret, ($expect_success && $fn_type ne 'eval_pv') ? 2 : 1,
327 if ($keep && $fn_type ne 'eval_pv') {
/openbsd-current/gnu/gcc/gcc/config/arc/
H A Darc.c1014 static enum arc_function_type fn_type = ARC_FUNCTION_UNKNOWN;
1021 fn_type = ARC_FUNCTION_UNKNOWN;
1023 return fn_type;
1026 if (decl == last_fn && fn_type != ARC_FUNCTION_UNKNOWN)
1027 return fn_type;
1030 fn_type = ARC_FUNCTION_NORMAL;
1046 fn_type = ARC_FUNCTION_ILINK1;
1048 fn_type = ARC_FUNCTION_ILINK2;
1056 return fn_type;
1086 enum arc_function_type fn_type;
1004 static enum arc_function_type fn_type = ARC_FUNCTION_UNKNOWN; local
1076 enum arc_function_type fn_type; local
1183 enum arc_function_type fn_type = arc_compute_function_type (current_function_decl); local
1257 enum arc_function_type fn_type = arc_compute_function_type (current_function_decl); local
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/config/arc/
H A Darc.c973 static enum arc_function_type fn_type = ARC_FUNCTION_UNKNOWN;
980 fn_type = ARC_FUNCTION_UNKNOWN;
982 return fn_type;
985 if (decl == last_fn && fn_type != ARC_FUNCTION_UNKNOWN)
986 return fn_type;
989 fn_type = ARC_FUNCTION_NORMAL;
1005 fn_type = ARC_FUNCTION_ILINK1;
1007 fn_type = ARC_FUNCTION_ILINK2;
1015 return fn_type;
1046 enum arc_function_type fn_type;
963 static enum arc_function_type fn_type = ARC_FUNCTION_UNKNOWN; local
1036 enum arc_function_type fn_type; local
1149 enum arc_function_type fn_type = arc_compute_function_type (current_function_decl); local
1226 enum arc_function_type fn_type = arc_compute_function_type (current_function_decl); local
[all...]
/openbsd-current/gnu/gcc/gcc/config/m32r/
H A Dm32r.c1167 static enum m32r_function_type fn_type = M32R_FUNCTION_UNKNOWN;
1174 fn_type = M32R_FUNCTION_UNKNOWN;
1176 return fn_type;
1179 if (decl == last_fn && fn_type != M32R_FUNCTION_UNKNOWN)
1180 return fn_type;
1183 fn_type = (lookup_attribute ("interrupt", DECL_ATTRIBUTES (current_function_decl)) != NULL_TREE
1188 return fn_type;
1290 enum m32r_function_type fn_type;
1305 fn_type = m32r_compute_function_type (current_function_decl);
1306 interrupt_p = M32R_INTERRUPT_P (fn_type);
1155 static enum m32r_function_type fn_type = M32R_FUNCTION_UNKNOWN; local
1277 enum m32r_function_type fn_type; local
1465 enum m32r_function_type fn_type = m32r_compute_function_type (current_function_decl); local
1493 enum m32r_function_type fn_type = m32r_compute_function_type (current_function_decl); local
[all...]
/openbsd-current/gnu/gcc/gcc/cp/
H A Dmethod.c988 tree fn_type;
1067 fn_type = build_method_type_directly (type, return_type, parameter_types);
1069 fn_type = build_exception_variant (fn_type, raises);
1070 fn = build_lang_decl (FUNCTION_DECL, name, fn_type);
1091 this_parm = build_this_parm (fn_type, TYPE_UNQUALIFIED);
986 tree fn_type; local
H A Dmangle.c741 tree fn_type; local
747 fn_type = get_mostly_instantiated_function_type (decl);
757 fn_type = TREE_TYPE (decl);
761 write_bare_function_type (fn_type,
1109 tree fn_type; local
1111 fn_type = get_mostly_instantiated_function_type (decl);
1113 type = TREE_TYPE (fn_type);
H A Ddecl.c5504 tree fn_type;
5525 fn_type = build_function_type (void_type_node, arg_types);
5526 fn_ptr_type = build_pointer_type (fn_type);
5540 fn_type = build_function_type (integer_type_node, arg_types);
5541 fn_ptr_type = build_pointer_type (fn_type);
5555 fn_type = build_function_type (void_type_node, void_list_node);
5556 fn_ptr_type = build_pointer_type (fn_type);
5559 fn_type = build_function_type (integer_type_node, arg_types);
5565 atexit_fndecl = build_library_fn_ptr (name, fn_type);
5492 tree fn_type; local
H A Dclass.c1003 tree fn_type;
1021 fn_type = TREE_TYPE (fn);
1023 parms1 = TYPE_ARG_TYPES (fn_type);
1038 && (!same_type_p (TREE_TYPE (fn_type),
1051 || same_type_p (TREE_TYPE (fn_type),
1001 tree fn_type; local
H A Dpt.c12563 tree fn_type;
12578 fn_type = TREE_TYPE (tmpl);
12606 fn_type = tsubst (fn_type, partial_args, tf_error, NULL_TREE);
12619 return fn_type;
12561 tree fn_type; local
/openbsd-current/gnu/usr.bin/gcc/gcc/config/m32r/
H A Dm32r.c1790 static enum m32r_function_type fn_type = M32R_FUNCTION_UNKNOWN;
1797 fn_type = M32R_FUNCTION_UNKNOWN;
1799 return fn_type;
1802 if (decl == last_fn && fn_type != M32R_FUNCTION_UNKNOWN)
1803 return fn_type;
1806 fn_type = (lookup_attribute ("interrupt", DECL_ATTRIBUTES (current_function_decl)) != NULL_TREE
1811 return fn_type;
1915 enum m32r_function_type fn_type;
1928 fn_type = m32r_compute_function_type (current_function_decl);
1929 interrupt_p = M32R_INTERRUPT_P (fn_type);
1775 static enum m32r_function_type fn_type = M32R_FUNCTION_UNKNOWN; local
1899 enum m32r_function_type fn_type; local
2049 enum m32r_function_type fn_type = m32r_compute_function_type (current_function_decl); local
2082 enum m32r_function_type fn_type = m32r_compute_function_type (current_function_decl); local
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/treelang/
H A Dtreetree.c242 tree fn_type; local
259 fn_type = build_function_type (type_node, type_list);
262 fn_decl = build_decl (FUNCTION_DECL, id, fn_type);
/openbsd-current/gnu/usr.bin/gcc/gcc/cp/
H A Dmangle.c654 tree fn_type; local
657 fn_type = get_mostly_instantiated_function_type (decl);
659 fn_type = TREE_TYPE (decl);
661 write_bare_function_type (fn_type,
1012 tree fn_type = get_mostly_instantiated_function_type (decl); local
1013 type = TREE_TYPE (fn_type);
H A Ddecl.c9168 tree fn_type;
9187 fn_type = build_function_type (void_type_node, arg_types);
9188 fn_ptr_type = build_pointer_type (fn_type);
9194 fn_type = build_function_type (integer_type_node, arg_types);
9195 fn_ptr_type = build_pointer_type (fn_type);
9206 fn_type = build_function_type (void_type_node, void_list_node);
9207 fn_ptr_type = build_pointer_type (fn_type);
9210 fn_type = build_function_type (integer_type_node, arg_types);
9216 atexit_fndecl = build_library_fn_ptr (name, fn_type);
9153 tree fn_type; local
H A Dpt.c10790 tree fn_type;
10805 fn_type = TREE_TYPE (tmpl);
10834 fn_type = tsubst (fn_type, partial_args, tf_error, NULL_TREE);
10846 return fn_type;
10788 tree fn_type; local
/openbsd-current/gnu/gcc/gcc/treelang/
H A Dtreetree.c326 tree fn_type; local
346 fn_type = build_function_type (type_node, type_list);
349 fn_decl = build_decl (FUNCTION_DECL, id, fn_type);
/openbsd-current/gnu/usr.bin/gcc/gcc/
H A Dcalls.c3495 emit_library_call_value_1 (retval, orgfun, value, fn_type, outmode, nargs, p)
3499 enum libcall_type fn_type;
3560 switch (fn_type)
4321 emit_library_call VPARAMS((rtx orgfun, enum libcall_type fn_type,
4326 VA_FIXEDARG (p, int, fn_type);
4330 emit_library_call_value_1 (0, orgfun, NULL_RTX, fn_type, outmode, nargs, p);
4346 enum libcall_type fn_type,
4354 VA_FIXEDARG (p, int, fn_type);
4358 result = emit_library_call_value_1 (1, orgfun, value, fn_type, outmode,
4317 emit_library_call(rtx orgfun, enum libcall_type fn_type, enum machine_mode outmode, int nargs, ...) argument
4340 emit_library_call_value(rtx orgfun, rtx value, enum libcall_type fn_type, enum machine_mode outmode, int nargs, ...) argument
/openbsd-current/gnu/gcc/gcc/
H A Dcalls.c3265 enum libcall_type fn_type,
3321 switch (fn_type)
3988 emit_library_call (rtx orgfun, enum libcall_type fn_type,
3994 emit_library_call_value_1 (0, orgfun, NULL_RTX, fn_type, outmode, nargs, p);
4009 enum libcall_type fn_type,
4016 result = emit_library_call_value_1 (1, orgfun, value, fn_type, outmode,
3262 emit_library_call_value_1(int retval, rtx orgfun, rtx value, enum libcall_type fn_type, enum machine_mode outmode, int nargs, va_list p) argument
3985 emit_library_call(rtx orgfun, enum libcall_type fn_type, enum machine_mode outmode, int nargs, ...) argument
4004 emit_library_call_value(rtx orgfun, rtx value, enum libcall_type fn_type, enum machine_mode outmode, int nargs, ...) argument
/openbsd-current/regress/usr.bin/mandoc/db/run/
H A DMakefile237 (echo "> fn_type"; man -kwM fn.dir Ft=fn_type; \

Completed in 590 milliseconds