Home | History | Annotate | Download | only in compiler

Lines Matching defs:ovf

975         bool ovf = base::bits::SignedAddOverflow32(m.left().Value(),
977 return ReplaceInt32(index == 0 ? val : ovf);
989 bool ovf = base::bits::SignedSubOverflow32(m.left().Value(),
991 return ReplaceInt32(index == 0 ? val : ovf);
1003 bool ovf = base::bits::SignedMulOverflow32(m.left().Value(),
1005 return ReplaceInt32(index == 0 ? val : ovf);