Lines Matching refs:pCppArgs
252 void ** pCppArgs = (void **)alloca( 3 * sizeof(void *) * nParams ); in cpp_call() local
254 sal_Int32 * pTempIndizes = (sal_Int32 *)(pCppArgs + nParams); in cpp_call()
256 …typelib_TypeDescription ** ppTempParamTypeDescr = (typelib_TypeDescription **)(pCppArgs + (2 * nPa… in cpp_call()
268 uno_copyAndConvertData( pCppArgs[nPos] = alloca( 8 ), pUnoArgs[nPos], pParamTypeDescr, in cpp_call()
275 INSERT_INT64( pCppArgs[nPos], nGPR, pGPR, pStack ); in cpp_call()
280 INSERT_INT32( pCppArgs[nPos], nGPR, pGPR, pStack ); in cpp_call()
285 INSERT_INT16( pCppArgs[nPos], nGPR, pGPR, pStack ); in cpp_call()
289 INSERT_INT8( pCppArgs[nPos], nGPR, pGPR, pStack ); in cpp_call()
292 INSERT_FLOAT( pCppArgs[nPos], nFPR, pFPR, pStack ); in cpp_call()
295 INSERT_DOUBLE( pCppArgs[nPos], nFPR, pFPR, pStack ); in cpp_call()
310 pCppArgs[nPos] = alloca( pParamTypeDescr->nSize ), in cpp_call()
320 pCppArgs[nPos] = alloca( pParamTypeDescr->nSize ), in cpp_call()
329 pCppArgs[nPos] = pUnoArgs[nPos]; in cpp_call()
333 INSERT_INT64( &(pCppArgs[nPos]), nGPR, pGPR, pStack ); in cpp_call()
359 uno_copyAndConvertData( pUnoArgs[nIndex], pCppArgs[nIndex], pParamTypeDescr, in cpp_call()
365 uno_copyAndConvertData( pUnoArgs[nIndex], pCppArgs[nIndex], pParamTypeDescr, in cpp_call()
369 uno_destructData( pCppArgs[nIndex], pParamTypeDescr, cpp_release ); in cpp_call()
393 uno_destructData( pCppArgs[nIndex], ppTempParamTypeDescr[nTempIndizes], cpp_release ); in cpp_call()