Lines Matching refs:dLocal
556 double dRemote, dLocal,dAfterExecution; in testPerformance() local
559 dLocal = getCallsPerSecOneway( rLocal , nCalls , nDoSomething , &dAfterExecution); in testPerformance()
562 "Remote : %g s\n" , dLocal, dRemote ); in testPerformance()
563 if( dLocal > 0. ) in testPerformance()
565 printf( "Remote/Local : %g\n", dRemote/dLocal ); in testPerformance()
568 printf( "Overhead per Call [ms] %g\n" , (dRemote - dLocal)/((double)nCalls/1000 ) ); in testPerformance()
569 …printf( "Overhead per Call after completion [ms] %g\n" , (dAfterExecution - dLocal)/((double)nCall… in testPerformance()
575 dLocal = getCallsPerSec( rLocal , nCalls , nDoSomething ); in testPerformance()
577 "Remote=%g s\n" , dLocal, dRemote ); in testPerformance()
578 if( dLocal > 0. ) in testPerformance()
580 printf( "Remote/Local : %g\n", dRemote/dLocal ); in testPerformance()
582 printf( "Overhead per synchron Call [ms] %g\n" , ((dRemote - dLocal)/((double)nCalls/1000 )) ); in testPerformance()