FQUOTIENT        3630 third_party/libxml/src/xmlschemastypes.c #define MODULO(a,b)                     (a - FQUOTIENT(a,b) * b)
FQUOTIENT        3631 third_party/libxml/src/xmlschemastypes.c #define FQUOTIENT_RANGE(a,low,high)     (FQUOTIENT((a-low),(high-low)))
FQUOTIENT        3800 third_party/libxml/src/xmlschemastypes.c     carry  = (long) FQUOTIENT((long)r->sec, 60);
FQUOTIENT        3808 third_party/libxml/src/xmlschemastypes.c     carry  = (long) FQUOTIENT(carry, 60);
FQUOTIENT        3813 third_party/libxml/src/xmlschemastypes.c     carry   = (long)FQUOTIENT(carry, 24);
FQUOTIENT        5851 third_party/libxml/src/xmlschemastypes.c 		year = (unsigned long) FQUOTIENT(labs(val->value.dur.mon), 12);
FQUOTIENT        5854 third_party/libxml/src/xmlschemastypes.c 		day = (unsigned long) FQUOTIENT(fabs(val->value.dur.sec), 86400);
FQUOTIENT        5857 third_party/libxml/src/xmlschemastypes.c 		    hour = (unsigned long) FQUOTIENT(left, 3600);
FQUOTIENT        5860 third_party/libxml/src/xmlschemastypes.c 			min = (unsigned long) FQUOTIENT(left, 60);
FQUOTIENT        1443 third_party/libxslt/libexslt/date.c #define MODULO(a,b)                     ((a - FQUOTIENT(a,b) * b))
FQUOTIENT        1444 third_party/libxslt/libexslt/date.c #define FQUOTIENT_RANGE(a,low,high)     (FQUOTIENT((a-low),(high-low)))
FQUOTIENT        1508 third_party/libxslt/libexslt/date.c     carry  = (long)FQUOTIENT((long)r->sec, 60);
FQUOTIENT        1516 third_party/libxslt/libexslt/date.c     carry  = (long)FQUOTIENT(carry, 60);
FQUOTIENT        1521 third_party/libxslt/libexslt/date.c     carry   = (long)FQUOTIENT(carry, 24);
FQUOTIENT        1712 third_party/libxslt/libexslt/date.c     carry = (long)FQUOTIENT(ret->value.dur.sec, SECS_PER_DAY);