Lines Matching full:its
129 This state has two possible transitions (branches) based on its input value.
142 This state has multiple possible transitions (branches) based on its input value.
308 * **FNEG**: returns the negation of its floating-point operand.
321 * **ADD**: returns the sum of its two integer operands.
322 * **SUB**: returns the difference of its two integer operands. It is used to implement the "-" unar…
323 * **MUL**: returns the product of its two integer operands.
325 * **SDIV**: returns the signed quotient of its two integer operands.
326 * **SREM**: returns the remainder from the signed division of its two integer operands.
327 * **UDIV**: returns the unsigned quotient of its two integer operands.
328 * **UREM**: returns the remainder from the unsigned division of its two integer operands.
329 * **AND**: returns the bitwise logical and of its two operands.
330 * **XOR**: returns the bitwise logical exclusive or of its two operands. It is used to implement th…
331 * **OR**: returns the bitwise logical inclusive or of its two operands.
347 * **FADD**: returns the sum of its two floating-point operands.
348 * **FSUB**: returns the difference of its two floating-point operands.
349 * **FMUL**: returns the product of its two floating-point operands.
351 * **FDIV**: returns the quotient of its two floating-point operands.
352 * **FMOD**: returns the remainder from the division of its two floating-point operands.
365 * **ICMP**: returns a boolean (`I1`) value based on comparison of its two integer operands. Conditi…
390 * **FCMP**: returns a boolean (`I1`) value based on comparison of its two floating-point operands. …
420 * **TRUNC**: truncates its integer operand.
421 * **ZEXT**: zero extends its integer operand.
422 * **SEXT**: sign extends its integer operand.
425 * **FPTOSI**: converts a floating-point value to its signed integer equivalent.
426 * **FPTOUI**: converts a floating-point value to its unsigned integer equivalent.
470 …urrently executing function, to be automatically released when this function returns to its caller.