| /dflybsd-src/sys/dev/drm/include/linux/ |
| H A D | kfifo.h | 231 #define __STRUCT_KFIFO_COMMON(datatype, recsize, ptrtype) \ argument 237 ptrtype *ptr; \ 238 ptrtype const *ptr_const; \ 241 #define __STRUCT_KFIFO(type, size, recsize, ptrtype) \ argument 243 __STRUCT_KFIFO_COMMON(type, recsize, ptrtype); \
|
| /dflybsd-src/contrib/gcc-8.0/gcc/ |
| H A D | gimple-streamer-out.c | 153 tree ptrtype = build_pointer_type (TREE_TYPE (*basep)); in output_gimple_stmt() local 155 build1 (ADDR_EXPR, ptrtype, *basep), in output_gimple_stmt() 156 build_int_cst (ptrtype, 0)); in output_gimple_stmt()
|
| H A D | lto-streamer-out.c | 2335 tree ptrtype = build_pointer_type (TREE_TYPE (decl)); in wrap_refs() local 2337 build1 (ADDR_EXPR, ptrtype, decl), in wrap_refs() 2338 build_int_cst (ptrtype, 0)); in wrap_refs()
|
| H A D | fold-const.c | 7649 build_fold_addr_expr_with_type_loc (location_t loc, tree t, tree ptrtype) in build_fold_addr_expr_with_type_loc() argument 7659 if (TREE_TYPE (t) != ptrtype) in build_fold_addr_expr_with_type_loc() 7660 t = build1_loc (loc, NOP_EXPR, ptrtype, t); in build_fold_addr_expr_with_type_loc() 7667 return fold_binary (POINTER_PLUS_EXPR, ptrtype, in build_fold_addr_expr_with_type_loc() 7674 if (TREE_TYPE (t) != ptrtype) in build_fold_addr_expr_with_type_loc() 7675 t = fold_convert_loc (loc, ptrtype, t); in build_fold_addr_expr_with_type_loc() 7678 t = build1_loc (loc, ADDR_EXPR, ptrtype, t); in build_fold_addr_expr_with_type_loc() 7688 tree ptrtype = build_pointer_type (TREE_TYPE (t)); in build_fold_addr_expr_loc() local 7690 return build_fold_addr_expr_with_type_loc (loc, t, ptrtype); in build_fold_addr_expr_loc() 10820 tree ptrtype in fold_binary_loc() local [all …]
|
| H A D | tree-ssa-strlen.c | 2768 tree ptrtype = build_pointer_type_for_mode (char_type_node, in handle_builtin_memcmp() local 2770 off = build_int_cst (ptrtype, 0); in handle_builtin_memcmp()
|
| H A D | tree-vect-stmts.c | 2573 tree ptrtype = TREE_VALUE (arglist); arglist = TREE_CHAIN (arglist); in vect_build_gather_load_calls() local 2629 tree ptr = fold_convert (ptrtype, gs_info->base); in vect_build_gather_load_calls() 6293 tree rettype, srctype, ptrtype, idxtype, masktype, scaletype; in vectorizable_store() local 6340 ptrtype = TREE_VALUE (arglist); arglist = TREE_CHAIN (arglist); in vectorizable_store() 6349 ptr = fold_convert (ptrtype, gs_info.base); in vectorizable_store()
|
| H A D | tree-inline.c | 4788 tree ptrtype = build_pointer_type (TREE_TYPE (*pvar)); in expand_call_inline() local 4789 newargs.quick_push (build1 (ADDR_EXPR, ptrtype, *pvar)); in expand_call_inline()
|
| /dflybsd-src/contrib/gcc-8.0/gcc/cp/ |
| H A D | lambda.c | 503 tree ptrtype = build_pointer_type (TREE_TYPE (array_type)); in vla_capture_type() local 504 tree field = build_decl (input_location, FIELD_DECL, ptr_id, ptrtype); in vla_capture_type()
|
| H A D | typeck.c | 2042 tree ptrtype; in decay_conversion() local 2076 ptrtype = build_pointer_type (TREE_TYPE (type)); in decay_conversion() 2082 adr = build_nop (ptrtype, build_address (exp)); in decay_conversion() 2088 return cp_convert (ptrtype, adr, complain); in decay_conversion() 5492 pointer_diff (location_t loc, tree op0, tree op1, tree ptrtype, in pointer_diff() argument 5497 tree target_type = TREE_TYPE (ptrtype); in pointer_diff() 5581 op1 = (TYPE_PTROB_P (ptrtype) in pointer_diff()
|
| /dflybsd-src/contrib/gcc-4.7/gcc/cp/ |
| H A D | typeck.c | 1853 tree ptrtype; in decay_conversion() local 1881 ptrtype = build_pointer_type (TREE_TYPE (type)); in decay_conversion() 1887 adr = build_nop (ptrtype, build_address (exp)); in decay_conversion() 1893 return cp_convert (ptrtype, adr); in decay_conversion() 4569 pointer_diff (tree op0, tree op1, tree ptrtype) in pointer_diff() argument 4573 tree target_type = TREE_TYPE (ptrtype); in pointer_diff() 4598 op1 = (TYPE_PTROB_P (ptrtype) in pointer_diff()
|
| /dflybsd-src/contrib/gcc-4.7/gcc/ |
| H A D | tree-vect-stmts.c | 4348 tree rettype, srctype, ptrtype, idxtype, masktype, scaletype; in vectorizable_load() local 4387 ptrtype = TREE_VALUE (arglist); arglist = TREE_CHAIN (arglist); in vectorizable_load() 4396 ptr = fold_convert (ptrtype, gather_base); in vectorizable_load()
|
| H A D | fold-const.c | 7659 build_fold_addr_expr_with_type_loc (location_t loc, tree t, tree ptrtype) in build_fold_addr_expr_with_type_loc() argument 7669 if (TREE_TYPE (t) != ptrtype) in build_fold_addr_expr_with_type_loc() 7670 t = build1_loc (loc, NOP_EXPR, ptrtype, t); in build_fold_addr_expr_with_type_loc() 7679 if (TREE_TYPE (t) != ptrtype) in build_fold_addr_expr_with_type_loc() 7680 t = fold_convert_loc (loc, ptrtype, t); in build_fold_addr_expr_with_type_loc() 7683 t = build1_loc (loc, ADDR_EXPR, ptrtype, t); in build_fold_addr_expr_with_type_loc() 7693 tree ptrtype = build_pointer_type (TREE_TYPE (t)); in build_fold_addr_expr_loc() local 7695 return build_fold_addr_expr_with_type_loc (loc, t, ptrtype); in build_fold_addr_expr_loc()
|
| H A D | c-typeck.c | 1774 tree ptrtype; in array_to_pointer_conversion() local 1783 ptrtype = build_pointer_type (restype); in array_to_pointer_conversion() 1786 return convert (ptrtype, TREE_OPERAND (exp, 0)); in array_to_pointer_conversion() 1801 return convert (ptrtype, adr); in array_to_pointer_conversion()
|
| /dflybsd-src/contrib/gcc-8.0/gcc/c/ |
| H A D | c-typeck.c | 1872 tree ptrtype; in array_to_pointer_conversion() local 1881 ptrtype = build_pointer_type (restype); in array_to_pointer_conversion() 1884 return convert (ptrtype, TREE_OPERAND (exp, 0)); in array_to_pointer_conversion() 1899 return convert (ptrtype, adr); in array_to_pointer_conversion()
|
| /dflybsd-src/contrib/gcc-4.7/gcc/objc/ |
| H A D | objc-act.c | 3085 tree ptrtype = build_pointer_type (TREE_TYPE (TREE_TYPE (string))); in my_build_string_pointer() local 3086 return build1 (ADDR_EXPR, ptrtype, string); in my_build_string_pointer()
|
| /dflybsd-src/contrib/gcc-4.7/gcc/config/i386/ |
| H A D | i386.c | 7877 tree ptrtype; in ix86_gimplify_va_arg() local 8144 ptrtype = build_pointer_type_for_mode (type, ptr_mode, true); in ix86_gimplify_va_arg() 8145 addr = fold_convert (ptrtype, addr); in ix86_gimplify_va_arg()
|
| /dflybsd-src/contrib/gcc-8.0/gcc/config/i386/ |
| H A D | i386.c | 9997 tree ptrtype; in ix86_gimplify_va_arg() local 10271 ptrtype = build_pointer_type_for_mode (type, ptr_mode, true); in ix86_gimplify_va_arg() 10272 addr = fold_convert (ptrtype, addr); in ix86_gimplify_va_arg()
|