Home
last modified time | relevance | path

Searched full:sect (Results 1 – 25 of 362) sorted by relevance

12345678910>>...15

/external/llvm-project/llvm/tools/llvm-c-test/
Dobject.c23 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/
Dobject.c23 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/
Dparse-aliases.yaml24 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
Dorder_file-basic.yaml32 sect: 2
37 sect: 2
42 sect: 2
47 sect: 1
52 sect: 1
57 sect: 1
62 sect: 1
Dparse-function.yaml26 sect: 1
32 sect: 1
37 sect: 1
43 sect: 1
48 sect: 1
54 sect: 1
60 sect: 1
Dparse-data.yaml47 sect: 3
51 sect: 1
57 sect: 1
62 sect: 1
67 sect: 1
72 sect: 1
78 sect: 2
Deh-frame-relocs-arm64.yaml152 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 …]
/external/llvm-project/lldb/test/API/functionalities/archives/
DREADME44 [ 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/
DMachONormalizedFileFromAtoms.cpp53 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 …]
DMachONormalizedFileBinaryReader.cpp295 const section_64 *sect = &sects[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(&sect->flags, isBig) & in readBinary()
301 section.attributes = read32(&sect->flags, isBig) & SECTION_ATTRIBUTES; in readBinary()
302 section.alignment = 1 << read32(&sect->align, isBig); in readBinary()
303 section.address = read64(&sect->addr, isBig); in readBinary()
305 (const uint8_t *)start + read32(&sect->offset, isBig); in readBinary()
306 size_t contentSize = read64(&sect->size, isBig); in readBinary()
311 read32(&sect->reloff, isBig), in readBinary()
[all …]
DMachONormalizedFileToAtoms.cpp51 #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 &sect : normalizedFile.sections) { in processSymboledSection() local
284 if (&sect == &section) 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 …]
DMachONormalizedFileBinaryWriter.cpp151 uint32_t indirectSymbolIndex(const Section &sect, uint32_t &index);
152 uint32_t indirectSymbolElementSize(const Section &sect);
288 for (const Section &sect : file.sections) { in MachOFileLayout() local
289 if (isZeroFillSection(sect.type)) in MachOFileLayout()
290 _sectInfo[&sect].fileOffset = 0; in MachOFileLayout()
292 offset = llvm::alignTo(offset, sect.alignment); in MachOFileLayout()
293 _sectInfo[&sect].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 &sect, in indirectSymbolIndex() argument
[all …]
/external/openssh/
Dkrl.c584 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/clang/test/CodeGen/
Dattributes.c7 // 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/
Duse-simple-dylib.yaml20 sect: 1
25 sect: 1
32 sect: 1
37 sect: 1
43 sect: 1
48 sect: 1
54 sect: 1
/external/llvm-project/lldb/source/Symbol/
DUnwindTable.cpp58 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/
Dattributes.c7 // 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/
Dmkmd.sh32 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/
Dtest_cfgparser.py277 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/
Dkmp_i18n.cpp152 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/
DMachONormalizedFileYAMLTests.cpp171 " 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/
DMachODumper.cpp308 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/llvm-project/llvm/tools/llvm-readobj/
DMachODumper.cpp329 MachO::section Sect = Obj->getSection(Sec); in getSection() local
330 Section.Address = Sect.addr; in getSection()
331 Section.Size = Sect.size; in getSection()
332 Section.Offset = Sect.offset; in getSection()
333 Section.Alignment = Sect.align; in getSection()
334 Section.RelocationTableOffset = Sect.reloff; in getSection()
335 Section.NumRelocationTableEntries = Sect.nreloc; in getSection()
336 Section.Flags = Sect.flags; in getSection()
337 Section.Reserved1 = Sect.reserved1; in getSection()
338 Section.Reserved2 = Sect.reserved2; in getSection()
[all …]
/external/wpa_supplicant_8/src/crypto/
Dms_funcs.c73 * challenge_hash - ChallengeHash() - RFC 2759, Sect. 8.2
103 * nt_password_hash - NtPasswordHash() - RFC 2759, Sect. 8.3
126 * hash_nt_password_hash - HashNtPasswordHash() - RFC 2759, Sect. 8.4
139 * challenge_response - ChallengeResponse() - RFC 2759, Sect. 8.5
161 * generate_nt_response - GenerateNTResponse() - RFC 2759, Sect. 8.1
189 * generate_nt_response_pwhash - GenerateNTResponse() - RFC 2759, Sect. 8.1
216 * generate_authenticator_response_pwhash - GenerateAuthenticatorResponse() - RFC 2759, Sect. 8.7
271 * generate_authenticator_response - GenerateAuthenticatorResponse() - RFC 2759, Sect. 8.7
299 * nt_challenge_response - NtChallengeResponse() - RFC 2433, Sect. A.5
319 * get_master_key - GetMasterKey() - RFC 3079, Sect. 3.4
[all …]
/external/wayland/doc/publican/sources/
DProtocol.xml8 <section id="sect-Protocol-Basic-Principles">
21 <xref linkend="sect-Protocol-Wire-Format"/> for a list of argument types).
76 <section id="sect-Protocol-Code-Generation">
91 <section id="sect-Protocol-Wire-Format">
199 <section id="sect-Protocol-Versioning">
260 <section id="sect-Protocol-Connect-Time">
268 <section id="sect-Protocol-Security-and-Authentication">
289 <section id="sect-Protocol-Creating-Objects">
304 <section id="sect-Protocol-Compositor">
314 <section id="sect-Protocol-Surface">
[all …]

12345678910>>...15