/frameworks/compile/mclinker/lib/Fragment/ |
H A D | FillFragment.cpp | 20 uint64_t pSize, 25 m_Size(pSize) { 18 FillFragment(int64_t pValue, unsigned int pValueSize, uint64_t pSize, SectionData* pSD) argument
|
/frameworks/compile/mclinker/include/mcld/Support/ |
H A D | LEB128.h | 26 IntType decode(const ByteType* pBuf, size_t& pSize); 67 * Read an integer encoded in ULEB128 format from the given buffer. pSize will 72 uint64_t decode<uint64_t>(const ByteType* pBuf, size_t& pSize); 85 int64_t decode<int64_t>(const ByteType* pBuf, size_t& pSize); 101 IntType decode(const char* pBuf, size_t& pSize) { argument 102 return decode<IntType>(reinterpret_cast<const ByteType*>(pBuf), pSize);
|
H A D | MemoryArea.h | 32 explicit MemoryArea(const char* pMemBuffer, size_t pSize);
|
H A D | MemoryAreaFactory.h | 54 MemoryArea* produce(void* pMemBuffer, size_t pSize);
|
/frameworks/compile/mclinker/lib/Support/ |
H A D | LEB128.cpp | 96 uint64_t decode<uint64_t>(const ByteType* pBuf, size_t& pSize) { argument 100 pSize = 1; 103 pSize = 2; 106 pSize = 3; 110 pSize = 4; 126 pSize++; 184 int64_t decode<int64_t>(const ByteType* pBuf, size_t& pSize) { argument 189 pSize = 0; 193 pSize++;
|
H A D | MemoryArea.cpp | 33 MemoryArea::MemoryArea(const char* pMemBuffer, size_t pSize) { argument 34 llvm::StringRef mem(pMemBuffer, pSize);
|
H A D | FileOutputBuffer.cpp | 27 size_t pSize, 32 ec = llvm::sys::fs::resize_file(pFileHandle.handler(), pSize); 38 llvm::sys::fs::mapped_file_region::readwrite, pSize, 0, ec)); 26 create(FileHandle& pFileHandle, size_t pSize, std::unique_ptr<FileOutputBuffer>& pResult) argument
|
H A D | MemoryAreaFactory.cpp | 52 MemoryArea* MemoryAreaFactory::produce(void* pMemBuffer, size_t pSize) { argument 54 llvm::StringRef name(base, pSize); 57 new (result) MemoryArea(base, pSize);
|
H A D | FileHandle.cpp | 66 inline static bool get_size(int pHandler, unsigned int& pSize) { argument 69 pSize = 0; 72 pSize = file_stat.st_size; 144 bool FileHandle::truncate(size_t pSize) { argument 150 if (sys::fs::detail::ftruncate(m_Handler, pSize) == -1) { 155 m_Size = pSize;
|
/frameworks/compile/mclinker/lib/LD/ |
H A D | NamePool.cpp | 20 NamePool::NamePool(NamePool::size_type pSize) argument 21 : m_pResolver(new StaticResolver()), m_Table(pSize) { 39 ResolveInfo::SizeType pSize, 49 (*result)->setSize(pSize); 61 ResolveInfo::SizeType pSize, 86 new_symbol->setSize(pSize); 121 void NamePool::reserve(NamePool::size_type pSize) { argument 122 m_Table.rehash(pSize); 34 createSymbol(const llvm::StringRef& pName, bool pIsDyn, ResolveInfo::Type pType, ResolveInfo::Desc pDesc, ResolveInfo::Binding pBinding, ResolveInfo::SizeType pSize, ResolveInfo::Visibility pVisibility) argument 56 insertSymbol(const llvm::StringRef& pName, bool pIsDyn, ResolveInfo::Type pType, ResolveInfo::Desc pDesc, ResolveInfo::Binding pBinding, ResolveInfo::SizeType pSize, LDSymbol::ValueType pValue, ResolveInfo::Visibility pVisibility, ResolveInfo* pOldInfo, Resolver::Result& pResult) argument
|
H A D | LDSection.cpp | 43 uint64_t pSize, 49 m_Size(pSize), 70 uint64_t pSize, 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/lib/Target/AArch64/ |
H A D | AArch64CA53Erratum843419Stub2.cpp | 39 size_t pSize, 43 : AArch64CA53ErratumStub(pData, pSize, pName, pBegin, pEnd) { 37 AArch64CA53Erratum843419Stub2( const uint32_t* pData, size_t pSize, const char* pName, const_fixup_iterator pBegin, const_fixup_iterator pEnd) argument
|
H A D | AArch64CA53Erratum835769Stub.h | 49 size_t pSize,
|
H A D | AArch64CA53Erratum843419Stub.h | 54 size_t pSize,
|
H A D | AArch64CA53Erratum843419Stub2.h | 49 size_t pSize,
|
H A D | AArch64CA53Erratum835769Stub.cpp | 36 size_t pSize, 40 : AArch64CA53ErratumStub(pData, pSize, pName, pBegin, pEnd) { 34 AArch64CA53Erratum835769Stub( const uint32_t* pData, size_t pSize, const char* pName, const_fixup_iterator pBegin, const_fixup_iterator pEnd) argument
|
H A D | AArch64CA53Erratum843419Stub.cpp | 38 size_t pSize, 42 : AArch64CA53ErratumStub(pData, pSize, pName, pBegin, pEnd) { 36 AArch64CA53Erratum843419Stub( const uint32_t* pData, size_t pSize, const char* pName, const_fixup_iterator pBegin, const_fixup_iterator pEnd) argument
|
H A D | AArch64CA53ErratumStub.h | 29 size_t pSize,
|
/frameworks/wilhelm/src/itf/ |
H A D | IMetadataTraversal.cpp | 66 SLMetadataTraversalItf self, SLuint32 index, SLuint32 *pSize) 70 if (NULL == pSize) { 77 *pSize = size; 65 IMetadataTraversal_GetChildMIMETypeSize( SLMetadataTraversalItf self, SLuint32 index, SLuint32 *pSize) argument
|
/frameworks/compile/mclinker/include/mcld/Fragment/ |
H A D | FillFragment.h | 24 uint64_t pSize,
|
/frameworks/compile/mclinker/include/mcld/ |
H A D | IRBuilder.h | 130 /// @param [in] pSize The size of the memory 132 Input* ReadInput(const std::string& pName, void* pRawMemory, size_t pSize); 374 /// @param [in] pSize The size of the symbol. Bigger common symbols 391 ResolveInfo::SizeType pSize, 437 ResolveInfo::SizeType pSize = 0, 466 ResolveInfo::SizeType pSize, 476 ResolveInfo::SizeType pSize, 493 ResolveInfo::SizeType pSize, 504 ResolveInfo::SizeType pSize, 515 ResolveInfo::SizeType pSize, [all...] |
H A D | TargetOptions.h | 66 void setStubGroupSize(unsigned pSize) { m_StubGroupSize = pSize; } argument
|
/frameworks/compile/mclinker/include/mcld/Target/ |
H A D | ELFAttributeValue.h | 59 void setStringValue(const char* pStringValue, size_t pSize) { argument 60 m_StringValue.assign(pStringValue, pSize);
|
/frameworks/compile/mclinker/lib/Target/Mips/ |
H A D | MipsLA25Stub.cpp | 42 size_t pSize, 45 : m_Target(pTarget), m_Name("pic"), m_pData(pData), m_Size(pSize) { 40 MipsLA25Stub(const MipsGNULDBackend& pTarget, const uint32_t* pData, size_t pSize, const_fixup_iterator pBegin, const_fixup_iterator pEnd) argument
|
/frameworks/compile/mclinker/include/mcld/LD/ |
H A D | NamePool.h | 44 explicit NamePool(size_type pSize = 3); 57 ResolveInfo::SizeType pSize, 71 ResolveInfo::SizeType pSize,
|