/openbsd/gnu/usr.bin/perl/ext/XS-APItest/t/ |
H A D | call.t | 276 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/gnu/gcc/gcc/config/arc/ |
H A D | arc.c | 1013 return fn_type; in arc_compute_function_type() 1017 return fn_type; in arc_compute_function_type() 1020 fn_type = ARC_FUNCTION_NORMAL; in arc_compute_function_type() 1036 fn_type = ARC_FUNCTION_ILINK1; in arc_compute_function_type() 1038 fn_type = ARC_FUNCTION_ILINK2; in arc_compute_function_type() 1046 return fn_type; in arc_compute_function_type() 1076 enum arc_function_type fn_type; in arc_compute_frame_size() local 1187 if (ARC_INTERRUPT_P (fn_type)) in arc_output_function_prologue() 1335 || ARC_INTERRUPT_P (fn_type)) in arc_output_function_epilogue() 1352 if (ARC_INTERRUPT_P (fn_type)) in arc_output_function_epilogue() [all …]
|
/openbsd/gnu/usr.bin/gcc/gcc/config/arc/ |
H A D | arc.c | 972 return fn_type; 976 return fn_type; 979 fn_type = ARC_FUNCTION_NORMAL; 995 fn_type = ARC_FUNCTION_ILINK1; 997 fn_type = ARC_FUNCTION_ILINK2; 1005 return fn_type; 1036 enum arc_function_type fn_type; local 1153 if (ARC_INTERRUPT_P (fn_type)) 1305 || ARC_INTERRUPT_P (fn_type)) 1322 if (ARC_INTERRUPT_P (fn_type)) [all …]
|
/openbsd/regress/usr.bin/mandoc/db/out/ |
H A D | fn.dout | 37 macro 13 # fn_type # fn 63 macro 34 # fn_type # fn
|
H A D | all.mout | 60 > fn_type
|
/openbsd/gnu/gcc/gcc/config/m32r/ |
H A D | m32r.c | 1155 static enum m32r_function_type fn_type = M32R_FUNCTION_UNKNOWN; in m32r_compute_function_type() local 1162 fn_type = M32R_FUNCTION_UNKNOWN; in m32r_compute_function_type() 1164 return fn_type; in m32r_compute_function_type() 1167 if (decl == last_fn && fn_type != M32R_FUNCTION_UNKNOWN) in m32r_compute_function_type() 1168 return fn_type; in m32r_compute_function_type() 1176 return fn_type; in m32r_compute_function_type() 1277 enum m32r_function_type fn_type; in m32r_compute_frame_size() local 1292 fn_type = m32r_compute_function_type (current_function_decl); in m32r_compute_frame_size() 1293 interrupt_p = M32R_INTERRUPT_P (fn_type); in m32r_compute_frame_size() 1468 if (M32R_INTERRUPT_P (fn_type)) in m32r_output_function_prologue() [all …]
|
/openbsd/gnu/usr.bin/gcc/gcc/config/m32r/ |
H A D | m32r.c | 1775 static enum m32r_function_type fn_type = M32R_FUNCTION_UNKNOWN; local 1782 fn_type = M32R_FUNCTION_UNKNOWN; 1784 return fn_type; 1787 if (decl == last_fn && fn_type != M32R_FUNCTION_UNKNOWN) 1788 return fn_type; 1796 return fn_type; 1899 enum m32r_function_type fn_type; local 1912 fn_type = m32r_compute_function_type (current_function_decl); 1913 interrupt_p = M32R_INTERRUPT_P (fn_type); 2052 if (M32R_INTERRUPT_P (fn_type)) [all …]
|
/openbsd/gnu/gcc/gcc/cp/ |
H A D | method.c | 986 tree fn_type; in implicitly_declare_fn() local 1065 fn_type = build_method_type_directly (type, return_type, parameter_types); in implicitly_declare_fn() 1067 fn_type = build_exception_variant (fn_type, raises); in implicitly_declare_fn() 1068 fn = build_lang_decl (FUNCTION_DECL, name, fn_type); in implicitly_declare_fn() 1089 this_parm = build_this_parm (fn_type, TYPE_UNQUALIFIED); in implicitly_declare_fn()
|
H A D | mangle.c | 741 tree fn_type; in write_encoding() local 747 fn_type = get_mostly_instantiated_function_type (decl); in write_encoding() 757 fn_type = TREE_TYPE (decl); in write_encoding() 761 write_bare_function_type (fn_type, in write_encoding() 1109 tree fn_type; in write_unqualified_name() local 1111 fn_type = get_mostly_instantiated_function_type (decl); in write_unqualified_name() 1113 type = TREE_TYPE (fn_type); in write_unqualified_name()
|
H A D | decl.c | 5492 tree fn_type; in get_atexit_node() local 5513 fn_type = build_function_type (void_type_node, arg_types); in get_atexit_node() 5514 fn_ptr_type = build_pointer_type (fn_type); in get_atexit_node() 5528 fn_type = build_function_type (integer_type_node, arg_types); in get_atexit_node() 5529 fn_ptr_type = build_pointer_type (fn_type); in get_atexit_node() 5543 fn_type = build_function_type (void_type_node, void_list_node); in get_atexit_node() 5544 fn_ptr_type = build_pointer_type (fn_type); in get_atexit_node() 5547 fn_type = build_function_type (integer_type_node, arg_types); in get_atexit_node() 5553 atexit_fndecl = build_library_fn_ptr (name, fn_type); in get_atexit_node()
|
H A D | class.c | 1001 tree fn_type; in add_method() local 1019 fn_type = TREE_TYPE (fn); in add_method() 1021 parms1 = TYPE_ARG_TYPES (fn_type); in add_method() 1036 && (!same_type_p (TREE_TYPE (fn_type), in add_method() 1049 || same_type_p (TREE_TYPE (fn_type), in add_method()
|
H A D | pt.c | 12561 tree fn_type; in get_mostly_instantiated_function_type() local 12576 fn_type = TREE_TYPE (tmpl); in get_mostly_instantiated_function_type() 12604 fn_type = tsubst (fn_type, partial_args, tf_error, NULL_TREE); in get_mostly_instantiated_function_type() 12617 return fn_type; in get_mostly_instantiated_function_type()
|
/openbsd/gnu/usr.bin/gcc/gcc/cp/ |
H A D | mangle.c | 654 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 D | decl.c | 9153 tree fn_type; in get_atexit_node() local 9172 fn_type = build_function_type (void_type_node, arg_types); in get_atexit_node() 9173 fn_ptr_type = build_pointer_type (fn_type); in get_atexit_node() 9179 fn_type = build_function_type (integer_type_node, arg_types); in get_atexit_node() 9180 fn_ptr_type = build_pointer_type (fn_type); in get_atexit_node() 9191 fn_type = build_function_type (void_type_node, void_list_node); in get_atexit_node() 9192 fn_ptr_type = build_pointer_type (fn_type); in get_atexit_node() 9195 fn_type = build_function_type (integer_type_node, arg_types); in get_atexit_node() 9201 atexit_fndecl = build_library_fn_ptr (name, fn_type); in get_atexit_node()
|
H A D | pt.c | 10788 tree fn_type; local 10803 fn_type = TREE_TYPE (tmpl); 10832 fn_type = tsubst (fn_type, partial_args, tf_error, NULL_TREE); 10844 return fn_type;
|
/openbsd/gnu/usr.bin/gcc/gcc/treelang/ |
H A D | treetree.c | 242 tree fn_type; in tree_code_create_function_prototype() local 259 fn_type = build_function_type (type_node, type_list); in tree_code_create_function_prototype() 262 fn_decl = build_decl (FUNCTION_DECL, id, fn_type); in tree_code_create_function_prototype()
|
/openbsd/gnu/gcc/gcc/treelang/ |
H A D | treetree.c | 326 tree fn_type; in tree_code_create_function_prototype() local 346 fn_type = build_function_type (type_node, type_list); in tree_code_create_function_prototype() 349 fn_decl = build_decl (FUNCTION_DECL, id, fn_type); in tree_code_create_function_prototype()
|
/openbsd/gnu/usr.bin/gcc/gcc/ |
H A D | calls.c | 3492 emit_library_call_value_1 (retval, orgfun, value, fn_type, outmode, nargs, p) in emit_library_call_value_1() argument 3496 enum libcall_type fn_type; 3557 switch (fn_type) 4317 emit_library_call VPARAMS((rtx orgfun, enum libcall_type fn_type, in emit_library_call() argument 4322 VA_FIXEDARG (p, int, fn_type); in emit_library_call() 4326 emit_library_call_value_1 (0, orgfun, NULL_RTX, fn_type, outmode, nargs, p); in emit_library_call() 4341 enum libcall_type fn_type, in emit_library_call_value() argument 4349 VA_FIXEDARG (p, int, fn_type); in emit_library_call_value() 4353 result = emit_library_call_value_1 (1, orgfun, value, fn_type, outmode, in emit_library_call_value()
|
H A D | ChangeLog.3 | 6714 (emit_library_call_value_1): Rename no_queue argument to fn_type, 6717 to fn_type. 6718 * optabs.c (prepare_cmp_insn): Pass fn_type 2 to memcmp call.
|
H A D | ChangeLog.4 | 8195 (emit_library_call, emit_library_call_value): Change fn_type arg to
|
H A D | ChangeLog.6 | 4337 * calls.c (emit_library_call): Update fn_type description.
|
/openbsd/gnu/gcc/gcc/ |
H A D | calls.c | 3263 enum libcall_type fn_type, in emit_library_call_value_1() argument 3319 switch (fn_type) in emit_library_call_value_1() 3985 emit_library_call (rtx orgfun, enum libcall_type fn_type, in emit_library_call() argument 3991 emit_library_call_value_1 (0, orgfun, NULL_RTX, fn_type, outmode, nargs, p); in emit_library_call() 4005 enum libcall_type fn_type, in emit_library_call_value() argument 4012 result = emit_library_call_value_1 (1, orgfun, value, fn_type, outmode, in emit_library_call_value()
|
/openbsd/regress/usr.bin/mandoc/db/run/ |
H A D | Makefile | 237 (echo "> fn_type"; man -kwM fn.dir Ft=fn_type; \
|