Lines Matching full:mult
3841 Int mult; /* multiplier */
4011 mult=1; /* likely multiplier */
4050 mult=powers[padding-(rhsshift*DECDPUN)]; /* .. this by multiplication */
4053 if (diffsign) mult=-mult; /* signs differ */
4087 printf(" :h: %ld %ld\n", rhsshift, mult);
4095 rhsshift, acc, mult)
4225 /* mult=tops1/tops2 -- Good and safe guess at divisor */
4226 /* if mult=0 then mult=1 */
4227 /* this_unit=this_unit+mult */
4277 Int mult; /* multiplier for subtraction */
4573 mult=(Int)(((eInt)*msu1*(DECDPUNMAX+1)+*(msu1-1))/msu2pair);
4578 mult=(Int)(((eInt)*msu1*(DECDPUNMAX+1)+*(msu1-1))/msu2plus);
4580 if (mult==0) mult=1; /* must always be at least 1 */
4582 thisunit=(Unit)(thisunit+mult); /* accumulate */
4589 printf("m=%ld\n", -mult);
4593 &var1[shift], -mult);
5120 /* Each iteration calculates ACC=ACC+MULTAND*MULT */