Home
last modified time | relevance | path

Searched refs:ptr_type (Results 1 – 13 of 13) sorted by relevance

/NextBSD/contrib/libcxxrt/
HDdynamic_cast.cc92 const __pbase_type_info *ptr_type = in __do_catch() local
95 if (ptr_type->__flags & ~__flags) in __do_catch()
107 return __pointee->__do_catch(ptr_type->__pointee, exception_object, outer); in __do_catch()
/NextBSD/contrib/gcc/
HDtree-ssa-alias-warnings.c897 tree ptr_type = get_otype (ptr, true); in nonstandard_alias_p() local
908 if (struct_class_union_p (ptr_type) || struct_class_union_p (alias_type)) in nonstandard_alias_p()
923 return nonstandard_alias_types_p (ptr_type, alias_type); in nonstandard_alias_p()
HDtree-ssa-ccp.c1855 tree ptr_type = TREE_TYPE (expr); in maybe_fold_stmt_addition() local
1861 if (!POINTER_TYPE_P (ptr_type)) in maybe_fold_stmt_addition()
1941 ptd_type = TREE_TYPE (ptr_type); in maybe_fold_stmt_addition()
1949 t = build1 (ADDR_EXPR, ptr_type, t); in maybe_fold_stmt_addition()
HDtree-ssa-alias.c1984 tree ptr_type = TREE_TYPE (ptr); in may_alias_p() local
1998 while (POINTER_TYPE_P (ptr_type)) in may_alias_p()
2001 ptr_type = TREE_TYPE (ptr_type); in may_alias_p()
HDomp-low.c3733 tree ptr_type, t, args, l0, l1, l2, copyin_seq; in lower_omp_single_copy() local
3737 ptr_type = build_pointer_type (ctx->record_type); in lower_omp_single_copy()
3738 ctx->receiver_decl = create_tmp_var (ptr_type, ".omp_copy_i"); in lower_omp_single_copy()
3746 t = fold_convert (ptr_type, t); in lower_omp_single_copy()
3751 build_int_cst (ptr_type, 0)); in lower_omp_single_copy()
HDfunction.c3227 tree ptr_type, addr, args; in gimplify_parameters() local
3229 ptr_type = build_pointer_type (type); in gimplify_parameters()
3230 addr = create_tmp_var (ptr_type, get_name (parm)); in gimplify_parameters()
3237 t = fold_convert (ptr_type, t); in gimplify_parameters()
HDgimplify.c1227 tree t, args, addr, ptr_type; in gimplify_decl_expr() local
1237 ptr_type = build_pointer_type (TREE_TYPE (decl)); in gimplify_decl_expr()
1238 addr = create_tmp_var (ptr_type, get_name (decl)); in gimplify_decl_expr()
1247 t = fold_convert (ptr_type, t); in gimplify_decl_expr()
HDtree-vect-transform.c2693 tree ptr_type = TREE_TYPE (start_addr); in vect_gen_niters_for_prolog_loop() local
2694 tree size = TYPE_SIZE (ptr_type); in vect_gen_niters_for_prolog_loop()
HDc-decl.c7768 tree ptr_type, byref_decl; in build_block_byref_decl() local
7808 ptr_type = (TREE_CODE (decl) == VAR_DECL && BLOCK_DECL_BYREF (decl)) in build_block_byref_decl()
7810 byref_decl = build_decl (VAR_DECL, name, ptr_type); in build_block_byref_decl()
HDChangeLog-200535854 object. [ptr_type]: Remove unused variable.
/NextBSD/contrib/gdb/gdb/
HDvalarith.c56 find_size_for_pointer_math (struct type *ptr_type) in find_size_for_pointer_math() argument
61 ptr_target = check_typedef (TYPE_TARGET_TYPE (ptr_type)); in find_size_for_pointer_math()
66 if (TYPE_CODE (ptr_type) == TYPE_CODE_VOID) in find_size_for_pointer_math()
/NextBSD/contrib/gcc/cp/
HDparser.c19988 tree ptr_type, byref_decl; in build_block_byref_decl() local
20046 ptr_type = (TREE_CODE (decl) == VAR_DECL && BLOCK_DECL_BYREF (decl)) in build_block_byref_decl()
20048 byref_decl = build_decl (VAR_DECL, name, ptr_type); in build_block_byref_decl()
/NextBSD/contrib/ntp/
HDCommitLog158709 Remove unnecessary casts, use sizeof(*ptr) instead of sizeof(ptr_type)