Lines Matching refs:SecondsRunningDifference

560 	int				 SecondsRunningDifference;	/* Difference between what real time says we have been running */
2059 SecondsRunningDifference = SecondsRunningSimulationTime - SecondsRunningRealTime;
2065 printf ("> SecondsRunningDifference = 0x%8.8X, ExpectedRunningDifference = 0x%8.8X.\n",
2066 SecondsRunningDifference, ExpectedRunningDifference);
2075 ExpectedRunningDifference = SecondsRunningDifference;
2082 if ((ExpectedRunningDifference+INITIAL_STABILITY_BAND > SecondsRunningDifference)
2083 && (ExpectedRunningDifference-INITIAL_STABILITY_BAND < SecondsRunningDifference))
2101 if (ExpectedRunningDifference >= SecondsRunningDifference)
2104 printf ("> Was adding cycles, ExpectedRunningDifference >= SecondsRunningDifference, can stop it now.\n");
2119 if (ExpectedRunningDifference <= SecondsRunningDifference)
2122 printf ("> Was removing cycles, ExpectedRunningDifference <= SecondsRunningDifference, can stop it now.\n");
2135 if ((ExpectedRunningDifference+RUNNING_STABILITY_BAND > SecondsRunningDifference)
2136 && (ExpectedRunningDifference-RUNNING_STABILITY_BAND < SecondsRunningDifference))
2142 { // Oops, outside tolerances. Else clause of "if ((ExpectedRunningDifference...SecondsRunningDifference)"
2143 if (ExpectedRunningDifference > SecondsRunningDifference)
2146 printf ("> ExpectedRunningDifference > SecondsRunningDifference, running behind real time.\n");
2153 { // Else clause of "if (ExpectedRunningDifference < SecondsRunningDifference)"
2154 if (ExpectedRunningDifference < SecondsRunningDifference)
2157 printf ("> ExpectedRunningDifference < SecondsRunningDifference, running ahead of real time.\n");
2168 } // End of else clause of "if (ExpectedRunningDifference > SecondsRunningDifference)"
2169 } // End of else clause of "if ((ExpectedRunningDifference...SecondsRunningDifference)"