Searched refs:pSize (Results 26 - 50 of 54) sorted by relevance

123

/frameworks/compile/mclinker/include/mcld/LD/
H A DLDSymbol.h105 void setSize(SizeType pSize) { argument
107 m_pResolveInfo->setSize(pSize);
H A DResolveInfo.h122 void setSize(SizeType pSize) argument
123 { m_Size = pSize; }
H A DLDSection.h36 uint64_t pSize = 0,
H A DArchive.h192 void setSymTabSize(size_t pSize);
/frameworks/compile/mclinker/lib/Support/
H A DFileHandle.cpp59 inline static bool get_size(int pHandler, unsigned int &pSize) argument
63 pSize = 0;
66 pSize = file_stat.st_size;
159 bool FileHandle::truncate(size_t pSize) argument
166 if (-1 == sys::fs::detail::ftruncate(m_Handler, pSize)) {
171 m_Size = pSize;
H A DMemoryAreaFactory.cpp97 MemoryAreaFactory::create(void* pMemBuffer, size_t pSize) argument
99 Space* space = new Space(Space::EXTERNAL, pMemBuffer, pSize);
/frameworks/av/libvideoeditor/osal/src/
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/lib/MC/
H A DMCLinker.cpp66 ResolveInfo::SizeType pSize,
84 pSize,
95 pSize, pVisibility,
173 ResolveInfo::SizeType pSize,
199 pBinding, pSize, pVisibility,
244 ResolveInfo::SizeType pSize,
256 pBinding, pSize, pVisibility,
283 info->setSize(pSize);
314 ResolveInfo::SizeType pSize,
336 info->setSize(pSize);
62 addSymbolFromObject(const llvm::StringRef& pName, ResolveInfo::Type pType, ResolveInfo::Desc pDesc, ResolveInfo::Binding pBinding, ResolveInfo::SizeType pSize, LDSymbol::ValueType pValue, FragmentRef* pFragmentRef, ResolveInfo::Visibility pVisibility) argument
169 addSymbolFromDynObj(const llvm::StringRef& pName, ResolveInfo::Type pType, ResolveInfo::Desc pDesc, ResolveInfo::Binding pBinding, ResolveInfo::SizeType pSize, LDSymbol::ValueType pValue, FragmentRef* pFragmentRef, ResolveInfo::Visibility pVisibility) argument
239 defineSymbolForcefully(const llvm::StringRef& pName, bool pIsDyn, ResolveInfo::Type pType, ResolveInfo::Desc pDesc, ResolveInfo::Binding pBinding, ResolveInfo::SizeType pSize, LDSymbol::ValueType pValue, FragmentRef* pFragmentRef, ResolveInfo::Visibility pVisibility) argument
309 defineSymbolAsRefered(const llvm::StringRef& pName, bool pIsDyn, ResolveInfo::Type pType, ResolveInfo::Desc pDesc, ResolveInfo::Binding pBinding, ResolveInfo::SizeType pSize, LDSymbol::ValueType pValue, FragmentRef* pFragmentRef, ResolveInfo::Visibility pVisibility) argument
360 defineAndResolveSymbolForcefully(const llvm::StringRef& pName, bool pIsDyn, ResolveInfo::Type pType, ResolveInfo::Desc pDesc, ResolveInfo::Binding pBinding, ResolveInfo::SizeType pSize, LDSymbol::ValueType pValue, FragmentRef* pFragmentRef, ResolveInfo::Visibility pVisibility) argument
406 defineAndResolveSymbolAsRefered(const llvm::StringRef& pName, bool pIsDyn, ResolveInfo::Type pType, ResolveInfo::Desc pDesc, ResolveInfo::Binding pBinding, ResolveInfo::SizeType pSize, LDSymbol::ValueType pValue, FragmentRef* pFragmentRef, ResolveInfo::Visibility pVisibility) argument
[all...]
/frameworks/compile/mclinker/include/mcld/Support/
H A DMemoryAreaFactory.h63 MemoryArea* create(void* pMemBuffer, size_t pSize);
H A DMemoryRegion.h46 MemoryRegion(Space& pParent, const Address pVMAStart, size_t pSize);
H A DFileHandle.h89 // truncate - truncate the file up to the pSize.
90 bool truncate(size_t pSize);
H A DAllocators.h68 static void setSize(size_t pSize) { m_Size = pSize; } argument
/frameworks/compile/mclinker/include/mcld/Target/
H A DPLT.h31 PLTEntry(size_t pSize, SectionData* pParent);
/frameworks/compile/mclinker/lib/Target/X86/
H A DX86PLT.cpp53 X86PLT0::X86PLT0(SectionData* pParent, unsigned int pSize) argument
54 : PLTEntry(pSize, pParent) { }
56 X86PLT1::X86PLT1(SectionData* pParent, unsigned int pSize) argument
57 : PLTEntry(pSize, pParent) { }
/frameworks/compile/libbcc/lib/Core/
H A DLinker.cpp220 enum Linker::ErrorCode Linker::addObject(void* pMemory, size_t pSize) { argument
230 mcld::MemoryArea *input_memory = mMemAreaFactory->produce(pMemory, pSize);
239 enum Linker::ErrorCode Linker::addCode(void* pMemory, size_t pSize) { argument
248 mcld::MemoryArea *input_memory = mMemAreaFactory->produce(pMemory, pSize);
285 text.setSize(pSize);
/frameworks/compile/mclinker/tools/mcld/lib/Core/
H A DLinker.cpp213 enum Linker::ErrorCode Linker::addObject(void* pMemory, size_t pSize) { argument
223 mcld::MemoryArea *input_memory = mMemAreaFactory->produce(pMemory, pSize);
232 enum Linker::ErrorCode Linker::addCode(void* pMemory, size_t pSize) { argument
241 mcld::MemoryArea *input_memory = mMemAreaFactory->produce(pMemory, pSize);
278 text.setSize(pSize);
/frameworks/compile/mclinker/lib/LD/
H A DArchive.cpp160 void Archive::setSymTabSize(size_t pSize) argument
162 m_SymTabSize = pSize;
/frameworks/compile/mclinker/include/mcld/ADT/
H A DHashTable.h65 explicit HashTable(size_type pSize=3);
/frameworks/av/media/libeffects/downmix/
H A DEffectDownmix.h100 int Downmix_getParameter(downmix_object_t *pDownmixer, int32_t param, size_t *pSize, void *pValue);
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/compile/mclinker/unittests/Linker/
H A DTestLinker.h63 void addObject(void* pMemBuffer, size_t pSize);
H A DTestLinker.cpp166 void TestLinker::addObject(void* pMemBuffer, size_t pSize) argument
175 mcld::Space* space = new mcld::Space(mcld::Space::EXTERNAL, pMemBuffer, pSize);
/frameworks/av/media/libeffects/testlibs/
H A DEffectReverb.h337 int Reverb_getParameter(reverb_object_t *pReverb, int32_t param, size_t *pSize, void *pValue);
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/api/
H A DomxVC.h722 * pSize - pointer to the number of bytes required for the specification
737 OMX_U32 *pSize
3316 * pSize - pointer to the number of bytes required for the motion
3322 * - pMEParams or pSize is NULL.
3329 OMX_U32 *pSize
3363 * - pMEParams or pSize is NULL.
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/api/
H A DomxVC.h722 * pSize - pointer to the number of bytes required for the specification
737 OMX_U32 *pSize
3316 * pSize - pointer to the number of bytes required for the motion
3322 * - pMEParams or pSize is NULL.
3329 OMX_U32 *pSize
3363 * - pMEParams or pSize is NULL.

Completed in 4208 milliseconds

123