/external/llvm-project/llvm/test/tools/llvm-readobj/ELF/ |
D | gnuhash.test | 32 SymNdx: 0x1 91 SymNdx: 0x0 115 # RUN: | FileCheck %s -DFILE=%t.brokensymndx --check-prefix=SYMNDX 117 # RUN: | FileCheck %s -DFILE=%t.brokensymndx --check-prefix=SYMNDX 119 # SYMNDX: GnuHashTable { 120 # SYMNDX-NEXT: Num Buckets: 1 121 # SYMNDX-NEXT: First Hashed Symbol Index: 2 122 # SYMNDX-NEXT: Num Mask Words: 1 123 # SYMNDX-NEXT: Shift Count: 0 124 # SYMNDX-NEXT: Bloom Filter: [0x1] [all …]
|
D | hash-histogram.test | 44 SymNdx: 0x1 238 SymNdx: 0x1 285 SymNdx: 0x0 319 ## Check the case when a 'symndx' index of the first symbol in the dynamic symbol 349 SymNdx: 0x10 394 SymNdx: 0x0
|
D | hash-symbols.test | 61 SymNdx: 0x2 219 SymNdx: 0x2 491 SymNdx: 0x1 615 SymNdx: 0x0 671 SymNdx: [[SYMNDX=0x0]]
|
/external/llvm-project/llvm/test/tools/obj2yaml/ELF/ |
D | gnu-hash-section.yaml | 13 # FIELDS-NEXT: SymNdx: 0x1 29 SymNdx: 0x1 49 # INVALID-NEXT: SymNdx: 0x0 63 # INVALID-NEXT: SymNdx: 0x0 86 ## Also, the dynamic symbol table has a null entry and having SymNdx = 0 92 SymNdx: 0x0 104 SymNdx: 0x0 116 SymNdx: 0x0
|
/external/llvm-project/llvm/test/tools/yaml2obj/ELF/ |
D | gnu-hash-section.yaml | 94 SymNdx: 0x1 111 SymNdx: 0x1 148 SymNdx: 0x0 162 SymNdx: 0x0 176 SymNdx: 0x0 181 ## Check that "SymNdx" and "Shift2" fields are mandatory when we specify the "Header". 184 # ERR2: error: missing required key 'SymNdx' 209 SymNdx: 0x0 247 SymNdx: 0x0 274 SymNdx: 0x2
|
/external/elfutils/libdwfl/ |
D | relocate.c | 115 int symndx, GElf_Sym *sym, GElf_Word *shndx) in relocate_getsym() argument 181 symndx, sym, shndx) == NULL)) in relocate_getsym() 329 int symndx) in relocate() argument 350 if (symndx == STN_UNDEF) in relocate() 363 symndx, &sym, &shndx); in relocate()
|
D | dwfl_module_getdwarf.c | 733 Elf32_Word symndx; in translate_offs() member 744 Elf32_Word symndx = header->symndx; in translate_offs() local 760 if (data != NULL && symndx < nbuckets) in translate_offs() 763 Elf32_Word maxndx = symndx; in translate_offs() 770 hasharr_at += (maxndx - symndx) * sizeof (Elf32_Word); in translate_offs()
|
/external/elfutils/src/ |
D | elfcmp.c | 42 static bool search_for_copy_reloc (Ebl *ebl, size_t scnndx, int symndx); 752 search_for_copy_reloc (Ebl *ebl, size_t scnndx, int symndx) in search_for_copy_reloc() argument 784 if ((int) GELF_R_SYM (rel->r_info) == symndx in search_for_copy_reloc() 798 if ((int) GELF_R_SYM (rela->r_info) == symndx in search_for_copy_reloc()
|
D | strip.c | 651 int rtype, symndx, offset, addend; in remove_debug_relocations() local 661 symndx = GELF_R_SYM (r->r_info); in remove_debug_relocations() 670 symndx = GELF_R_SYM (r->r_info); in remove_debug_relocations() 688 symndx, &sym_mem, in remove_debug_relocations()
|
D | elflint.c | 2832 has_copy_reloc (Ebl *ebl, unsigned int symscnndx, unsigned int symndx) in has_copy_reloc() argument 2863 if (GELF_R_SYM (rel->r_info) == symndx in has_copy_reloc() 2875 if (GELF_R_SYM (rela->r_info) == symndx in has_copy_reloc()
|
/external/llvm-project/llvm/include/llvm/Object/ |
D | ELFTypes.h | 527 Elf_Word symndx; 542 assert(DynamicSymCount >= symndx); 543 return ArrayRef<Elf_Word>(buckets().end(), DynamicSymCount - symndx);
|
/external/llvm/include/llvm/Object/ |
D | ELFTypes.h | 544 Elf_Word symndx; 559 return ArrayRef<Elf_Word>(buckets().end(), DynamicSymCount - symndx);
|
/external/llvm-project/llvm/tools/obj2yaml/ |
D | elf2yaml.cpp | 905 uint64_t SymNdx = Data.getULEB128(Cur); in dumpAddrsigSection() local 909 Expected<StringRef> SymbolName = getSymbolName(Shdr->sh_link, SymNdx); in dumpAddrsigSection() 913 StringRef(std::to_string(SymNdx)).copy(StringAllocator)); in dumpAddrsigSection() 1273 Header.SymNdx = Data.getU32(Cur); in dumpGnuHashSection()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/ |
D | ELFTypes.h | 529 Elf_Word symndx; 544 return ArrayRef<Elf_Word>(buckets().end(), DynamicSymCount - symndx);
|
/external/llvm-project/llvm/tools/llvm-readobj/ |
D | ELFDumper.cpp | 2790 if (GnuHashTable->symndx < NumSyms) in getGnuHashTableChains() 2794 // symndx set to the number of dynamic symbols + 1 (for the zero symbol) in getGnuHashTableChains() 2796 // vector (or no values at all). It happens because the value of symndx is not in getGnuHashTableChains() 2798 // skip the whole object during symbol lookup. In such cases, the symndx value in getGnuHashTableChains() 2803 "the first hashed symbol index (" + Twine(GnuHashTable->symndx) + in getGnuHashTableChains() 2806 // There is no way to represent an array of (dynamic symbols count - symndx) in getGnuHashTableChains() 2821 W.printNumber("First Hashed Symbol Index", GnuHashTable->symndx); in printGnuHashTable() 3568 auto GetSignature = [&](const Elf_Sym &Sym, unsigned SymNdx, in getGroups() 3581 Twine(SymNdx) + ": st_name (0x" + in getGroups() 4192 if (SymIndex < GnuHash.symndx) { in printGnuHashTableSymbols() [all …]
|
/external/llvm-project/llvm/test/tools/llvm-gsymutil/X86/ |
D | elf-dwarf.yaml | 147 SymNdx: 0x00000001
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ObjectYAML/ |
D | ELFYAML.h | 292 llvm::yaml::Hex32 SymNdx; member
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/ |
D | ELFYAML.cpp | 1500 IO.mapRequired("SymNdx", E.SymNdx); in mapping()
|
D | ELFEmitter.cpp | 1275 support::endian::write<uint32_t>(OS, Section.Header->SymNdx, in writeSectionContent()
|
/external/llvm-project/llvm/lib/ObjectYAML/ |
D | ELFYAML.cpp | 1559 IO.mapRequired("SymNdx", E.SymNdx); in mapping()
|
D | ELFEmitter.cpp | 1718 CBA.write<uint32_t>(Section.Header->SymNdx, ELFT::TargetEndianness); in writeSectionContent()
|
/external/llvm-project/llvm/lib/InterfaceStub/ |
D | ELFObjHandler.cpp | 449 return Table.symndx + 1; in getDynSymtabSize()
|
/external/llvm/tools/llvm-readobj/ |
D | ELFDumper.cpp | 1825 W.printNumber("First Hashed Symbol Index", GnuHashTable->symndx); in printGnuHashTable() 3120 size_t Symndx = GnuHashTable->symndx; in printHashHistogram() local 3134 for (size_t C = Buckets[B] - Symndx; in printHashHistogram()
|
/external/llvm-project/llvm/include/llvm/ObjectYAML/ |
D | ELFYAML.h | 351 llvm::yaml::Hex32 SymNdx; member
|
/external/skia/platform_tools/android/bin/linux/ |
D | perfhost | libpthread.so.0 _Jv_RegisterClasses sem_post pthread_attr_init sem_init pthread_mutex_unlock pthread_create raise pthread_attr_setstacksize __errno_location fork nanosleep waitpid pthread_mutex_lock lseek64 ... |