Searched refs:pAddr (Results 1 - 5 of 5) 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);
/frameworks/compile/mclinker/include/mcld/Support/
H A DFileSystem.h99 void* mmap(void* pAddr,
105 int munmap(void* pAddr, size_t pLen);
/frameworks/compile/mclinker/include/mcld/LD/
H A DLDSection.h42 uint64_t pAddr = 0);
52 uint64_t pAddr = 0);
/frameworks/compile/libbcc/lib/Support/
H A DDisassembler.cpp56 virtual int readByte(uint64_t pAddr, uint8_t *pByte) const { argument
57 if (pAddr > getExtent())
59 *pByte = mBytes[pAddr];

Completed in 92 milliseconds