/frameworks/compile/mclinker/lib/Support/ |
D | LEB128.cpp | 96 uint64_t decode<uint64_t>(const ByteType* pBuf, size_t& pSize) { in decode() argument 100 pSize = 1; in decode() 103 pSize = 2; in decode() 106 pSize = 3; in decode() 110 pSize = 4; in decode() 126 pSize++; in decode() 184 int64_t decode<int64_t>(const ByteType* pBuf, size_t& pSize) { in decode() argument 189 pSize = 0; in decode() 193 pSize++; in decode()
|
D | FileHandle.cpp | 66 inline static bool get_size(int pHandler, unsigned int& pSize) { in get_size() argument 69 pSize = 0; in get_size() 72 pSize = file_stat.st_size; in get_size() 144 bool FileHandle::truncate(size_t pSize) { in truncate() argument 150 if (sys::fs::detail::ftruncate(m_Handler, pSize) == -1) { in truncate() 155 m_Size = pSize; in truncate()
|
D | FileOutputBuffer.cpp | 27 size_t pSize, in create() argument 32 ec = llvm::sys::fs::resize_file(pFileHandle.handler(), pSize); in create() 38 llvm::sys::fs::mapped_file_region::readwrite, pSize, 0, ec)); in create()
|
D | MemoryAreaFactory.cpp | 52 MemoryArea* MemoryAreaFactory::produce(void* pMemBuffer, size_t pSize) { in produce() argument 54 llvm::StringRef name(base, pSize); in produce() 57 new (result) MemoryArea(base, pSize); in produce()
|
D | MemoryArea.cpp | 33 MemoryArea::MemoryArea(const char* pMemBuffer, size_t pSize) { in MemoryArea() argument 34 llvm::StringRef mem(pMemBuffer, pSize); in MemoryArea()
|
/frameworks/compile/mclinker/lib/LD/ |
D | NamePool.cpp | 20 NamePool::NamePool(NamePool::size_type pSize) in NamePool() argument 21 : m_pResolver(new StaticResolver()), m_Table(pSize) { in NamePool() 39 ResolveInfo::SizeType pSize, in createSymbol() argument 49 (*result)->setSize(pSize); in createSymbol() 61 ResolveInfo::SizeType pSize, in insertSymbol() argument 86 new_symbol->setSize(pSize); in insertSymbol() 121 void NamePool::reserve(NamePool::size_type pSize) { in reserve() argument 122 m_Table.rehash(pSize); in reserve()
|
D | LDSection.cpp | 43 uint64_t pSize, in LDSection() argument 49 m_Size(pSize), in LDSection() 70 uint64_t pSize, in Create() argument 73 new (result) LDSection(pName, pKind, pType, pFlag, pSize, pAddr); in Create()
|
/frameworks/compile/mclinker/include/mcld/ |
D | IRBuilder.h | 132 Input* ReadInput(const std::string& pName, void* pRawMemory, size_t pSize); 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, 526 ResolveInfo::SizeType pSize,
|
D | TargetOptions.h | 66 void setStubGroupSize(unsigned pSize) { m_StubGroupSize = pSize; } in setStubGroupSize() argument
|
/frameworks/compile/mclinker/include/mcld/Support/ |
D | LEB128.h | 26 IntType decode(const ByteType* pBuf, size_t& pSize); 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) { in decode() argument 102 return decode<IntType>(reinterpret_cast<const ByteType*>(pBuf), pSize); in decode()
|
/frameworks/compile/mclinker/lib/Core/ |
D | IRBuilder.cpp | 214 size_t pSize) { in ReadInput() argument 218 m_InputBuilder.setMemory(*input, pRawMemory, pSize); in ReadInput() 402 ResolveInfo::SizeType pSize, in AddSymbol() argument 438 name, pType, pDesc, pBind, pSize, pValue, frag, pVis); in AddSymbol() 444 pInput, name, pType, pDesc, pBind, pSize, pValue, pVis); in AddSymbol() 458 ResolveInfo::SizeType pSize, in addSymbolFromObject() argument 471 pName, false, pType, pDesc, pBinding, pSize, pVisibility); in addSymbolFromObject() 484 pSize, in addSymbolFromObject() 533 ResolveInfo::SizeType pSize, in addSymbolFromDynObj() argument 559 pSize, in addSymbolFromDynObj() [all …]
|
/frameworks/compile/mclinker/lib/Fragment/ |
D | FillFragment.cpp | 20 uint64_t pSize, in FillFragment() argument 25 m_Size(pSize) { in FillFragment()
|
/frameworks/wilhelm/src/itf/ |
D | IMetadataTraversal.cpp | 66 SLMetadataTraversalItf self, SLuint32 index, SLuint32 *pSize) in IMetadataTraversal_GetChildMIMETypeSize() argument 70 if (NULL == pSize) { in IMetadataTraversal_GetChildMIMETypeSize() 77 *pSize = size; in IMetadataTraversal_GetChildMIMETypeSize()
|
/frameworks/compile/mclinker/include/mcld/LD/ |
D | NamePool.h | 44 explicit NamePool(size_type pSize = 3); 57 ResolveInfo::SizeType pSize, 71 ResolveInfo::SizeType pSize,
|
D | LDSymbol.h | 114 void setSize(SizeType pSize) { in setSize() argument 116 m_pResolveInfo->setSize(pSize); in setSize()
|
/frameworks/compile/mclinker/lib/Target/AArch64/ |
D | AArch64CA53Erratum843419Stub2.cpp | 39 size_t pSize, in AArch64CA53Erratum843419Stub2() argument 43 : AArch64CA53ErratumStub(pData, pSize, pName, pBegin, pEnd) { in AArch64CA53Erratum843419Stub2()
|
D | AArch64CA53Erratum835769Stub.cpp | 36 size_t pSize, in AArch64CA53Erratum835769Stub() argument 40 : AArch64CA53ErratumStub(pData, pSize, pName, pBegin, pEnd) { in AArch64CA53Erratum835769Stub()
|
D | AArch64CA53Erratum843419Stub.cpp | 38 size_t pSize, in AArch64CA53Erratum843419Stub() argument 42 : AArch64CA53ErratumStub(pData, pSize, pName, pBegin, pEnd) { in AArch64CA53Erratum843419Stub()
|
/frameworks/compile/mclinker/include/mcld/Target/ |
D | ELFAttributeValue.h | 59 void setStringValue(const char* pStringValue, size_t pSize) { in setStringValue() argument 60 m_StringValue.assign(pStringValue, pSize); in setStringValue()
|
/frameworks/compile/mclinker/lib/Target/Mips/ |
D | MipsLA25Stub.cpp | 42 size_t pSize, in MipsLA25Stub() argument 45 : m_Target(pTarget), m_Name("pic"), m_pData(pData), m_Size(pSize) { in MipsLA25Stub()
|
/frameworks/compile/mclinker/lib/Target/ARM/ |
D | ARMToARMStub.cpp | 50 size_t pSize, in ARMToARMStub() argument 53 : m_pData(pData), m_Name("A2A_veneer"), m_Size(pSize) { in ARMToARMStub()
|
D | ARMToTHMStub.cpp | 52 size_t pSize, in ARMToTHMStub() argument 55 : m_pData(pData), m_Name("A2T_veneer"), m_Size(pSize) { in ARMToTHMStub()
|
D | THMToTHMStub.cpp | 57 size_t pSize, in THMToTHMStub() argument 63 m_Size(pSize), in THMToTHMStub()
|
D | THMToARMStub.cpp | 55 size_t pSize, in THMToARMStub() argument 61 m_Size(pSize), in THMToARMStub()
|
/frameworks/compile/mclinker/lib/Target/Hexagon/ |
D | HexagonAbsoluteStub.cpp | 49 size_t pSize, in HexagonAbsoluteStub() argument 52 : Stub(), m_Name("AbsVeneer"), m_pData(pData), m_Size(pSize) { in HexagonAbsoluteStub()
|