Lines Matching refs:then
569 * that the file is a PNG image), then loop through the file and continue
624 struct timeval now, then;
627 if (gettimeofday(&then, NULL) == 0) {
628 then.tv_sec += loop_interval;
655 if (now.tv_sec < then.tv_sec ||
656 (now.tv_sec == then.tv_sec && now.tv_usec < then.tv_usec))
659 long seconds_to_go = then.tv_sec - now.tv_sec;
685 if (now.tv_sec >= then.tv_sec)
687 seconds_to_go = then.tv_sec - now.tv_sec;
694 /* since difference between "now" and "then" is already
698 usleep_usec = 1000000L*(then.tv_sec - now.tv_sec) +
699 then.tv_usec - now.tv_usec;
1035 Wait for first Expose event to do any drawing, then flush and return.