HomeSort by: relevance | last modified time | path
    Searched defs:rettype (Results 1 - 25 of 40) sorted by relevancy

1 2

  /src/external/bsd/pcc/dist/pcc/f77/fcom/
intr.c 348 int i, rettype;
394 rettype = packed.bits.f2;
395 if(rettype == TYLONG)
396 rettype = tyint;
397 if( ISCOMPLEX(rettype) && nargs==2)
404 else q = mkexpr(OPCONV,mkconv(rettype-2,qr),
405 mkconv(rettype-2,qi));
408 q = mkconv(rettype, argsp->b_list.listp->chain.datap);
411 q->vtype = rettype;
469 rettype = packed.bits.f2
346 int i, rettype; local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/d/
intrinsics.cc 178 tree rettype = TREE_TYPE (TREE_TYPE (decl->csym)); local
179 if (mathfn_built_in (rettype, BUILT_IN_POW) != NULL_TREE)
d-attribs.cc 1299 tree rettype = TREE_TYPE (fntype); local
1300 if (!POINTER_TYPE_P (rettype))
1304 name, rettype);
  /src/external/gpl3/gcc.old/dist/gcc/cp/
cvt.cc 1058 tree rettype = TREE_TYPE (type);
1080 && (attr = lookup_attribute ("nodiscard", TYPE_ATTRIBUTES (rettype))))
1094 if (warning_at (loc, OPT_Wunused_result, format, rettype, raw_msg))
1099 inform (DECL_SOURCE_LOCATION (TYPE_NAME (rettype)),
1100 "%qT declared here", rettype);
1056 tree rettype = TREE_TYPE (type); local
lambda.cc 1218 tree rettype = build_pointer_type (stattype); local
1219 tree name = make_conv_op_name (rettype);
1221 tree fntype = build_method_type_directly (thistype, rettype, void_list_node);
  /src/external/gpl3/gdb.old/dist/gdb/
