Lines Matching refs:pCppArgs

368     void ** pCppArgs  = (void **)alloca( 3 * sizeof(void *) * nParams );  in cpp_call()  local
370 sal_Int32 * pTempIndizes = (sal_Int32 *)(pCppArgs + nParams); in cpp_call()
372 …typelib_TypeDescription ** ppTempParamTypeDescr = (typelib_TypeDescription **)(pCppArgs + (2 * nPa… in cpp_call()
385 uno_copyAndConvertData( pCppArgs[nPos] = alloca(8), pUnoArgs[nPos], in cpp_call()
393 fprintf(stderr, "hyper is %lx\n", pCppArgs[nPos]); in cpp_call()
395 INSERT_INT64( pCppArgs[nPos], nGPR, pGPR, pStack, pStackStart, bOverFlow ); in cpp_call()
401 fprintf(stderr, "long is %x\n", pCppArgs[nPos]); in cpp_call()
403 INSERT_INT32( pCppArgs[nPos], nGPR, pGPR, pStack, bOverFlow ); in cpp_call()
408 INSERT_INT16( pCppArgs[nPos], nGPR, pGPR, pStack, bOverFlow ); in cpp_call()
412 INSERT_INT8( pCppArgs[nPos], nGPR, pGPR, pStack, bOverFlow ); in cpp_call()
415 INSERT_FLOAT( pCppArgs[nPos], nGPR, pGPR, pStack, bOverFlow ); in cpp_call()
418 INSERT_DOUBLE( pCppArgs[nPos], nGPR, pGPR, pStack, pStackStart, bOverFlow ); in cpp_call()
432 pCppArgs[nPos] = alloca( pParamTypeDescr->nSize ), in cpp_call()
442 pCppArgs[nPos] = alloca( pParamTypeDescr->nSize ), in cpp_call()
451 pCppArgs[nPos] = pUnoArgs[nPos]; in cpp_call()
455 INSERT_INT32( &(pCppArgs[nPos]), nGPR, pGPR, pStack, bOverFlow ); in cpp_call()
482 uno_copyAndConvertData( pUnoArgs[nIndex], pCppArgs[nIndex], pParamTypeDescr, in cpp_call()
488 uno_copyAndConvertData( pUnoArgs[nIndex], pCppArgs[nIndex], pParamTypeDescr, in cpp_call()
492 uno_destructData( pCppArgs[nIndex], pParamTypeDescr, cpp_release ); in cpp_call()
516 uno_destructData( pCppArgs[nIndex], ppTempParamTypeDescr[nTempIndizes], cpp_release ); in cpp_call()