Home
last modified time | relevance | path

Searched refs:fn_type (Results 1 – 9 of 9) sorted by relevance

/NextBSD/lib/libc/stdlib/
HDatexit.c72 int fn_type; /* ATEXIT_? from above */ member
135 fn.fn_type = ATEXIT_FN_STD; in atexit()
160 fn.fn_type = ATEXIT_FN_CXA; in atexit_b()
179 fn.fn_type = ATEXIT_FN_CXA; in __cxa_atexit()
216 if (p->fns[n].fn_type == ATEXIT_FN_EMPTY) in __cxa_finalize()
230 p->fns[n].fn_type = ATEXIT_FN_EMPTY; in __cxa_finalize()
234 if (fn.fn_type == ATEXIT_FN_CXA) in __cxa_finalize()
236 else if (fn.fn_type == ATEXIT_FN_STD) in __cxa_finalize()
/NextBSD/contrib/gcc/cp/
HDmethod.c988 tree fn_type; in implicitly_declare_fn() local
1067 fn_type = build_method_type_directly (type, return_type, parameter_types); in implicitly_declare_fn()
1069 fn_type = build_exception_variant (fn_type, raises); in implicitly_declare_fn()
1070 fn = build_lang_decl (FUNCTION_DECL, name, fn_type); in implicitly_declare_fn()
1091 this_parm = build_this_parm (fn_type, TYPE_UNQUALIFIED); in implicitly_declare_fn()
HDmangle.c742 tree fn_type; in write_encoding() local
748 fn_type = get_mostly_instantiated_function_type (decl); in write_encoding()
758 fn_type = TREE_TYPE (decl); in write_encoding()
762 write_bare_function_type (fn_type, in write_encoding()
1113 tree fn_type; in write_unqualified_name() local
1115 fn_type = get_mostly_instantiated_function_type (decl); in write_unqualified_name()
1117 type = TREE_TYPE (fn_type); in write_unqualified_name()
HDdecl.c5926 tree fn_type; in get_atexit_node() local
5947 fn_type = build_function_type (void_type_node, arg_types); in get_atexit_node()
5948 fn_ptr_type = build_pointer_type (fn_type); in get_atexit_node()
5962 fn_type = build_function_type (integer_type_node, arg_types); in get_atexit_node()
5963 fn_ptr_type = build_pointer_type (fn_type); in get_atexit_node()
5977 fn_type = build_function_type (void_type_node, void_list_node); in get_atexit_node()
5978 fn_ptr_type = build_pointer_type (fn_type); in get_atexit_node()
5981 fn_type = build_function_type (integer_type_node, arg_types); in get_atexit_node()
5987 atexit_fndecl = build_library_fn_ptr (name, fn_type); in get_atexit_node()
HDclass.c1001 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()
HDpt.c12599 tree fn_type; in get_mostly_instantiated_function_type() local
12614 fn_type = TREE_TYPE (tmpl); in get_mostly_instantiated_function_type()
12642 fn_type = tsubst (fn_type, partial_args, tf_error, NULL_TREE); in get_mostly_instantiated_function_type()
12655 return fn_type; in get_mostly_instantiated_function_type()
/NextBSD/contrib/gcc/
HDcalls.c3264 enum libcall_type fn_type, in emit_library_call_value_1() argument
3320 switch (fn_type) in emit_library_call_value_1()
3986 emit_library_call (rtx orgfun, enum libcall_type fn_type, in emit_library_call() argument
3992 emit_library_call_value_1 (0, orgfun, NULL_RTX, fn_type, outmode, nargs, p); in emit_library_call()
4006 enum libcall_type fn_type, in emit_library_call_value() argument
4013 result = emit_library_call_value_1 (1, orgfun, value, fn_type, outmode, in emit_library_call_value()
HDChangeLog-20008201 (emit_library_call, emit_library_call_value): Change fn_type arg to
21980 (emit_library_call_value_1): Rename no_queue argument to fn_type,
21983 to fn_type.
21984 * optabs.c (prepare_cmp_insn): Pass fn_type 2 to memcmp call.
HDChangeLog-20014337 * calls.c (emit_library_call): Update fn_type description.