Searched refs:MulWithoutOverflow (Results 1 – 1 of 1) sorted by relevance
/external/v8/src/ |
D | hydrogen-instructions.cc | 97 static int32_t MulWithoutOverflow(int32_t a, int32_t b, bool* overflow) { in MulWithoutOverflow() function 199 int v1 = MulWithoutOverflow(lower_, other->lower(), &may_overflow); in MulAndCheckOverflow() 200 int v2 = MulWithoutOverflow(lower_, other->upper(), &may_overflow); in MulAndCheckOverflow() 201 int v3 = MulWithoutOverflow(upper_, other->lower(), &may_overflow); in MulAndCheckOverflow() 202 int v4 = MulWithoutOverflow(upper_, other->upper(), &may_overflow); in MulAndCheckOverflow()
|