Searched refs:quot (Results 1 - 4 of 4) sorted by relevance

/libcore/luni/src/main/java/java/math/
H A DDivision.java57 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
[all...]
H A DBigInt.java340 int quot, rem;
343 quot = quotient.bignum;
345 quot = 0;
353 Check(NativeBN.BN_div(quot, rem, dividend.bignum, divisor.bignum));
H A DConversion.java395 long quot;
400 quot = (a / bLong);
409 quot = aPos / bPos;
414 return ((rem << 32) | (quot & 0xFFFFFFFFL));
/libcore/xml/src/main/java/org/kxml2/io/
H A DKXmlSerializer.java95 private final void writeEscaped(String s, int quot) throws IOException { argument
102 if(quot == -1)
117 if (c == quot) {
118 writer.write(c == '"' ? "&quot;" : "&apos;");

Completed in 170 milliseconds