/external/llvm-project/llvm/tools/llvm-c-test/ |
D | object.c | 23 LLVMSectionIteratorRef sect; in llvm_object_list_sections() local 40 sect = LLVMObjectFileCopySectionIterator(O); in llvm_object_list_sections() 41 while (sect && !LLVMObjectFileIsSectionIteratorAtEnd(O, sect)) { in llvm_object_list_sections() 42 printf("'%s': @0x%08" PRIx64 " +%" PRIu64 "\n", LLVMGetSectionName(sect), in llvm_object_list_sections() 43 LLVMGetSectionAddress(sect), LLVMGetSectionSize(sect)); in llvm_object_list_sections() 45 LLVMMoveToNextSection(sect); in llvm_object_list_sections() 48 LLVMDisposeSectionIterator(sect); in llvm_object_list_sections() 60 LLVMSectionIteratorRef sect; in llvm_object_list_symbols() local 78 sect = LLVMObjectFileCopySectionIterator(O); in llvm_object_list_symbols() 80 while (sect && sym && !LLVMObjectFileIsSymbolIteratorAtEnd(O, sym)) { in llvm_object_list_symbols() [all …]
|
/external/llvm/tools/llvm-c-test/ |
D | object.c | 23 LLVMSectionIteratorRef sect; in llvm_object_list_sections() local 37 sect = LLVMGetSections(O); in llvm_object_list_sections() 38 while (!LLVMIsSectionIteratorAtEnd(O, sect)) { in llvm_object_list_sections() 39 printf("'%s': @0x%08" PRIx64 " +%" PRIu64 "\n", LLVMGetSectionName(sect), in llvm_object_list_sections() 40 LLVMGetSectionAddress(sect), LLVMGetSectionSize(sect)); in llvm_object_list_sections() 42 LLVMMoveToNextSection(sect); in llvm_object_list_sections() 45 LLVMDisposeSectionIterator(sect); in llvm_object_list_sections() 55 LLVMSectionIteratorRef sect; in llvm_object_list_symbols() local 70 sect = LLVMGetSections(O); in llvm_object_list_symbols() 74 LLVMMoveToContainingSection(sect, sym); in llvm_object_list_symbols() [all …]
|
/external/llvm-project/lld/test/mach-o/ |
D | parse-aliases.yaml | 24 sect: 1 28 sect: 1 32 sect: 1 36 sect: 1 42 sect: 1 47 sect: 1 52 sect: 1 57 sect: 1 62 sect: 1 67 sect: 1
|
D | order_file-basic.yaml | 32 sect: 2 37 sect: 2 42 sect: 2 47 sect: 1 52 sect: 1 57 sect: 1 62 sect: 1
|
D | parse-function.yaml | 26 sect: 1 32 sect: 1 37 sect: 1 43 sect: 1 48 sect: 1 54 sect: 1 60 sect: 1
|
D | parse-data.yaml | 47 sect: 3 51 sect: 1 57 sect: 1 62 sect: 1 67 sect: 1 72 sect: 1 78 sect: 2
|
D | eh-frame-relocs-arm64.yaml | 152 sect: 1 156 sect: 2 160 sect: 2 164 sect: 2 168 sect: 3 172 sect: 4 176 sect: 5 182 sect: 1 187 sect: 1 192 sect: 1 [all …]
|
D | executable-exports.yaml | 24 sect: 1 29 sect: 1 34 sect: 1 40 sect: 1
|
D | arm64-reloc-negDelta32-fixup.yaml | 94 sect: 1 98 sect: 2 102 sect: 2 106 sect: 3 110 sect: 4 116 sect: 1
|
/external/llvm-project/lldb/test/API/functionalities/archives/ |
D | README | 44 [ 34] 00000151 0e ( SECT ) 07 0000 0000000100001000 '_pvars' 45 [ 35] 00000158 0e ( SECT ) 0a 0000 000000010000104c '___b_global' 46 [ 36] 00000164 0f ( SECT EXT) 0b 0000 0000000100001050 '_NXArgc' 47 [ 37] 0000016c 0f ( SECT EXT) 0b 0000 0000000100001058 '_NXArgv' 48 [ 38] 00000174 0f ( SECT EXT) 0a 0000 0000000100001048 '___a_global' 49 [ 39] 00000180 0f ( SECT EXT) 0b 0000 0000000100001068 '___progname' 51 [ 41] 000001a0 0f ( SECT EXT) 01 0000 0000000100000dd0 '_a' 52 [ 42] 000001a3 0f ( SECT EXT) 01 0000 0000000100000df0 '_aa' 53 [ 43] 000001a7 0f ( SECT EXT) 01 0000 0000000100000e10 '_b' 54 [ 44] 000001aa 0f ( SECT EXT) 01 0000 0000000100000e30 '_bb' [all …]
|
/external/llvm-project/lld/lib/ReaderWriter/MachO/ |
D | MachONormalizedFileFromAtoms.cpp | 53 SectionInfo(StringRef seg, StringRef sect, SectionType type, 158 void appendAtom(SectionInfo *sect, const DefinedAtom *atom); 165 void segIndexForSection(const SectionInfo *sect, 241 for (auto sect : _sectionMap) { in getRelocatableSection() local 242 if (sect.second->sectionName.equals(sectionName) && in getRelocatableSection() 243 sect.second->segmentName.equals(segmentName)) { in getRelocatableSection() 244 return sect.second; in getRelocatableSection() 248 auto *sect = new (_allocator) in getRelocatableSection() local 251 _sectionInfos.push_back(sect); in getRelocatableSection() 252 _sectionMap[type] = sect; in getRelocatableSection() [all …]
|
D | MachONormalizedFileBinaryReader.cpp | 295 const section_64 *sect = §s[i]; in readBinary() local 297 section.segmentName = getString16(sect->segname); in readBinary() 298 section.sectionName = getString16(sect->sectname); in readBinary() 299 section.type = (SectionType)(read32(§->flags, isBig) & in readBinary() 301 section.attributes = read32(§->flags, isBig) & SECTION_ATTRIBUTES; in readBinary() 302 section.alignment = 1 << read32(§->align, isBig); in readBinary() 303 section.address = read64(§->addr, isBig); in readBinary() 305 (const uint8_t *)start + read32(§->offset, isBig); in readBinary() 306 size_t contentSize = read64(§->size, isBig); in readBinary() 311 read32(§->reloff, isBig), in readBinary() [all …]
|
D | MachONormalizedFileToAtoms.cpp | 51 #define ENTRY(seg, sect, type, atomType) \ argument 52 {seg, sect, type, DefinedAtom::atomType } 234 if (sym.sect != sectionIndex) in appendSymbolsInSection() 258 // with a / separator (e.g. "seg/sect") to fit into the lld model in atomFromSymbol() 283 for (auto § : normalizedFile.sections) { in processSymboledSection() local 284 if (§ == §ion) in processSymboledSection() 477 // with a / separator (e.g. "seg/sect") to fit into the lld model in processSection() 508 const Section *sect = nullptr; in findAtomCoveringAddress() local 509 sect = findSectionCoveringAddress(normalizedFile, addr); in findAtomCoveringAddress() 510 if (!sect) in findAtomCoveringAddress() [all …]
|
D | MachONormalizedFileBinaryWriter.cpp | 151 uint32_t indirectSymbolIndex(const Section §, uint32_t &index); 152 uint32_t indirectSymbolElementSize(const Section §); 288 for (const Section § : file.sections) { in MachOFileLayout() local 289 if (isZeroFillSection(sect.type)) in MachOFileLayout() 290 _sectInfo[§].fileOffset = 0; in MachOFileLayout() 292 offset = llvm::alignTo(offset, sect.alignment); in MachOFileLayout() 293 _sectInfo[§].fileOffset = offset; in MachOFileLayout() 294 offset += sect.content.size(); in MachOFileLayout() 296 relocCount += sect.relocations.size(); in MachOFileLayout() 604 uint32_t MachOFileLayout::indirectSymbolIndex(const Section §, in indirectSymbolIndex() argument [all …]
|
/external/clang/test/CodeGen/ |
D | attributes.c | 7 // CHECK: @t13 = global %struct.s0 zeroinitializer, section "SECT" 9 struct s0 t13 __attribute__((section("SECT"))) = { 0 }; 11 // CHECK: @t14.x = internal global i32 0, section "SECT" 13 static int x __attribute__((section("SECT"))) = 0; in t14() 26 // CHECK: @t12 = global i32 0, section "SECT" 27 int t12 __attribute__((section("SECT"))); 59 // CHECK: define void @t10() [[NUW]] section "SECT" { 60 void t10(void) __attribute__((section("SECT"))); 62 // CHECK: define void @t11() [[NUW]] section "SECT" { 63 void __attribute__((section("SECT"))) t11(void) {} in t11()
|
/external/llvm-project/lld/test/mach-o/Inputs/ |
D | use-simple-dylib.yaml | 20 sect: 1 25 sect: 1 32 sect: 1 37 sect: 1 43 sect: 1 48 sect: 1 54 sect: 1
|
/external/openssh/ |
D | krl.c | 584 struct sshbuf *sect; in revoked_certs_generate() local 587 if ((sect = sshbuf_new()) == NULL) in revoked_certs_generate() 631 if ((r = put_bitmap(sect, bitmap)) != 0) in revoked_certs_generate() 638 (r = sshbuf_put_stringb(buf, sect)) != 0) in revoked_certs_generate() 640 sshbuf_reset(sect); in revoked_certs_generate() 648 sshbuf_reset(sect); in revoked_certs_generate() 659 if ((r = sshbuf_put_u64(sect, in revoked_certs_generate() 670 if ((r = sshbuf_put_u64(sect, rs->lo + i)) != 0) in revoked_certs_generate() 675 if ((r = sshbuf_put_u64(sect, rs->lo)) != 0 || in revoked_certs_generate() 676 (r = sshbuf_put_u64(sect, rs->hi)) != 0) in revoked_certs_generate() [all …]
|
/external/llvm-project/lldb/source/Symbol/ |
D | UnwindTable.cpp | 58 SectionSP sect = sl->FindSectionByType(eSectionTypeEHFrame, true); in Initialize() local 59 if (sect.get()) { in Initialize() 61 *object_file, sect, DWARFCallFrameInfo::EH); in Initialize() 64 sect = sl->FindSectionByType(eSectionTypeDWARFDebugFrame, true); in Initialize() 65 if (sect) { in Initialize() 67 *object_file, sect, DWARFCallFrameInfo::DWARF); in Initialize() 70 sect = sl->FindSectionByType(eSectionTypeCompactUnwind, true); in Initialize() 71 if (sect) { in Initialize() 73 std::make_unique<CompactUnwindInfo>(*object_file, sect); in Initialize() 76 sect = sl->FindSectionByType(eSectionTypeARMexidx, true); in Initialize() [all …]
|
/external/llvm-project/clang/test/CodeGen/ |
D | attributes.c | 7 // CHECK: @t13 = global %struct.s0 zeroinitializer, section "SECT" 9 struct s0 t13 __attribute__((section("SECT"))) = { 0 }; 11 // CHECK: @t14.x = internal global i32 0, section "SECT" 13 static int x __attribute__((section("SECT"))) = 0; in t14() 26 // CHECK: @t12 = global i32 0, section "SECT" 27 int t12 __attribute__((section("SECT"))); 66 // CHECK: define void @t10() [[NUW]] section "SECT" { 67 void t10(void) __attribute__((section("SECT"))); 69 // CHECK: define void @t11() [[NUW]] section "SECT" { 70 void __attribute__((section("SECT"))) t11(void) {} in t11()
|
/external/libcap/doc/ |
D | mkmd.sh | 32 sect="${m#*.}" 33 output="${base}-${sect}.md" 40 echo "* [${base}(${sect})](${rbase}-${rsect}.md)" >> "${index}" 44 …m}" | sed 's/\*\*\([^*]\+\)\*\*(\([138]\+\))/[\1(\2)](\1-\2.md)/g' > "${outdir}/${base}-${sect}.md" 45 echo "* [${base}(${sect})](${base}-${sect}.md)" >> "${index}"
|
/external/python/cpython2/Lib/test/ |
D | test_cfgparser.py | 277 cf = self.fromstring("[sect]\n" 283 cf.set("sect", "option1", "splat") 284 cf.set("sect", "option1", mystr("splat")) 285 cf.set("sect", "option2", "splat") 286 cf.set("sect", "option2", mystr("splat")) 294 cf = self.fromstring("[sect]\n" 296 cf.set("sect", "option1", unicode("splat")) 297 cf.set("sect", "option2", unicode("splat")) 497 cf = self.fromstring("[sect]\n" 500 self.assertEqual(cf.get('sect', "option1"), "foo") [all …]
|
/external/llvm-project/openmp/runtime/src/ |
D | kmp_i18n.cpp | 152 char const *expected = __kmp_i18n_default_table.sect[section].str[number]; in __kmp_i18n_do_catopen() 194 if (1 <= number && number <= __kmp_i18n_default_table.sect[section].size) { in __kmp_i18n_catgets() 200 __kmp_i18n_default_table.sect[section].str[number]); in __kmp_i18n_catgets() 203 message = __kmp_i18n_default_table.sect[section].str[number]; in __kmp_i18n_catgets() 266 for (m = 0; m < table->sect[s].size; ++m) { in kmp_i18n_table_free() 268 KMP_INTERNAL_FREE((void *)table->sect[s].str[m]); in kmp_i18n_table_free() 269 table->sect[s].str[m] = NULL; in kmp_i18n_table_free() 271 table->sect[s].size = 0; in kmp_i18n_table_free() 273 KMP_INTERNAL_FREE((void *)table->sect[s].str); in kmp_i18n_table_free() 274 table->sect[s].str = NULL; in kmp_i18n_table_free() [all …]
|
/external/llvm-project/lld/unittests/MachOTests/ |
D | MachONormalizedFileYAMLTests.cpp | 171 " sect: 1\n" in TEST() 185 EXPECT_EQ(sym.sect, 1); in TEST() 210 const Section& sect = f->sections[0]; in TEST() local 211 EXPECT_TRUE(sect.segmentName.equals("__TEXT")); in TEST() 212 EXPECT_TRUE(sect.sectionName.equals("__text")); in TEST() 213 EXPECT_EQ((uint32_t)(sect.type), (uint32_t)(llvm::MachO::S_REGULAR)); in TEST() 214 EXPECT_EQ((uint32_t)(sect.attributes), in TEST() 216 EXPECT_EQ((uint16_t)sect.alignment, 2U); in TEST() 217 EXPECT_EQ((uint64_t)sect.address, 0x12345678ULL); in TEST() 218 EXPECT_EQ(sect.content.size(), 2UL); in TEST() [all …]
|
/external/llvm/tools/llvm-readobj/ |
D | MachODumper.cpp | 308 MachO::section Sect = Obj->getSection(Sec); in getSection() local 309 Section.Address = Sect.addr; in getSection() 310 Section.Size = Sect.size; in getSection() 311 Section.Offset = Sect.offset; in getSection() 312 Section.Alignment = Sect.align; in getSection() 313 Section.RelocationTableOffset = Sect.reloff; in getSection() 314 Section.NumRelocationTableEntries = Sect.nreloc; in getSection() 315 Section.Flags = Sect.flags; in getSection() 316 Section.Reserved1 = Sect.reserved1; in getSection() 317 Section.Reserved2 = Sect.reserved2; in getSection() [all …]
|
/external/wayland/doc/publican/sources/ |
D | Compositors.xml | 13 <link linkend="sect-Compositors-System-Compositor">system compositor</link> 16 <link linkend="sect-Compositors-Session-Compositor">session compositor</link> 22 on <link linkend="sect-Library-Server">libwayland-server</link>. 25 <section id="sect-Compositors-System-Compositor"> 47 <section id="sect-Compositors-Session-Compositor"> 103 <section id="sect-Compositors-Embedding-Compositor">
|