| /src/external/gpl3/gdb/dist/gdb/ |
| d-valprint.c | 46 struct type *ptr_type; local 53 ptr_type = type->field (1).type (); 54 elttype = check_typedef (ptr_type->target_type ()); 55 addr = unpack_pointer (ptr_type,
|
| findcmd.c | 269 struct type *ptr_type = builtin_type (gdbarch)->builtin_data_ptr; local 272 value_from_pointer (ptr_type, last_found_addr));
|
| auxv.c | 86 type *ptr_type = builtin_type (arch)->builtin_data_ptr; local 87 size_t ptr_size = ptr_type->length (); 130 data_address = extract_typed_address (ptr_buf, ptr_type); 159 if (extract_typed_address (ptr_buf, ptr_type) == AT_NULL) 201 if (extract_typed_address (readbuf, ptr_type) == AT_NULL) 258 struct type *ptr_type = builtin_type (gdbarch)->builtin_data_ptr; local 259 const int sizeof_auxv_val = ptr_type->length (); 289 struct type *ptr_type = builtin_type (gdbarch)->builtin_data_ptr; local 290 const int sizeof_auxv_type = ptr_type->length ();
|
| bsd-uthread.c | 185 type *ptr_type 187 return read_memory_typed_address (addr, ptr_type); 184 type *ptr_type local
|
| ada-valprint.c | 788 struct type *ptr_type = builtin_type (gdbarch)->builtin_data_ptr; 789 CORE_ADDR addr = extract_typed_address (valaddr, ptr_type); 787 struct type *ptr_type = builtin_type (gdbarch)->builtin_data_ptr; local
|
| solib-darwin.c | 107 type *ptr_type local 117 len = 4 + 4 + 2 * ptr_type->length (); 131 info->all_image.info = extract_typed_address (buf + 8, ptr_type); 133 (buf + 8 + ptr_type->length (), ptr_type); 218 type *ptr_type local 220 enum bfd_endian byte_order = type_byte_order (ptr_type); 221 int ptr_len = ptr_type->length (); 252 load_addr = extract_typed_address (buf.data (), ptr_type); 253 path_addr = extract_typed_address (buf.data () + ptr_len, ptr_type); 325 type *ptr_type local 473 type *ptr_type local [all...] |
| elfread.c | 552 struct type *ptr_type = builtin_type (gdbarch)->builtin_data_ptr; local 553 size_t ptr_size = ptr_type->length (); 839 type *ptr_type = builtin_type (gdbarch)->builtin_data_ptr; member in struct:objfile 840 size_t ptr_size = ptr_type->length (); 862 addr = extract_typed_address (buf, ptr_type);
|
| gnu-v3-abi.c | 464 struct type *ptr_type; local 471 ptr_type = builtin_type (gdbarch)->builtin_data_ptr; 512 if ((- cur_base_offset) % ptr_type->length () != 0) 514 cur_base_offset = cur_base_offset / ((int) ptr_type->length ());
|
| /src/external/gpl3/gdb.old/dist/gdb/ |
| d-valprint.c | 46 struct type *ptr_type; local 53 ptr_type = type->field (1).type (); 54 elttype = check_typedef (ptr_type->target_type ()); 55 addr = unpack_pointer (ptr_type,
|
| findcmd.c | 269 struct type *ptr_type = builtin_type (gdbarch)->builtin_data_ptr; local 272 value_from_pointer (ptr_type, last_found_addr));
|
| auxv.c | 87 type *ptr_type = builtin_type (arch)->builtin_data_ptr; local 88 size_t ptr_size = ptr_type->length (); 130 data_address = extract_typed_address (ptr_buf, ptr_type); 159 if (extract_typed_address (ptr_buf, ptr_type) == AT_NULL) 201 if (extract_typed_address (readbuf, ptr_type) == AT_NULL) 258 struct type *ptr_type = builtin_type (gdbarch)->builtin_data_ptr; local 259 const int sizeof_auxv_val = ptr_type->length (); 289 struct type *ptr_type = builtin_type (gdbarch)->builtin_data_ptr; local 290 const int sizeof_auxv_type = ptr_type->length ();
|
| bsd-uthread.c | 186 type *ptr_type 188 return read_memory_typed_address (addr, ptr_type); 185 type *ptr_type local
|
| ada-valprint.c | 788 struct type *ptr_type = builtin_type (gdbarch)->builtin_data_ptr; 789 CORE_ADDR addr = extract_typed_address (valaddr, ptr_type); 787 struct type *ptr_type = builtin_type (gdbarch)->builtin_data_ptr; local
|
| solib-darwin.c | 107 type *ptr_type local 117 len = 4 + 4 + 2 * ptr_type->length (); 131 info->all_image.info = extract_typed_address (buf + 8, ptr_type); 133 (buf + 8 + ptr_type->length (), ptr_type); 218 type *ptr_type local 220 enum bfd_endian byte_order = type_byte_order (ptr_type); 221 int ptr_len = ptr_type->length (); 252 load_addr = extract_typed_address (buf, ptr_type); 253 path_addr = extract_typed_address (buf + ptr_len, ptr_type); 326 type *ptr_type local 474 type *ptr_type local [all...] |
| /src/external/bsd/elftosb/dist/common/ |
| smart_ptr.h | 22 typedef T * ptr_type; typedef in class:smart_ptr 31 smart_ptr(ptr_type p) : _p(p) {} 38 ptr_type get() { return _p; } 47 void set(ptr_type p) 78 operator ptr_type () { return _p; } 95 set(const_cast<ptr_type>(p)); 100 ptr_type operator ->() { return _p; } 114 ptr_type _p; //!< The wrapped pointer. 131 typedef T * ptr_type; typedef in class:smart_array_ptr 140 smart_array_ptr(ptr_type p) : _p(p) { [all...] |
| /src/external/bsd/libc++/dist/libcxxrt/src/ |
| dynamic_cast.cc | 92 const __pbase_type_info *ptr_type = local 95 if (ptr_type->__flags & ~__flags) 107 return __pointee->__do_catch(ptr_type->__pointee, exception_object, outer);
|
| /src/external/gpl3/gdb/dist/gdb/compile/ |
| compile-object-run.c | 69 struct type *ptr_type local 72 addr_value = value_from_pointer (ptr_type,
|
| /src/external/gpl3/gdb.old/dist/gdb/compile/ |
| compile-object-run.c | 69 struct type *ptr_type local 72 addr_value = value_from_pointer (ptr_type,
|
| /src/external/gpl3/gcc/dist/gcc/config/gcn/ |
| gcn-tree.cc | 323 tree ptr_type = build_pointer_type (var_type); local 324 tree addr = build_int_cst (ptr_type, machfun->reduction_base + offset); 573 tree ptr_type = build_pointer_type (type); local 574 return create_tmp_var_raw (ptr_type, name); 580 tree ptr_type = build_pointer_type (type); local 581 return build_int_cst (ptr_type, offset);
|
| /src/external/gpl3/gcc.old/dist/gcc/config/gcn/ |
| gcn-tree.cc | 323 tree ptr_type = build_pointer_type (var_type); local 324 tree addr = build_int_cst (ptr_type, machfun->reduction_base + offset); 573 tree ptr_type = build_pointer_type (type); local 574 return create_tmp_var_raw (ptr_type, name); 580 tree ptr_type = build_pointer_type (type); local 581 return build_int_cst (ptr_type, offset);
|
| /src/external/gpl3/gcc/dist/libcc1/ |
| libcc1plugin.cc | 177 tree ptr_type = build_pointer_type (TREE_TYPE (*in)); 179 fold_build1 (CONVERT_EXPR, ptr_type, 174 tree ptr_type = build_pointer_type (TREE_TYPE (*in)); local
|
| /src/external/gpl3/gcc.old/dist/libcc1/ |
| libcc1plugin.cc | 177 tree ptr_type = build_pointer_type (TREE_TYPE (*in)); 179 fold_build1 (CONVERT_EXPR, ptr_type, 174 tree ptr_type = build_pointer_type (TREE_TYPE (*in)); local
|
| /src/external/gpl3/gcc/dist/gcc/analyzer/ |
| region-model-manager.cc | 399 /* Return the svalue * for a pointer to POINTEE of type PTR_TYPE, 403 region_model_manager::get_ptr_svalue (tree ptr_type, const region *pointee) 408 if (ptr_type == sym_reg->get_pointer ()->get_type ()) 411 region_svalue::key_t key (ptr_type, pointee); 415 = new region_svalue (alloc_symbol_id (), ptr_type, pointee); 1624 tree ptr_type = region_type ? build_pointer_type (region_type) : NULL_TREE; local 1625 const svalue *unknown_ptr = get_or_create_unknown_svalue (ptr_type);
|
| /src/external/gpl3/gcc.old/dist/gcc/analyzer/ |
| region-model-manager.cc | 355 /* Return the svalue * for a pointer to POINTEE of type PTR_TYPE, 359 region_model_manager::get_ptr_svalue (tree ptr_type, const region *pointee) 364 if (ptr_type == sym_reg->get_pointer ()->get_type ()) 367 region_svalue::key_t key (ptr_type, pointee); 370 region_svalue *sval = new region_svalue (ptr_type, pointee); 1406 tree ptr_type = region_type ? build_pointer_type (region_type) : NULL_TREE; local 1407 const svalue *unknown_ptr = get_or_create_unknown_svalue (ptr_type);
|
| /src/external/gpl3/gdb/dist/gdb/dwarf2/ |
| expr.c | 991 struct type *ptr_type; local 1007 ptr_type = builtin_type (arch)->builtin_func_ptr; 1010 ptr_type = builtin_type (arch)->builtin_data_ptr; 1013 address = value_as_address (value_from_pointer (ptr_type, address));
|