Lines Matching defs:utmp
420 CARD32 utmp = 0;
468 utmp = xmin - x1_orig;
469 if (utmp <= 32767) { /* clip based on near endpt */
478 utmp = x2_orig - xmin;
490 utmp = ymin - y1_orig;
491 if (utmp <= 32767) { /* clip based on near endpt */
500 utmp = y2_orig - ymin;
512 utmp = x1_orig - xmax;
513 if (utmp <= 32767) { /* clip based on near endpt */
524 * utmp == 32768, this overflow code isn't
529 utmp = xmax - x2_orig;
541 utmp = y1_orig - ymax;
542 if (utmp <= 32767) { /* clip based on near endpt */
553 * utmp == 32768, this overflow code isn't
558 utmp = ymax - y2_orig;
572 utmp <<= 1; /* utmp = 2N or 2M */
574 utmp = (utmp * adx);
576 utmp = (utmp * ady);
579 utmp -= adx;
581 utmp += adx;
583 utmp -= ady;
585 utmp += ady;
587 utmp += bias - 1;
589 utmp -= bias;
591 utmp /= (adx << 1);
593 utmp /= (ady << 1);
595 utmp++;
598 utmp = -utmp;
601 x1 = anchorval + utmp;
603 y1 = anchorval + utmp;