Home | History | Annotate | Download | only in libdecnumber

Lines Matching refs:uj

722   uInt	 *ui, *uj;		   /* work */
751 for (uj=bufr+MULOPLEN-1; uj>=bufr; uj--) printf(" %08lx", (LI)*uj);
780 for (uj=bufl; uj<bufl+MULOPLEN; uj++, pl++) { /* over each item in lhs */
781 /* if (*uj==0) continue; // product cannot affect result */
782 *pl+=((uLong)*ui)*(*uj);
783 } /* uj */
892 for (uj=bufl;; uj++, pa++) { /* over each item in lhs */
893 LONGMUL32HI(hi, *ui, *uj); /* calculate product of digits */
894 lo=(*ui)*(*uj); /* .. */
897 if (uj==bufl+MULOPLEN-1) break;