MODULO 3632 third_party/libxml/src/xmlschemastypes.c #define MODULO_RANGE(a,low,high) ((MODULO((a-low),(high-low)))+low) MODULO 3802 third_party/libxml/src/xmlschemastypes.c r->sec = MODULO(r->sec, 60.0); MODULO 3807 third_party/libxml/src/xmlschemastypes.c r->min = (unsigned int) MODULO(carry, 60); MODULO 3812 third_party/libxml/src/xmlschemastypes.c r->hour = (unsigned int) MODULO(carry, 24); MODULO 1445 third_party/libxslt/libexslt/date.c #define MODULO_RANGE(a,low,high) ((MODULO((a-low),(high-low)))+low) MODULO 1510 third_party/libxslt/libexslt/date.c r->sec = MODULO(r->sec, 60.0); MODULO 1515 third_party/libxslt/libexslt/date.c r->min = (unsigned int)MODULO(carry, 60); MODULO 1520 third_party/libxslt/libexslt/date.c r->hour = (unsigned int)MODULO(carry, 24); MODULO 1714 third_party/libxslt/libexslt/date.c ret->value.dur.sec = MODULO(ret->value.dur.sec, SECS_PER_DAY);