Searched defs:pSize (Results 1 - 18 of 18) sorted by relevance

/frameworks/compile/mclinker/lib/Support/
H A DMemoryRegion.cpp17 size_t pSize)
18 : m_pParentSpace(pParentSpace), m_VMAStart(pVMAStart), m_Length(pSize) {
15 MemoryRegion(MemoryArea::Space *pParentSpace, const MemoryRegion::Address pVMAStart, size_t pSize) argument
H A DLEB128.cpp96 uint64_t decode<uint64_t>(const ByteType *pBuf, size_t &pSize) { argument
100 pSize = 1;
103 pSize = 2;
107 pSize = 3;
112 pSize = 4;
130 pSize++;
188 int64_t decode<int64_t>(const ByteType *pBuf, size_t &pSize) { argument
193 pSize = 0;
197 pSize++;
H A DRegionFactory.cpp26 size_t pSize)
29 new (result) MemoryRegion(pSpace, pVMAStart, pSize);
24 produce(MemoryArea::Space* pSpace, const sys::fs::detail::Address pVMAStart, size_t pSize) argument
H A DMemoryArea.cpp353 size_t pSize, size_t pOffset) {
358 pSize, pOffset);
359 if (static_cast<size_t>(read_bytes) != pSize) {
364 else if (static_cast<size_t>(read_bytes) < pSize) {
352 readToBuffer(sys::fs::detail::Address pBuf, size_t pSize, size_t pOffset) argument
/frameworks/compile/mclinker/include/mcld/Support/
H A DLEB128.h30 IntType decode(const ByteType *pBuf, size_t &pSize);
71 * Read an integer encoded in ULEB128 format from the given buffer. pSize will
76 uint64_t decode<uint64_t>(const ByteType *pBuf, size_t &pSize);
89 int64_t decode<int64_t>(const ByteType *pBuf, size_t &pSize);
105 IntType decode(const char *pBuf, size_t &pSize) { argument
106 return decode<IntType>(reinterpret_cast<const ByteType*>(pBuf), pSize);
H A DAllocators.h69 static void setSize(size_t pSize) { m_Size = pSize; } argument
/frameworks/compile/mclinker/lib/LD/
H A DLDSection.cpp18 uint64_t pSize,
26 m_Size(pSize),
14 LDSection(const std::string& pName, LDFileFormat::Kind pKind, uint32_t pType, uint32_t pFlag, uint64_t pSize, uint64_t pOffset, uint64_t pAddr) argument
H A DStrSymPool.cpp18 StrSymPool::StrSymPool(const Resolver& pResolver, StrSymPool::size_type pSize) argument
19 : m_pResolver(pResolver.clone()), m_Table(pSize) {
34 ResolveInfo::SizeType pSize,
44 result->setSize(pSize);
56 ResolveInfo::SizeType pSize,
83 new_symbol->setSize(pSize);
138 void StrSymPool::reserve(StrSymPool::size_type pSize) argument
140 m_Table.rehash(pSize);
29 createSymbol(const llvm::StringRef& pName, bool pIsDyn, ResolveInfo::Type pType, ResolveInfo::Desc pDesc, ResolveInfo::Binding pBinding, ResolveInfo::SizeType pSize, ResolveInfo::Visibility pVisibility) argument
51 insertSymbol(const llvm::StringRef& pName, bool pIsDyn, ResolveInfo::Type pType, ResolveInfo::Desc pDesc, ResolveInfo::Binding pBinding, ResolveInfo::SizeType pSize, ResolveInfo::Visibility pVisibility, ResolveInfo* pOldInfo, Resolver::Result& pResult) argument
/frameworks/compile/mclinker/lib/Target/
H A DPLT.cpp17 PLTEntry::PLTEntry(size_t pSize, llvm::MCSectionData* pParent) argument
19 m_EntrySize(pSize), m_pContent(NULL)
/frameworks/wilhelm/src/itf/
H A DIMetadataTraversal.c66 SLMetadataTraversalItf self, SLuint32 index, SLuint32 *pSize)
70 if (NULL == pSize) {
77 *pSize = size;
65 IMetadataTraversal_GetChildMIMETypeSize( SLMetadataTraversalItf self, SLuint32 index, SLuint32 *pSize) argument
/frameworks/av/libvideoeditor/osal/src/
H A DM4OSA_FileReader.c87 M4OSA_UInt32* pSize)
94 data, (M4OSA_NULL != pSize) ? (*pSize) : 0);
100 M4OSA_DEBUG_IF2(M4OSA_NULL == pSize, M4ERR_PARAMETER,
101 "M4OSA_fileReadData: pSize is M4OSA_NULL");
109 uiSizeRead = fread(data, sizeof(M4OSA_Char), *pSize,
114 *pSize = 0;
120 if ((M4OSA_UInt32)uiSizeRead < *pSize)
122 *pSize = uiSizeRead;
129 *pSize
86 M4OSA_fileReadData(M4OSA_Context pContext, M4OSA_MemAddr8 data, M4OSA_UInt32* pSize) argument
[all...]
H A DLVOSA_FileReader_optim.c655 * @param pSize : (INOUT) Size of the data to read (in byte).
657 * @return M4ERR_PARAMETER pSize, fileDescriptor or pData is NULL
663 M4OSA_UInt32* pSize)
674 pContext, pData, *pSize);
679 M4ERR_CHECK_NULL_RETURN_VALUE(M4ERR_PARAMETER, pSize);
687 if((*pSize > 0) && (apContext->absolutePos >= apContext->fileSize))
712 if (*pSize <= (M4OSA_UInt32)apContext->buffer[selected_buffer].size)
731 M4OSA_TRACE3_3("read size = %lu buffer = %d pos = %ld", *pSize,
735 while(((M4OSA_UInt32)copiedSize < *pSize) && (err == M4NO_ERROR))
739 *pSize
662 M4OSA_fileReadData_optim(M4OSA_Context pContext,M4OSA_MemAddr8 pData, M4OSA_UInt32* pSize) argument
[all...]
/frameworks/compile/mclinker/include/mcld/LD/
H A DLDSymbol.h105 void setSize(SizeType pSize) { argument
107 m_pResolveInfo->setSize(pSize);
H A DResolveInfo.h121 void setSize(SizeType pSize) argument
122 { m_Size = pSize; }
/frameworks/compile/mclinker/lib/MC/
H A DMCLinker.cpp60 ResolveInfo::SizeType pSize,
78 pSize,
88 m_StrSymPool.insertSymbol(pName, false, pType, pDesc, pBinding, pSize,
166 ResolveInfo::SizeType pSize,
191 m_StrSymPool.insertSymbol(pName, true, pType, pDesc, pBinding, pSize, pVisibility,
236 ResolveInfo::SizeType pSize,
247 m_StrSymPool.insertSymbol(pName, pIsDyn, pType, pDesc, pBinding, pSize, pVisibility,
274 info->setSize(pSize);
305 ResolveInfo::SizeType pSize,
327 info->setSize(pSize);
56 addSymbolFromObject(const llvm::StringRef& pName, ResolveInfo::Type pType, ResolveInfo::Desc pDesc, ResolveInfo::Binding pBinding, ResolveInfo::SizeType pSize, LDSymbol::ValueType pValue, MCFragmentRef* pFragmentRef, ResolveInfo::Visibility pVisibility) argument
162 addSymbolFromDynObj(const llvm::StringRef& pName, ResolveInfo::Type pType, ResolveInfo::Desc pDesc, ResolveInfo::Binding pBinding, ResolveInfo::SizeType pSize, LDSymbol::ValueType pValue, MCFragmentRef* pFragmentRef, ResolveInfo::Visibility pVisibility) argument
231 defineSymbolForcefully(const llvm::StringRef& pName, bool pIsDyn, ResolveInfo::Type pType, ResolveInfo::Desc pDesc, ResolveInfo::Binding pBinding, ResolveInfo::SizeType pSize, LDSymbol::ValueType pValue, MCFragmentRef* pFragmentRef, ResolveInfo::Visibility pVisibility) argument
300 defineSymbolAsRefered(const llvm::StringRef& pName, bool pIsDyn, ResolveInfo::Type pType, ResolveInfo::Desc pDesc, ResolveInfo::Binding pBinding, ResolveInfo::SizeType pSize, LDSymbol::ValueType pValue, MCFragmentRef* pFragmentRef, ResolveInfo::Visibility pVisibility) argument
351 defineAndResolveSymbolForcefully(const llvm::StringRef& pName, bool pIsDyn, ResolveInfo::Type pType, ResolveInfo::Desc pDesc, ResolveInfo::Binding pBinding, ResolveInfo::SizeType pSize, LDSymbol::ValueType pValue, MCFragmentRef* pFragmentRef, ResolveInfo::Visibility pVisibility) argument
396 defineAndResolveSymbolAsRefered(const llvm::StringRef& pName, bool pIsDyn, ResolveInfo::Type pType, ResolveInfo::Desc pDesc, ResolveInfo::Binding pBinding, ResolveInfo::SizeType pSize, LDSymbol::ValueType pValue, MCFragmentRef* pFragmentRef, ResolveInfo::Visibility pVisibility) argument
[all...]
/frameworks/compile/mclinker/lib/Target/X86/
H A DX86PLT.cpp47 X86PLT0::X86PLT0(llvm::MCSectionData* pParent, unsigned int pSize) argument
48 : PLTEntry(pSize, pParent) { }
50 X86PLT1::X86PLT1(llvm::MCSectionData* pParent, unsigned int pSize) argument
51 : PLTEntry(pSize, pParent) { }
/frameworks/av/media/libeffects/downmix/
H A DEffectDownmix.c762 * pSize pointer to value size: maximum size as input
766 * *pSize updated with actual value size
775 int Downmix_getParameter(downmix_object_t *pDownmixer, int32_t param, size_t *pSize, void *pValue) { argument
781 if (*pSize < sizeof(int16_t)) {
782 ALOGE("Downmix_getParameter invalid parameter size %d for DOWNMIX_PARAM_TYPE", *pSize);
787 *pSize = sizeof(int16_t);
/frameworks/av/media/libeffects/testlibs/
H A DEffectReverb.c759 * pSize - pointer to value size: maximum size as input
763 * *pSize updated with actual value size
770 int Reverb_getParameter(reverb_object_t *pReverb, int32_t param, size_t *pSize, argument
781 if (param != REVERB_PARAM_PRESET || *pSize < sizeof(int16_t)) {
820 if (*pSize < size) {
1026 *pSize = size;

Completed in 7469 milliseconds