remquof Function

Computes the same remainder as _X REM _Y. Also calculates the lower 23 bits of the integral quotient _X/_Y, and gives that value the same sign as _X/_Y. It stores this

inline float remquof(
   float _X,
   float _Y,
   _Out_ int * _Quo
) restrict(amp);

Parameters

  • _X
    Floating-point value

  • _Y
    Floating-point value

  • _Quo
    Pointer to an integer value

Return Value

Returns the remainder

Requirements

Header: amp_math.h

Namespace: Concurrency::precise_math

See Also

Reference

Concurrency::precise_math Namespace