Searched refs:FQUOTIENT (Results 1 – 1 of 1) sorted by relevance
/reactos/sdk/lib/3rdparty/libxml2/ |
H A D | xmlschemastypes.c | 3769 #define FQUOTIENT(a,b) (floor(((double)a/(double)b))) macro 3770 #define MODULO(a,b) (a - FQUOTIENT(a,b) * b) 3771 #define FQUOTIENT_RANGE(a,low,high) (FQUOTIENT((a-low),(high-low))) 3940 carry = (long) FQUOTIENT((long)r->sec, 60); in _xmlSchemaDateAdd() 3948 carry = (long) FQUOTIENT(carry, 60); in _xmlSchemaDateAdd() 3953 carry = (long)FQUOTIENT(carry, 24); in _xmlSchemaDateAdd() 6014 year = (unsigned long) FQUOTIENT(labs(val->value.dur.mon), 12); in xmlSchemaGetCanonValue() 6017 day = (unsigned long) FQUOTIENT(fabs(val->value.dur.sec), 86400); in xmlSchemaGetCanonValue() 6020 hour = (unsigned long) FQUOTIENT(left, 3600); in xmlSchemaGetCanonValue() 6023 min = (unsigned long) FQUOTIENT(left, 60); in xmlSchemaGetCanonValue()
|