Searched defs:pAddr (Results 1 - 2 of 2) sorted by relevance

/frameworks/compile/mclinker/lib/LD/
H A DLDSection.cpp44 uint64_t pAddr)
51 m_Addr(pAddr),
71 uint64_t pAddr) {
73 new (result) LDSection(pName, pKind, pType, pFlag, pSize, pAddr);
39 LDSection(const std::string& pName, LDFileFormat::Kind pKind, uint32_t pType, uint32_t pFlag, uint64_t pSize, uint64_t pAddr) argument
66 Create(const std::string& pName, LDFileFormat::Kind pKind, uint32_t pType, uint32_t pFlag, uint64_t pSize, uint64_t pAddr) argument
/frameworks/compile/mclinker/include/mcld/ADT/
H A DSizeTraits.h83 /// @param pAddr - the address to be aligned
85 inline void alignAddress(uint64_t& pAddr, uint64_t pAlignConstraint) { argument
87 pAddr = (pAddr + pAlignConstraint - 1) & ~(pAlignConstraint - 1);

Completed in 917 milliseconds