Searched defs:fQuotient (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dv/xs/
H A DAbstractDateTimeDV.java628 int carry = fQuotient(temp, 60);
636 carry = fQuotient(temp, 24);
658 date.year = date.year + fQuotient(temp, 1, 13);
727 //modulo(a, b) = a - fQuotient(a,b)*b
734 protected int fQuotient(int a, int b) { method in class:AbstractDateTimeDV
736 //fQuotient(a, b) = the greatest integer less than or equal to a/b
747 return (mod(a, b, fQuotient(a, b)) + low);
753 protected int fQuotient(int temp, int low, int high) { method in class:AbstractDateTimeDV
754 //fQuotient(a - low, high - low)
756 return fQuotient(tem
[all...]

Completed in 29 milliseconds