next_leap          56 tools/testing/selftests/timers/leap-a-day.c time_t next_leap;
next_leap         138 tools/testing/selftests/timers/leap-a-day.c 	if (tx.time.tv_sec < next_leap) {
next_leap         139 tools/testing/selftests/timers/leap-a-day.c 		printf("Error: Early timer expiration! (Should be %ld)\n", next_leap);
next_leap         246 tools/testing/selftests/timers/leap-a-day.c 		next_leap = ts.tv_sec;
next_leap         247 tools/testing/selftests/timers/leap-a-day.c 		next_leap += 86400 - (next_leap % 86400);
next_leap         252 tools/testing/selftests/timers/leap-a-day.c 			tv.tv_sec = next_leap - 10;
next_leap         288 tools/testing/selftests/timers/leap-a-day.c 		printf("Scheduling leap second for %s", ctime(&next_leap));
next_leap         291 tools/testing/selftests/timers/leap-a-day.c 		printf("Setting timer for %ld -  %s", next_leap, ctime(&next_leap));
next_leap         300 tools/testing/selftests/timers/leap-a-day.c 		its1.it_value.tv_sec = next_leap;
next_leap         307 tools/testing/selftests/timers/leap-a-day.c 		ts.tv_sec = next_leap - 3;
next_leap         329 tools/testing/selftests/timers/leap-a-day.c 		while (now < next_leap + 2) {
next_leap          62 tools/testing/selftests/timers/leapcrash.c 	time_t next_leap;
next_leap          78 tools/testing/selftests/timers/leapcrash.c 	next_leap = ts.tv_sec;
next_leap          79 tools/testing/selftests/timers/leapcrash.c 	next_leap += 86400 - (next_leap % 86400);
next_leap          86 tools/testing/selftests/timers/leapcrash.c 		tv.tv_sec = next_leap - 2;
next_leap          96 tools/testing/selftests/timers/leapcrash.c 		while (tx.time.tv_sec < next_leap + 1) {