Home | History | Annotate | Download | only in src

Lines Matching defs:dividend

1273 static HValue* SimplifiedDividendForMathFloorOfDiv(HValue* dividend) {
1275 if (dividend->representation().IsInteger32()) {
1276 return dividend;
1279 if (dividend->IsChange() &&
1280 HChange::cast(dividend)->from().IsInteger32()) {
1281 return HChange::cast(dividend)->value();
3769 int32_t dividend = c_left->Integer32Value();
3771 if (dividend == kMinInt && divisor == -1) {
3775 int32_t res = dividend % divisor;
3776 if ((res == 0) && (dividend < 0)) {