Home
last modified time | relevance | path

Searched refs:FQUOTIENT (Results 1 – 1 of 1) sorted by relevance

/external/libxml2/
Dxmlschemastypes.c3640 #define FQUOTIENT(a,b) (floor(((double)a/(double)b))) macro
3641 #define MODULO(a,b) (a - FQUOTIENT(a,b) * b)
3642 #define FQUOTIENT_RANGE(a,low,high) (FQUOTIENT((a-low),(high-low)))
3811 carry = (long) FQUOTIENT((long)r->sec, 60); in _xmlSchemaDateAdd()
3819 carry = (long) FQUOTIENT(carry, 60); in _xmlSchemaDateAdd()
3824 carry = (long)FQUOTIENT(carry, 24); in _xmlSchemaDateAdd()
5863 year = (unsigned long) FQUOTIENT(labs(val->value.dur.mon), 12); in xmlSchemaGetCanonValue()
5866 day = (unsigned long) FQUOTIENT(fabs(val->value.dur.sec), 86400); in xmlSchemaGetCanonValue()
5869 hour = (unsigned long) FQUOTIENT(left, 3600); in xmlSchemaGetCanonValue()
5872 min = (unsigned long) FQUOTIENT(left, 60); in xmlSchemaGetCanonValue()