Description: Adds two single precision floating-point values using round-down mode.
Calling Interface:
float fAdds_rd(float x, float y)
Description: Adds two single precision floating-point values using round-to-nearest-even mode.
Calling Interface:
float fAdds_rn(float x, float y)
Description: Adds two single precision floating-point values using round-up mode.
Calling Interface:
float fAdds_ru(float x, float y)
Description: Adds two single precision floating-point values using round-towards-zero mode.
Calling Interface:
float fAdds_rz(float x, float y)
Description: Subtracts two single precision floating-point values using round-down mode.
Calling Interface:
float fsub_rd(float x, float y)
Description: Subtracts two single precision floating-point values using round-to-nearest-even mode.
Calling Interface:
float fsub_rn(float x, float y)
Description: Subtracts two single precision floating-point values using round-up mode.
Calling Interface:
float fsub_ru(float x, float y)
Description: Subtracts two single precision floating-point values using round-towards-zero mode.
Calling Interface:
float fsub_rz(float x, float y)
Description: Divides two single precision floating-point values using round-down mode.
Calling Interface:
float fdiv_rd(float x, float y)
Description: Divides two single precision floating-point values using round-to-nearest-even mode.
Calling Interface:
float fdiv_rn(float x, float y)
Description: Divides two single precision floating-point values using round-up mode.
Calling Interface:
float fdiv_ru(float x, float y)
Description: Divides two single precision floating-point values using round-towards-zero mode.
Calling Interface:
float fdiv_rz(float x, float y)
Description: Multiplies two single precision floating-point values using round-down mode.
Calling Interface:
float fmul_rd(float x, float y)
Description: Multiplies two single precision floating-point values using round-to-nearest-even mode.
Calling Interface:
float fmul_rn(float x, float y)
Description: Multiplies two single precision floating-point values using round-up mode.
Calling Interface:
float fmul_ru(float x, float y)
Description: Multiplies two single precision floating-point values using round-towards-zero mode.
Calling Interface:
float fmul_rz(float x, float y)
Description: Returns x * y + z using round-down mode.
Calling Interface:
float fmaf_rd(float x, float y, float z)
Description: Returns x * y + z using round-to-nearest-even mode.
Calling Interface:
float fmaf_rn(float x, float y, float z)
Description: Returns x * y + z using round-up mode.
Calling Interface:
float fmaf_ru(float x, float y, float z)
Description: Returns x * y + z using round-towards-zero mode.
Calling Interface:
float fmaf_rz(float x, float y, float z)
Description: Computes the reciprocal of x using round-down mode.
Calling Interface:
float frcp_rd(float x)
Description: Computes the reciprocal of x using round-to-nearest-even mode.
Calling Interface:
float frcp_rn(float x)
Description: Computes the reciprocal of x using round-up mode.
Calling Interface:
float frcp_ru(float x)
Description: Computes the reciprocal of x using round-towards-zero mode.
Calling Interface:
float frcp_rz(float x)
Description: Computes the square root of x using round-down mode.
Calling Interface:
float fsqrt_rd(float x)
Description: Computes the square root of x using round-to-nearest-even mode.
Calling Interface:
float fsqrt_rn(float x)
Description: Computes the square root of x using round-up mode.
Calling Interface:
float fsqrt_ru(float x)
Description: Computes the square root of x using round-towards-zero mode.
Calling Interface:
float fsqrt_rz(float x)
Description: Adds two double precision floating-point values using round-down mode.
Calling Interface:
double dAdds_rd(double x, double y)
Description: Adds two double precision floating-point values using round-to-nearest-even mode.
Calling Interface:
double dAdds_rn(double x, double y)
Description: Adds two double precision floating-point values using round-up mode.
Calling Interface:
double dAdds_ru(double x, double y)
Description: Adds two double precision floating-point values using round-towards-zero mode.
Calling Interface:
double dAdds_rz(double x, double y)
Description: Subtracts two double precision floating-point values using round-down mode.
Calling Interface:
double dsub_rd(double x, double y)
Description: Subtracts two double precision floating-point values using round-to-nearest-even mode.
Calling Interface:
double dsub_rn(double x, double y)
Description: Subtracts two double precision floating-point values using round-up mode.
Calling Interface:
double dsub_ru(double x, double y)
Description: Subtracts two double precision floating-point values using round-towards-zero mode.
Calling Interface:
double dsub_rz(double x, double y)
Description: Divides two double precision floating-point values using round-down mode.
Calling Interface:
double ddiv_rd(double x, double y)
Description: Divides two double precision floating-point values using round-to-nearest-even mode.
Calling Interface:
double ddiv_rn(double x, double y)
Description: Divides two double precision floating-point values using round-up mode.
Calling Interface:
double ddiv_ru(double x, double y)
Description: Divides two double precision floating-point values using round-towards-zero mode.
Calling Interface:
double ddiv_rz(double x, double y)
Description: Multiplies two double precision floating-point values using round-down mode.
Calling Interface:
double dmul_rd(double x, double y)
Description: Multiplies two double precision floating-point values using round-to-nearest-even mode.
Calling Interface:
double dmul_rn(double x, double y)
Description: Multiplies two double precision floating-point values using round-up mode.
Calling Interface:
double dmul_ru(double x, double y)
Description: Multiplies two double precision floating-point values using round-towards-zero mode.
Calling Interface:
double dmul_rz(double x, double y)
Description: Returns x * y + z using round-down mode.
Calling Interface:
double fma_rd(double x, double y, double z)
Description: Returns x * y + z using round-to-nearest-even mode.
Calling Interface:
double fma_rn(double x, double y, double z)
Description: Returns x * y + z using round-up mode.
Calling Interface:
double fma_ru(double x, double y, double z)
Description: Returns x * y + z using round-towards-zero mode.
Calling Interface:
double fma_rz(double x, double y, double z)
Description: Computes the reciprocal of x using round-down mode.
Calling Interface:
double drcp_rd(double x)
Description: Computes the reciprocal of x using round-to-nearest-even mode.
Calling Interface:
double drcp_rn(double x)
Description: Computes the reciprocal of x using round-up mode.
Calling Interface:
double drcp_ru(double x)
Description: Computes the reciprocal of x using round-towards-zero mode.
Calling Interface:
double drcp_rz(double x)
Description: Computes the square root of x using round-down mode.
Calling Interface:
double dsqrt_rd(double x)
Description: Computes the square root of x using round-to-nearest-even mode.
Calling Interface:
double dsqrt_rn(double x)
Description: Computes the square root of x using round-up mode.
Calling Interface:
double dsqrt_ru(double x)
Description: Computes the square root of x using round-towards-zero mode.
Calling Interface:
double dsqrt_rz(double x)