opencl-lang.c 448 struct type *rettype; local
462 rettype = lookup_opencl_vector_type (exp->gdbarch, TYPE_CODE_INT,
465 ret = value::allocate (rettype);
480 rettype = language_bool_type (exp->language_defn, exp->gdbarch);
481 ret = value_from_longest (rettype, value_logical_not (arg));
534 struct type *type1, *type2, *eltype1, *eltype2, *rettype; local
562 rettype = lookup_opencl_vector_type (exp->gdbarch, TYPE_CODE_INT,
565 ret = value::allocate (rettype);
ctfread.c 685 struct type *type, *rettype, *atype; local
698 rettype = fetch_tid_type (ccp, cfi.ctc_return);
699 type->set_target_type (rettype);
  /src/external/gpl3/gdb/dist/gdb/
opencl-lang.c 448 struct type *rettype; local
462 rettype = lookup_opencl_vector_type (exp->gdbarch, TYPE_CODE_INT,
465 ret = value::allocate (rettype);
480 rettype = language_bool_type (exp->language_defn, exp->gdbarch);
481 ret = value_from_longest (rettype, value_logical_not (arg));
534 struct type *type1, *type2, *eltype1, *eltype2, *rettype; local
562 rettype = lookup_opencl_vector_type (exp->gdbarch, TYPE_CODE_INT,
565 ret = value::allocate (rettype);
ctfread.c 685 struct type *type, *rettype, *atype; local
698 rettype = fetch_tid_type (ccp, cfi.ctc_return);
699 type->set_target_type (rettype);
  /src/external/gpl3/binutils/dist/binutils/
wrstabs.c 2056 char *rettype, *buf;
2061 rettype = stab_pop_type (info);
2063 buf = xmalloc (strlen (name) + strlen (rettype) + 3);
2066 rettype);
2067 free (rettype);
2054 char *rettype, *buf; local
stabs.c 3515 debug_type rettype; local
3533 rettype = debug_make_int_type (dhandle, 4, false);
3537 rettype = debug_make_int_type (dhandle, 1, false);
3541 rettype = debug_make_int_type (dhandle, 2, false);
3545 rettype = debug_make_int_type (dhandle, 4, false);
3549 rettype = debug_make_int_type (dhandle, 1, true);
3553 rettype = debug_make_int_type (dhandle, 1, false);
3557 rettype = debug_make_int_type (dhandle, 2, true);
3561 rettype = debug_make_int_type (dhandle, 4, true);
3565 rettype = debug_make_int_type (dhandle, 4, true)
    [all...]
  /src/external/gpl3/binutils.old/dist/binutils/
wrstabs.c 2058 char *rettype, *buf;
2063 rettype = stab_pop_type (info);
2065 buf = xmalloc (strlen (name) + strlen (rettype) + 3);
2068 rettype);
2069 free (rettype);
2056 char *rettype, *buf; local
stabs.c 3515 debug_type rettype; local
3533 rettype = debug_make_int_type (dhandle, 4, false);
3537 rettype = debug_make_int_type (dhandle, 1, false);
3541 rettype = debug_make_int_type (dhandle, 2, false);
3545 rettype = debug_make_int_type (dhandle, 4, false);
3549 rettype = debug_make_int_type (dhandle, 1, true);
3553 rettype = debug_make_int_type (dhandle, 1, false);
3557 rettype = debug_make_int_type (dhandle, 2, true);
3561 rettype = debug_make_int_type (dhandle, 4, true);
3565 rettype = debug_make_int_type (dhandle, 4, true)
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
cgraphunit.cc 1455 tree rettype = TREE_TYPE (altype); local
1457 altype = build_function_type (rettype, args);
calls.cc 2647 tree rettype;
2773 rettype = TREE_TYPE (exp);
2779 if (AGGREGATE_TYPE_P (rettype))
2790 || TYPE_MODE (rettype) == VOIDmode))
2833 if (!poly_int_tree_p (TYPE_SIZE_UNIT (rettype), &struct_value_size))
2841 /* If rettype is addressable, we may not create a temporary.
2845 && (TREE_ADDRESSABLE (rettype)
2846 || !(MEM_ALIGN (target) < TYPE_ALIGN (rettype)
2847 && targetm.slow_unaligned_access (TYPE_MODE (rettype),
2855 rtx d = assign_temp (rettype, 1, 1)
2646 tree rettype; local
    [all...]
tree-vect-stmts.cc 2655 tree rettype = TREE_TYPE (TREE_TYPE (gs_info->decl)); local
2662 gcc_checking_assert (types_compatible_p (srctype, rettype)
2717 src_op = vect_build_zero_merge_argument (vinfo, stmt_info, rettype);
2725 if (!useless_type_conversion_p (vectype, rettype))
2728 TYPE_VECTOR_SUBPARTS (rettype)));
2729 op = vect_get_new_ssa_name (rettype, vect_simple_var);
2752 tree rettype = TREE_TYPE (TREE_TYPE (gs_info->decl)); local
2760 && TREE_CODE (rettype) == VOID_TYPE);
  /src/external/gpl3/gcc/dist/gcc/cp/
constexpr.cc 275 tree rettype = TREE_TYPE (TREE_TYPE (fun)); local
276 if (!literal_type_p (rettype))
284 "function %q+D", rettype, fun))
285 explain_non_literal_class (rettype);
lambda.cc 1266 tree rettype = build_pointer_type (stattype); local
1267 tree name = make_conv_op_name (rettype);
1269 tree fntype = build_method_type_directly (thistype, rettype, void_list_node);
  /src/external/gpl3/gcc.old/dist/gcc/
cgraphunit.cc 1446 tree rettype = TREE_TYPE (altype); local
1448 altype = build_function_type (rettype, args);
calls.cc 2595 tree rettype;
2723 rettype = TREE_TYPE (exp);
2729 if (AGGREGATE_TYPE_P (rettype))
2740 || TYPE_MODE (rettype) == VOIDmode))
2783 if (!poly_int_tree_p (TYPE_SIZE_UNIT (rettype), &struct_value_size))
2791 /* If rettype is addressable, we may not create a temporary.
2795 && (TREE_ADDRESSABLE (rettype)
2796 || !(MEM_ALIGN (target) < TYPE_ALIGN (rettype)
2797 && targetm.slow_unaligned_access (TYPE_MODE (rettype),
2805 rtx d = assign_temp (rettype, 1, 1)
2594 tree rettype; local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/config/bpf/
bpf.cc 1262 tree rettype = build_function_type_list (type, type, NULL); local
1269 return add_builtin_function_ext_scope (name, rettype, -1, BUILT_IN_MD, NULL,
  /src/external/mit/isl/dist/interface/
plain_cpp.cc 548 string callback_name, rettype, c_args; local
557 rettype = callback->getReturnType().getAsString();
558 rettype = add_space_to_return_type(rettype);
566 rettype.c_str(), classname.c_str(),
2015 string c_args, cpp_args, rettype; local
2025 rettype = rtype.getAsString();
2030 pname.c_str(), c_args.c_str(), rettype.c_str());
  /src/external/gpl3/gcc/dist/gcc/config/rs6000/
rs6000-gen-builtins.cc 404 typeinfo rettype; member in struct:prototype
1640 if (protoptr->rettype.ispointer)
1643 if (protoptr->rettype.isvoid)
1647 if (protoptr->rettype.isunsigned)
1649 if (protoptr->rettype.isvector)
1650 complete_vector_type (&protoptr->rettype, buf, &bufi);
1652 complete_base_type (&protoptr->rettype, buf, &bufi);
1722 typeinfo *ret_type = &protoptr->rettype;
  /src/external/gpl3/gcc.old/dist/gcc/config/rs6000/
rs6000-gen-builtins.cc 404 typeinfo rettype; member in struct:prototype
1640 if (protoptr->rettype.ispointer)
1643 if (protoptr->rettype.isvoid)
1647 if (protoptr->rettype.isunsigned)
1649 if (protoptr->rettype.isvector)
1650 complete_vector_type (&protoptr->rettype, buf, &bufi);
1652 complete_base_type (&protoptr->rettype, buf, &bufi);
1722 typeinfo *ret_type = &protoptr->rettype;
  /src/external/gpl3/gcc.old/dist/gcc/c-family/
c-attribs.cc 3315 tree rettype = TREE_TYPE (TREE_TYPE (*node)); local
3316 if (!POINTER_TYPE_P (rettype))
3320 name, rettype);
3513 tree rettype = TREE_TYPE (fntype); local
3514 if (!POINTER_TYPE_P (rettype))
3518 name, rettype);
3561 tree rettype = TREE_TYPE (fntype); local
3562 if (!POINTER_TYPE_P (rettype))
3566 name, rettype);
3588 tree rettype = TREE_TYPE (decl) local
    [all...]

Completed in 68 milliseconds

1 2