Home | History | Annotate | Download | only in i18n

Lines Matching refs:quot

6656       uInt quot=QUOT10(*up, cut);
6657 if ((*up-quot*powers[cut])!=0) break; /* found non-0 digit */
6748 uInt quot=QUOT10(*source, cut);
6749 uInt rem=*source-quot*powers[cut];
6750 next+=quot;
6784 Int quot, rem; /* for division */
6804 quot=QUOT10(*up, cut);
6806 quot=*up/powers[cut];
6809 *target=(Unit)quot;
6813 quot=*up;
6815 quot=QUOT10(quot, cut);
6816 rem=*up-quot*powers[cut];
6818 rem=quot%powers[cut];
6819 quot=quot/powers[cut];
7017 uInt quot, rem; /* for divisions */
7018 if (cut==0) quot=*up; /* is at bottom of unit */
7022 quot=QUOT10(*up, cut);
7023 rem=*up-quot*powers[cut];
7026 quot=*up/powers[cut];
7030 /* discard digit is now at bottom of quot */
7032 temp=(quot*6554)>>16; /* fast /10 */
7034 discard1=quot-X10(temp);
7035 quot=temp;
7037 discard1=quot%10;
7038 quot=quot/10;
7046 /* quot holds the uncut high-order digits for the current unit */
7056 *target=(Unit)quot;
7060 quot=*up;
7062 quot=QUOT10(quot, cut);
7063 rem=*up-quot*powers[cut];
7065 rem=quot%powers[cut];
7066 quot=quot/powers[cut];