Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/API/
H A DSBModule.cpp475 Type *type_ptr = vendor->ResolveTypeUID(uid); in GetTypeByID() local
476 if (type_ptr) in GetTypeByID()
477 return SBType(type_ptr->shared_from_this()); in GetTypeByID()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFASTParserClang.cpp254 Type *type_ptr = dwarf->GetDIEToType().lookup(die.GetDIE()); in ParseTypeFromDWARF() local
256 if (type_ptr == NULL) { in ParseTypeFromDWARF()
1409 type_ptr = dwarf->GetDIEToType()[die.GetDIE()]; in ParseTypeFromDWARF()
1410 if (type_ptr && type_ptr != DIE_IS_BEING_PARSED) { in ParseTypeFromDWARF()
1411 type_sp = type_ptr->shared_from_this(); in ParseTypeFromDWARF()
1576 type_ptr = dwarf->GetDIEToType()[die.GetDIE()]; in ParseTypeFromDWARF()
1577 if (type_ptr && type_ptr != DIE_IS_BEING_PARSED) { in ParseTypeFromDWARF()
1578 type_sp = type_ptr->shared_from_this(); in ParseTypeFromDWARF()
1899 } else if (type_ptr != DIE_IS_BEING_PARSED) { in ParseTypeFromDWARF()
1900 type_sp = type_ptr->shared_from_this(); in ParseTypeFromDWARF()
H A DSymbolFileDWARF.cpp2648 Type *type_ptr = GetDIEToType().lookup(die.GetDIE()); in GetTypeForDIE() local
2649 if (type_ptr == NULL) { in GetTypeForDIE()
2665 } else if (type_ptr != DIE_IS_BEING_PARSED) { in GetTypeForDIE()
2667 type_sp = type_ptr->shared_from_this(); in GetTypeForDIE()
/freebsd-12.1/contrib/gcc/
H A Dipa-type-escape.c609 count_stars (tree* type_ptr) in count_stars() argument
611 tree type = *type_ptr; in count_stars()
620 *type_ptr = type; in count_stars()
H A Dmips-tfile.c978 AUXU *type_ptr; /* pointer to munge type info */ member
2141 forward_ref->type_ptr = aux_ptr; in add_aux_sym_tir()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/
H A DRenderScriptRuntime.cpp675 empirical_type<lldb::addr_t> type_ptr; member
688 valid_ptrs = valid_ptrs && type_ptr.isValid() && *type_ptr.get() != 0x0; in ShouldRefresh()
1952 addr_t type_ptr = static_cast<lldb::addr_t>(result); in JITTypePointer() local
1953 alloc->type_ptr = type_ptr; in JITTypePointer()
1965 if (!alloc->type_ptr.isValid() || !alloc->context.isValid()) { in JITTypePacked()
1987 *alloc->context.get(), bits, *alloc->type_ptr.get()); in JITTypePacked()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Disassembler/llvm/
H A DDisassemblerLLVMC.cpp1358 const char *DisassemblerLLVMC::SymbolLookup(uint64_t value, uint64_t *type_ptr, in SymbolLookup() argument
1360 if (*type_ptr) { in SymbolLookup()
1427 *type_ptr = LLVMDisassembler_ReferenceType_InOut_None; in SymbolLookup()
/freebsd-12.1/contrib/binutils/bfd/
H A Delf.c6333 elf_symbol_type *type_ptr; in swap_out_syms() local
6355 type_ptr = elf_symbol_from (abfd, syms[idx]); in swap_out_syms()
6364 if (type_ptr == NULL in swap_out_syms()
6365 || type_ptr->internal_elf_sym.st_value == 0) in swap_out_syms()
6387 sym.st_size = type_ptr ? type_ptr->internal_elf_sym.st_size : 0; in swap_out_syms()
6390 && type_ptr != NULL in swap_out_syms()
6391 && type_ptr->internal_elf_sym.st_shndx != 0) in swap_out_syms()
6396 shndx = type_ptr->internal_elf_sym.st_shndx; in swap_out_syms()
6470 if (type_ptr != NULL in swap_out_syms()
6473 (&type_ptr->internal_elf_sym, type)); in swap_out_syms()
[all …]
H A DChangeLog-00019011 * elf.c (swap_out_syms): Check for null type_ptr.