Lines Matching refs:c2
675 (** [const_add c1 c2] returns the constant sum of two constants.
679 (** [const_nsw_add c1 c2] returns the constant sum of two constants with no
684 (** [const_nuw_add c1 c2] returns the constant sum of two constants with no
689 (** [const_fadd c1 c2] returns the constant sum of two constant floats.
693 (** [const_sub c1 c2] returns the constant difference, [c1 - c2], of two
697 (** [const_nsw_sub c1 c2] returns the constant difference of two constants with
702 (** [const_nuw_sub c1 c2] returns the constant difference of two constants with
707 (** [const_fsub c1 c2] returns the constant difference, [c1 - c2], of two
711 (** [const_mul c1 c2] returns the constant product of two constants.
715 (** [const_nsw_mul c1 c2] returns the constant product of two constants with
720 (** [const_nuw_mul c1 c2] returns the constant product of two constants with
725 (** [const_fmul c1 c2] returns the constant product of two constants floats.
729 (** [const_udiv c1 c2] returns the constant quotient [c1 / c2] of two unsigned
734 (** [const_sdiv c1 c2] returns the constant quotient [c1 / c2] of two signed
739 (** [const_exact_sdiv c1 c2] returns the constant quotient [c1 / c2] of two
744 (** [const_fdiv c1 c2] returns the constant quotient [c1 / c2] of two floating
749 (** [const_urem c1 c2] returns the constant remainder [c1 MOD c2] of two
754 (** [const_srem c1 c2] returns the constant remainder [c1 MOD c2] of two
759 (** [const_frem c1 c2] returns the constant remainder [c1 MOD c2] of two
764 (** [const_and c1 c2] returns the constant bitwise [AND] of two integer
769 (** [const_or c1 c2] returns the constant bitwise [OR] of two integer
774 (** [const_xor c1 c2] returns the constant bitwise [XOR] of two integer
779 (** [const_icmp pred c1 c2] returns the constant comparison of two integer
780 constants, [c1 pred c2].
785 (** [const_fcmp pred c1 c2] returns the constant comparison of two floating
786 point constants, [c1 pred c2].
791 (** [const_shl c1 c2] returns the constant integer [c1] left-shifted by the
792 constant integer [c2].
796 (** [const_lshr c1 c2] returns the constant integer [c1] right-shifted by the
797 constant integer [c2] with zero extension.
801 (** [const_ashr c1 c2] returns the constant integer [c1] right-shifted by the
802 constant integer [c2] with sign extension.