HomeSort by: relevance | last modified time | path
    Searched refs:Sec32 (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/JITLink/
MachOLinkGraphBuilder.cpp 134 const MachO::section &Sec32 = Obj.getSection(SecRef.getRawDataRefImpl());
136 memcpy(&NSec.SectName, &Sec32.sectname, 16);
138 memcpy(&NSec.SegName, Sec32.segname, 16);
141 NSec.Address = Sec32.addr;
142 NSec.Size = Sec32.size;
143 NSec.Alignment = 1ULL << Sec32.align;
144 NSec.Flags = Sec32.flags;
145 DataOffset = Sec32.offset;
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
RuntimeDyldMachOI386.h 216 MachO::section Sec32 = Obj.getSection(JTSection.getRawDataRefImpl());
217 uint32_t JTSectionSize = Sec32.size;
218 unsigned FirstIndirectSymbol = Sec32.reserved1;
219 unsigned JTEntrySize = Sec32.reserved2;
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldMachO.cpp 188 MachO::section Sec32 = Obj.getSection(PTSection.getRawDataRefImpl());
189 uint32_t PTSectionSize = Sec32.size;
190 unsigned FirstIndirectSymbol = Sec32.reserved1;
  /src/external/apache2/llvm/dist/llvm/lib/Object/
XCOFFObjectFile.cpp 354 const XCOFFSectionHeader32 *Sec32 = sectionHeaderTable32();
360 if (Sec32->VirtualAddress <= RelocAddress &&
361 RelocAddress < Sec32->VirtualAddress + Sec32->SectionSize) {
362 return RelocAddress - Sec32->VirtualAddress;
364 ++Sec32;

Completed in 36 milliseconds