Home | History | Annotate | Download | only in smooth

Lines Matching refs:quotient

316   /* Compute `dividend / divisor' and return both its quotient and     */
319 #define FT_DIV_MOD( type, dividend, divisor, quotient, remainder ) \
321 (quotient) = (type)( (dividend) / (divisor) ); \
325 (quotient)--; \
337 #define FT_DIV_MOD( type, dividend, divisor, quotient, remainder ) \
339 (quotient) = (type)( (dividend) / (divisor) ); \
340 (remainder) = (type)( (dividend) - (quotient) * (divisor) ); \
343 (quotient)--; \