Home | History | Annotate | Download | only in libdecnumber

Lines Matching defs:est

475 	    /* the estimate is now in carry; now calculate hi:lo-est*10**9; */
702 /* (est) can exceed 32 bits. */
796 /* est=magic*hop/2**B // quotient estimate (may be low by 1) */
840 uInt est; /* cannot exceed 4E+9 */
844 est=(uInt)(((uLong)hop*MULMAGIC)>>MULSHIFTB);
845 /* the estimate is now in est; now calculate hi:lo-est*10**9; */
848 lo=(uInt)(*pl-((uLong)est*MULTBASE)); /* low word of result */
852 est++;
857 est++;
861 /* finally place lo as the new coefficient 'digit' and add est to */
865 *(pl+1)+=est;
911 /* est=magic*hop/2**B // quotient estimate (may be low by 1) */
968 /* the estimate is now in estlo; now calculate hi:lo-est*10**9; */
998 /* finally place lo as the new accumulator digit and add est to */