Lines Matching defs:CINT
916 const APInt *CINT = nullptr;
918 match(opr1, m_APIntAllowPoison(CINT));
921 int ci_opr1 = (CINT ? (int)CINT->getSExtValue() : 0x1111111);
923 if ((CF && CF->isZero()) || (CINT && ci_opr1 == 0)) {
933 if ((CF && CF->isExactlyValue(1.0)) || (CINT && ci_opr1 == 1)) {
939 if ((CF && CF->isExactlyValue(2.0)) || (CINT && ci_opr1 == 2)) {
947 if ((CF && CF->isExactlyValue(-1.0)) || (CINT && ci_opr1 == -1)) {
1157 const APInt *CINT = nullptr;
1158 if (!match(opr1, m_APIntAllowPoison(CINT)))
1163 int ci_opr1 = (int)CINT->getSExtValue();