Lines Matching refs:pCppArgs

369         void ** pCppArgs = (void **)alloca( 3 * sizeof(void *) * nParams );  in cpp_call()  local
371 sal_Int32 * pTempIndizes = (sal_Int32 *)(pCppArgs + nParams); in cpp_call()
373 …typelib_TypeDescription ** ppTempParamTypeDescr = (typelib_TypeDescription **)(pCppArgs + (2 * nPa… in cpp_call()
395 uno_copyAndConvertData( pCppArgs[nPos] = pStack, pUnoArgs[nPos], pParamTypeDescr, in cpp_call()
402 fprintf(stderr, "hyper is %lx\n", *(unsigned long*)(pCppArgs[nPos])); in cpp_call()
404 INSERT_INT64( pCppArgs[nPos], nGPR, pGPR, pStack, bOverFlow ); in cpp_call()
410 fprintf(stderr, "long is %lx\n", *(unsigned int*)(pCppArgs[nPos])); in cpp_call()
412 INSERT_INT32( pCppArgs[nPos], nGPR, pGPR, pStack, bOverFlow ); in cpp_call()
418 fprintf(stderr, "short is %x\n", *(unsigned short*)(pCppArgs[nPos])); in cpp_call()
420 INSERT_INT16( pCppArgs[nPos], nGPR, pGPR, pStack, bOverFlow ); in cpp_call()
425 fprintf(stderr, "byte is %x\n", *(unsigned char*)(pCppArgs[nPos])); in cpp_call()
427 INSERT_INT8( pCppArgs[nPos], nGPR, pGPR, pStack, bOverFlow ); in cpp_call()
431 fprintf(stderr, "a float is %f\n", *(float*)(pCppArgs[nPos])); in cpp_call()
432 fprintf(stderr, "b float is %f\n", *(double*)(pCppArgs[nPos])); in cpp_call()
434 … INSERT_FLOAT( pCppArgs[nPos], nFPR, pFPR, nGPR, pGPR, pStack, bOverFlow ); in cpp_call()
438 fprintf(stderr, "double is %f\n", *(double*)(pCppArgs[nPos])); in cpp_call()
440 … INSERT_DOUBLE( pCppArgs[nPos], nFPR, pFPR, nGPR, pGPR, pStack, bOverFlow ); in cpp_call()
462 pCppArgs[nPos] = alloca( pParamTypeDescr->nSize ), in cpp_call()
475 pCppArgs[nPos] = alloca( pParamTypeDescr->nSize ), in cpp_call()
487 pCppArgs[nPos] = pUnoArgs[nPos]; in cpp_call()
491 INSERT_INT64( &(pCppArgs[nPos]), nGPR, pGPR, pStack, bOverFlow ); in cpp_call()
517 uno_copyAndConvertData( pUnoArgs[nIndex], pCppArgs[nIndex], pParamTypeDescr, in cpp_call()
523 uno_copyAndConvertData( pUnoArgs[nIndex], pCppArgs[nIndex], pParamTypeDescr, in cpp_call()
527 uno_destructData( pCppArgs[nIndex], pParamTypeDescr, cpp_release ); in cpp_call()
550 uno_destructData( pCppArgs[nIndex], ppTempParamTypeDescr[nTempIndizes], cpp_release ); in cpp_call()