Home | History | Annotate | Download | only in gregbook

Lines Matching defs:then

590      * that the file is a PNG image), then loop through the file and continue
645 struct timeval now, then;
648 if (gettimeofday(&then, NULL) == 0) {
649 then.tv_sec += loop_interval;
676 if (now.tv_sec < then.tv_sec ||
677 (now.tv_sec == then.tv_sec && now.tv_usec < then.tv_usec))
680 long seconds_to_go = then.tv_sec - now.tv_sec;
706 if (now.tv_sec >= then.tv_sec)
708 seconds_to_go = then.tv_sec - now.tv_sec;
715 /* since difference between "now" and "then" is already
719 usleep_usec = 1000000L*(then.tv_sec - now.tv_sec) +
720 then.tv_usec - now.tv_usec;
1055 Wait for first Expose event to do any drawing, then flush and return.