Lines Matching refs:nPos

381 	for ( sal_Int32 nPos = 0; nPos < nParams; ++nPos )  in cpp_call()  local
383 const typelib_MethodParameter & rParam = pParams[nPos]; in cpp_call()
388 …fprintf(stderr, "param %d is %d %d %d\n", nPos, rParam.bOut, bridges::cpp_uno::shared::isSimpleTyp… 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()
464 … pTempIndizes[nTempIndizes] = nPos; // default constructed for cpp call in cpp_call()
475 pCppArgs[nPos] = alloca( pParamTypeDescr->nSize ), in cpp_call()
476 … pUnoArgs[nPos], pParamTypeDescr, pThis->getBridge()->getUno2Cpp() ); in cpp_call()
478 pTempIndizes[nTempIndizes] = nPos; // has to be reconverted in cpp_call()
485 fprintf(stderr, "that one, passing %lx through\n", pUnoArgs[nPos]); in cpp_call()
487 pCppArgs[nPos] = pUnoArgs[nPos]; in cpp_call()
491 INSERT_INT64( &(pCppArgs[nPos]), nGPR, pGPR, pStack, bOverFlow ); in cpp_call()