Lines Matching full:floating
319 #### Floating point unary arithmetic operations
321 * **FNEG**: returns the negation of its floating-point operand.
358 #### Floating-point binary arithmetic operations
360 * **FADD**: returns the sum of its two floating-point operands.
361 * **FSUB**: returns the difference of its two floating-point operands.
362 * **FMUL**: returns the product of its two floating-point operands.
363 * **FEXP**: returns the first floating-point operand raised to the power of the second floating-poi…
364 * **FDIV**: returns the quotient of its two floating-point operands.
365 * **FMOD**: returns the remainder from the division of its two floating-point operands.
399 #### Floating-point binary compare operations
403 * **FCMP**: returns a boolean (`I1`) value based on comparison of its two floating-point operands. …
436 * **SITOFP**: regards value as a signed integer and converts that value to floating-point type.
437 * **UITOFP**: regards value as an unsigned integer and converts that value to floating-point type.
438 * **FPTOSI**: converts a floating-point value to its signed integer equivalent.
439 * **FPTOUI**: converts a floating-point value to its unsigned integer equivalent.