Home | History | Annotate | Download | only in math

Lines Matching refs:quot

57             long quot;
59 quot = (temp / bLong);
68 quot = aPos / bPos;
74 if (quot <= rem) {
75 rem -= quot;
77 if (quot - rem <= bLong) {
78 rem += bLong - quot;
79 quot -= 1;
81 rem += (bLong << 1) - quot;
82 quot -= 2;
87 quotient[i] = (int) (quot & 0xffffffffL);