Lines Matching defs:when
238 * FIXME: The converse is true when implementing a sixel rendering
469 times_up(struct timespec *when, struct timespec *increment)
474 if (when->tv_sec < now.tv_sec
475 || (when->tv_sec == now.tv_sec
476 && when->tv_nsec < now.tv_nsec)) {
480 when->tv_sec += now.tv_sec + increment->tv_sec;
481 when->tv_nsec += now.tv_nsec + increment->tv_nsec;
482 while (when->tv_nsec >= TS_SEC) {
483 when->tv_sec += 1;
484 when->tv_nsec -= TS_SEC;
525 /* FIXME: Image should be cropped to the text cells when xtermmargin>0 */
671 /* FIXME: Declared size should clear & scroll rectangle when no raster attributes */