Lines Matching refs:pCppArgs
294 void ** pCppArgs = (void **)alloca( 3 * sizeof(void *) * nParams ); in cpp_call() local
296 sal_Int32 * pTempIndizes = (sal_Int32 *)(pCppArgs + nParams); in cpp_call()
298 …typelib_TypeDescription ** ppTempParamTypeDescr = (typelib_TypeDescription **)(pCppArgs + (2 * nPa… in cpp_call()
320 uno_copyAndConvertData( pCppArgs[nPos] = pStack, pUnoArgs[nPos], pParamTypeDescr, in cpp_call()
327 fprintf(stderr, "hyper is %lx\n", pCppArgs[nPos]); in cpp_call()
329 INSERT_INT64( pCppArgs[nPos], nGPR, pGPR, pStack, bOverFlow ); in cpp_call()
335 fprintf(stderr, "long is %x\n", pCppArgs[nPos]); in cpp_call()
337 INSERT_INT32( pCppArgs[nPos], nGPR, pGPR, pStack, bOverFlow ); in cpp_call()
342 INSERT_INT16( pCppArgs[nPos], nGPR, pGPR, pStack, bOverFlow ); in cpp_call()
346 INSERT_INT8( pCppArgs[nPos], nGPR, pGPR, pStack, bOverFlow ); in cpp_call()
349 INSERT_FLOAT( pCppArgs[nPos], nFPR, pFPR, pStack, bOverFlow ); in cpp_call()
352 INSERT_DOUBLE( pCppArgs[nPos], nFPR, pFPR, pStack, bOverFlow ); in cpp_call()
372 pCppArgs[nPos] = alloca( pParamTypeDescr->nSize ), in cpp_call()
385 pCppArgs[nPos] = alloca( pParamTypeDescr->nSize ), in cpp_call()
397 pCppArgs[nPos] = pUnoArgs[nPos]; in cpp_call()
401 INSERT_INT64( &(pCppArgs[nPos]), nGPR, pGPR, pStack, bOverFlow ); in cpp_call()
427 uno_copyAndConvertData( pUnoArgs[nIndex], pCppArgs[nIndex], pParamTypeDescr, in cpp_call()
433 uno_copyAndConvertData( pUnoArgs[nIndex], pCppArgs[nIndex], pParamTypeDescr, in cpp_call()
437 uno_destructData( pCppArgs[nIndex], pParamTypeDescr, cpp_release ); in cpp_call()
460 uno_destructData( pCppArgs[nIndex], ppTempParamTypeDescr[nTempIndizes], cpp_release ); in cpp_call()