Home | History | Annotate | Download | only in i18n

Lines Matching full:mult

3826   Int   mult;                      /* multiplier  */
3996 mult=1; /* likely multiplier */
4035 mult=powers[padding-(rhsshift*DECDPUN)]; /* .. this by multiplication */
4038 if (diffsign) mult=-mult; /* signs differ */
4072 printf(" :h: %ld %ld\n", rhsshift, mult);
4078 rhsshift, acc, mult)
4208 /* mult=tops1/tops2 -- Good and safe guess at divisor */
4209 /* if mult=0 then mult=1 */
4210 /* this_unit=this_unit+mult */
4260 Int mult; /* multiplier for subtraction */
4556 mult=(Int)(((eInt)*msu1*(DECDPUNMAX+1)+*(msu1-1))/msu2pair);
4561 mult=(Int)(((eInt)*msu1*(DECDPUNMAX+1)+*(msu1-1))/msu2plus);
4563 if (mult==0) mult=1; /* must always be at least 1 */
4565 thisunit=(Unit)(thisunit+mult); /* accumulate */
4572 printf("m=%ld\n", -mult);
4576 &var1[shift], -mult);
5099 /* Each iteration calculates ACC=ACC+MULTAND*MULT */