Lines Matching refs:pCppArgs
203 void ** pCppArgs = (void **)alloca( 3 * sizeof(void *) * nParams ); in cpp_call() local
205 sal_Int32 * pTempIndizes = (sal_Int32 *)(pCppArgs + nParams); in cpp_call()
207 …typelib_TypeDescription ** ppTempParamTypeDescr = (typelib_TypeDescription **)(pCppArgs + (2 * nPa… in cpp_call()
220 uno_copyAndConvertData( pCppArgs[nPos] = alloca(8), pUnoArgs[nPos], in cpp_call()
228 fprintf(stderr, "hyper is %lx\n", pCppArgs[nPos]); in cpp_call()
230 INSERT_INT64( pCppArgs[nPos], pStack ); in cpp_call()
236 fprintf(stderr, "long is %x\n", pCppArgs[nPos]); in cpp_call()
238 INSERT_INT32( pCppArgs[nPos], pStack ); in cpp_call()
243 INSERT_INT16( pCppArgs[nPos], pStack ); in cpp_call()
247 INSERT_INT8( pCppArgs[nPos], pStack ); in cpp_call()
250 INSERT_FLOAT( pCppArgs[nPos], pStack ); in cpp_call()
253 INSERT_DOUBLE( pCppArgs[nPos], pStack ); in cpp_call()
265 pCppArgs[nPos] = alloca( pParamTypeDescr->nSize ), in cpp_call()
275 pCppArgs[nPos] = alloca( pParamTypeDescr->nSize ), in cpp_call()
284 pCppArgs[nPos] = pUnoArgs[nPos]; in cpp_call()
288 INSERT_INT32( &(pCppArgs[nPos]), pStack ); in cpp_call()
314 uno_copyAndConvertData( pUnoArgs[nIndex], pCppArgs[nIndex], pParamTypeDescr, in cpp_call()
320 uno_copyAndConvertData( pUnoArgs[nIndex], pCppArgs[nIndex], pParamTypeDescr, in cpp_call()
324 uno_destructData( pCppArgs[nIndex], pParamTypeDescr, cpp_release ); in cpp_call()
346 uno_destructData( pCppArgs[nIndex], ppTempParamTypeDescr[nTempIndizes], cpp_release ); in cpp_call()