HomeSort by relevance Sort by last modified time
    Searched refs:pSD (Results 1 - 25 of 36) sorted by null

1 2

  /frameworks/compile/mclinker/lib/Fragment/
NullFragment.cpp 16 NullFragment::NullFragment(SectionData* pSD) : Fragment(Fragment::Null, pSD) {
FillFragment.cpp 21 SectionData* pSD)
22 : Fragment(Fragment::Fillment, pSD),
RegionFragment.cpp 16 RegionFragment::RegionFragment(llvm::StringRef pRegion, SectionData* pSD)
17 : Fragment(Fragment::Region, pSD), m_Region(pRegion) {
AlignFragment.cpp 23 SectionData* pSD)
24 : Fragment(Fragment::Alignment, pSD),
  /frameworks/compile/mclinker/include/mcld/Fragment/
TargetFragment.h 24 explicit TargetFragment(Fragment::Type pKind, SectionData* pSD = NULL)
25 : Fragment(pKind, pSD) {}
NullFragment.h 24 explicit NullFragment(SectionData* pSD = NULL);
FillFragment.h 25 SectionData* pSD = NULL);
RegionFragment.h 23 explicit RegionFragment(llvm::StringRef pRegion, SectionData* pSD = NULL);
AlignFragment.h 24 SectionData* pSD = NULL);
  /frameworks/compile/mclinker/lib/Object/
ObjectBuilder.cpp 178 /// AppendFragment - To append pFrag to the given SectionData pSD.
180 SectionData& pSD,
184 if (!pSD.empty())
185 offset = pSD.back().getOffset() + pSD.back().size();
195 align->setParent(&pSD);
196 pSD.getFragmentList().push_back(align);
201 pFrag.setParent(&pSD);
203 pSD.getFragmentList().push_back(&pFrag);
207 NullFragment* null = new NullFragment(&pSD);
    [all...]
  /frameworks/compile/mclinker/include/mcld/Object/
ObjectBuilder.h 80 /// AppendFragment - To append pFrag to the given SectionData pSD.
87 /// pFrag is set to the offset in pSD.
88 /// @param [in, out] pSD The section data being appended.
92 SectionData& pSD,
  /frameworks/compile/mclinker/include/mcld/LD/
ELFReader.h 69 bool readRegularSection(Input& pInput, SectionData& pSD) const;
154 bool readRegularSection(Input& pInput, SectionData& pSD) const;
LDSection.h 136 void setSectionData(SectionData* pSD) { m_Data.sect_data = pSD; }
ELFObjectWriter.h 112 void emitSectionData(const SectionData& pSD, MemoryRegion& pRegion) const;
ELFReaderIf.h 60 virtual bool readRegularSection(Input& pInput, SectionData& pSD) const = 0;
  /frameworks/compile/mclinker/lib/Target/AArch64/
AArch64LDBackend.h 114 bool readSection(Input& pInput, SectionData& pSD);
  /frameworks/compile/mclinker/include/mcld/Target/
TargetLDBackend.h 147 virtual bool readSection(Input& pInput, SectionData& pSD) { return true; }
  /frameworks/compile/mclinker/lib/Target/ARM/
ARMLDBackend.h 134 bool readSection(Input& pInput, SectionData& pSD);
  /frameworks/compile/mclinker/lib/Target/Hexagon/
HexagonLDBackend.h 131 bool readSection(Input& pInput, SectionData& pSD);
HexagonLDBackend.cpp 946 bool HexagonLDBackend::readSection(Input& pInput, SectionData& pSD) {
948 uint32_t offset = pInput.fileOffset() + pSD.getSection().offset();
949 uint32_t size = pSD.getSection().size();
951 if (pSD.getSection().type() == llvm::ELF::SHT_NOBITS) {
964 ObjectBuilder::AppendFragment(*frag, pSD);
    [all...]
  /frameworks/compile/mclinker/lib/Target/Mips/
MipsLDBackend.cpp 448 bool MipsGNULDBackend::readSection(Input& pInput, SectionData& pSD) {
449 if ((pSD.getSection().flag() & llvm::ELF::SHF_MIPS_GPREL) ||
450 (pSD.getSection().type() == llvm::ELF::SHT_MIPS_ABIFLAGS)) {
451 uint64_t offset = pInput.fileOffset() + pSD.getSection().offset();
452 uint64_t size = pSD.getSection().size();
455 ObjectBuilder::AppendFragment(*frag, pSD);
459 if (pSD.getSection().type() == llvm::ELF::SHT_MIPS_OPTIONS) {
460 uint32_t offset = pInput.fileOffset() + pSD.getSection().offset();
461 uint32_t size = pSD.getSection().size();
495 return GNULDBackend::readSection(pInput, pSD);
    [all...]
  /frameworks/compile/mclinker/lib/LD/
ELFReader.cpp 55 SectionData& pSD) const {
56 uint32_t offset = pInput.fileOffset() + pSD.getSection().offset();
57 uint32_t size = pSD.getSection().size();
60 ObjectBuilder::AppendFragment(*frag, pSD);
555 SectionData& pSD) const {
556 uint64_t offset = pInput.fileOffset() + pSD.getSection().offset();
557 uint64_t size = pSD.getSection().size();
560 ObjectBuilder::AppendFragment(*frag, pSD);
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/synchronization/
vktSynchronizationWin32KeyedMutexTests.cpp 1088 PSECURITY_DESCRIPTOR pSD = (PSECURITY_DESCRIPTOR)deCalloc(SECURITY_DESCRIPTOR_MIN_LENGTH + 2 * sizeof (void**));
1090 if (pSD)
1092 PSID* ppEveryoneSID = (PSID*)((PBYTE)pSD + SECURITY_DESCRIPTOR_MIN_LENGTH);
    [all...]
  /frameworks/compile/mclinker/lib/Core/
IRBuilder.cpp 360 /// AppendFragment - To append pFrag to the given SectionData pSD
361 uint64_t IRBuilder::AppendFragment(Fragment& pFrag, SectionData& pSD) {
363 ObjectBuilder::AppendFragment(pFrag, pSD, pSD.getSection().align());
364 pSD.getSection().setSize(pSD.getSection().size() + size);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
aclapi.h 71 WINADVAPI DWORD WINAPI LookupSecurityDescriptorPartsA (PTRUSTEE_A *ppOwner, PTRUSTEE_A *ppGroup, PULONG pcCountOfAccessEntries, PEXPLICIT_ACCESS_A *ppListOfAccessEntries, PULONG pcCountOfAuditEntries, PEXPLICIT_ACCESS_A *ppListOfAuditEntries, PSECURITY_DESCRIPTOR pSD);
72 WINADVAPI DWORD WINAPI LookupSecurityDescriptorPartsW (PTRUSTEE_W *ppOwner, PTRUSTEE_W *ppGroup, PULONG pcCountOfAccessEntries, PEXPLICIT_ACCESS_W *ppListOfAccessEntries, PULONG pcCountOfAuditEntries, PEXPLICIT_ACCESS_W *ppListOfAuditEntries, PSECURITY_DESCRIPTOR pSD);

Completed in 354 milliseconds

1 2