Lines Matching refs:pCppArgs
398 void ** pCppArgs = (void **)alloca( 3 * sizeof(void *) * nParams ); in cpp_call() local
400 sal_Int32 * pTempIndizes = (sal_Int32 *)(pCppArgs + nParams); in cpp_call()
402 …typelib_TypeDescription ** ppTempParamTypeDescr = (typelib_TypeDescription **)(pCppArgs + (2 * nPa… in cpp_call()
424 uno_copyAndConvertData( pCppArgs[nPos] = pStack, pUnoArgs[nPos], pParamTypeDescr, in cpp_call()
431 fprintf(stderr, "hyper is %lx\n", pCppArgs[nPos]); in cpp_call()
433 INSERT_INT64( pCppArgs[nPos], nGPR, pGPR, pStack, bOverFlow ); in cpp_call()
439 fprintf(stderr, "long is %x\n", pCppArgs[nPos]); in cpp_call()
441 INSERT_INT32( pCppArgs[nPos], nGPR, pGPR, pStack, bOverFlow ); in cpp_call()
444 INSERT_INT16( pCppArgs[nPos], nGPR, pGPR, pStack, bOverFlow ); in cpp_call()
448 INSERT_INT16( pCppArgs[nPos], nGPR, pGPR, pStack, bOverFlow ); in cpp_call()
451 INSERT_UINT8( pCppArgs[nPos], nGPR, pGPR, pStack, bOverFlow ); in cpp_call()
454 INSERT_INT8( pCppArgs[nPos], nGPR, pGPR, pStack, bOverFlow ); in cpp_call()
457 INSERT_FLOAT( pCppArgs[nPos], nFPR, pFPR, nGPR, pStack, bOverFlow ); in cpp_call()
460 … INSERT_DOUBLE( pCppArgs[nPos], nFPR, pFPR, nGPR, pStack, bOverFlow ); in cpp_call()
480 pCppArgs[nPos] = alloca( pParamTypeDescr->nSize ), in cpp_call()
493 pCppArgs[nPos] = alloca( pParamTypeDescr->nSize ), in cpp_call()
505 pCppArgs[nPos] = pUnoArgs[nPos]; in cpp_call()
509 INSERT_INT64( &(pCppArgs[nPos]), nGPR, pGPR, pStack, bOverFlow ); in cpp_call()
535 uno_copyAndConvertData( pUnoArgs[nIndex], pCppArgs[nIndex], pParamTypeDescr, in cpp_call()
541 uno_copyAndConvertData( pUnoArgs[nIndex], pCppArgs[nIndex], pParamTypeDescr, in cpp_call()
545 uno_destructData( pCppArgs[nIndex], pParamTypeDescr, cpp_release ); in cpp_call()
577 uno_destructData( pCppArgs[nIndex], ppTempParamTypeDescr[nTempIndizes], cpp_release ); in cpp_call()