Searched defs:pSize (Results 26 - 29 of 29) sorted by last modified time

12

/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...]
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...]
/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 137 milliseconds

12