Lines Matching defs:utmp
422 CARD32 utmp = 0;
476 utmp = xmin - x1_orig;
477 if (utmp <= 32767) /* clip based on near endpt */
487 utmp = x2_orig - xmin;
500 utmp = ymin - y1_orig;
501 if (utmp <= 32767) /* clip based on near endpt */
511 utmp = y2_orig - ymin;
524 utmp = x1_orig - xmax;
525 if (utmp <= 32767) /* clip based on near endpt */
537 * utmp == 32768, this overflow code isn't
542 utmp = xmax - x2_orig;
555 utmp = y1_orig - ymax;
556 if (utmp <= 32767) /* clip based on near endpt */
568 * utmp == 32768, this overflow code isn't
573 utmp = ymax - y2_orig;
587 utmp <<= 1; /* utmp = 2N or 2M */
589 utmp = (utmp * adx);
591 utmp = (utmp * ady);
594 utmp -= adx;
596 utmp += adx;
599 utmp -= ady;
601 utmp += ady;
603 utmp += bias - 1;
605 utmp -= bias;
607 utmp /= (adx << 1);
609 utmp /= (ady << 1);
611 utmp++;
614 utmp = -utmp;
617 x1 = anchorval + utmp;
619 y1 = anchorval + utmp;