Lines Matching refs:ExpectedRunningDifference

565 	int				 ExpectedRunningDifference = 0;	/* Stable value that we've obtained from check at initial start-up.	*/
2067 printf ("> SecondsRunningDifference = 0x%8.8X, ExpectedRunningDifference = 0x%8.8X.\n",
2068 SecondsRunningDifference, ExpectedRunningDifference);
2077 ExpectedRunningDifference = SecondsRunningDifference;
2084 if ((ExpectedRunningDifference+INITIAL_STABILITY_BAND > SecondsRunningDifference)
2085 && (ExpectedRunningDifference-INITIAL_STABILITY_BAND < SecondsRunningDifference))
2103 if (ExpectedRunningDifference >= SecondsRunningDifference)
2106 printf ("> Was adding cycles, ExpectedRunningDifference >= SecondsRunningDifference, can stop it now.\n");
2121 if (ExpectedRunningDifference <= SecondsRunningDifference)
2124 printf ("> Was removing cycles, ExpectedRunningDifference <= SecondsRunningDifference, can stop it now.\n");
2137 if ((ExpectedRunningDifference+RUNNING_STABILITY_BAND > SecondsRunningDifference)
2138 && (ExpectedRunningDifference-RUNNING_STABILITY_BAND < SecondsRunningDifference))
2144 { // Oops, outside tolerances. Else clause of "if ((ExpectedRunningDifference...SecondsRunningDifference)"
2145 if (ExpectedRunningDifference > SecondsRunningDifference)
2148 printf ("> ExpectedRunningDifference > SecondsRunningDifference, running behind real time.\n");
2155 { // Else clause of "if (ExpectedRunningDifference < SecondsRunningDifference)"
2156 if (ExpectedRunningDifference < SecondsRunningDifference)
2159 printf ("> ExpectedRunningDifference < SecondsRunningDifference, running ahead of real time.\n");
2170 } // End of else clause of "if (ExpectedRunningDifference > SecondsRunningDifference)"
2171 } // End of else clause of "if ((ExpectedRunningDifference...SecondsRunningDifference)"