Lines Matching refs:c_right
3316 HConstant* c_right = HConstant::cast(right); \
3317 if ((c_left->HasNumberValue() && c_right->HasNumberValue())) { \
3318 double double_res = c_left->DoubleValue() op c_right->DoubleValue(); \
3341 HConstant* c_right = HConstant::cast(right); in New() local
3343 if (c_left->HasStringValue() && c_right->HasStringValue()) { in New()
3345 Handle<String> right_string = c_right->StringValue(); in New()
3349 c_left->StringValue(), c_right->StringValue()); in New()
3514 HConstant* c_right = HConstant::cast(right); in New() local
3515 if (c_left->HasNumberValue() && c_right->HasNumberValue()) { in New()
3517 power_helper(isolate, c_left->DoubleValue(), c_right->DoubleValue()); in New()
3531 HConstant* c_right = HConstant::cast(right); in New() local
3532 if (c_left->HasNumberValue() && c_right->HasNumberValue()) { in New()
3534 double d_right = c_right->DoubleValue(); in New()
3563 HConstant* c_right = HConstant::cast(right); in New() local
3564 if (c_left->HasInteger32Value() && c_right->HasInteger32Value()) { in New()
3566 int32_t divisor = c_right->Integer32Value(); in New()
3587 HConstant* c_right = HConstant::cast(right); in New() local
3588 if ((c_left->HasNumberValue() && c_right->HasNumberValue())) { in New()
3590 std::isnan(c_right->DoubleValue())) { in New()
3592 } else if (c_right->DoubleValue() != 0) { in New()
3593 double double_res = c_left->DoubleValue() / c_right->DoubleValue(); in New()
3600 Double(c_right->DoubleValue()).Sign(); // Right could be -0. in New()
3614 HConstant* c_right = HConstant::cast(right); in New() local
3615 if ((c_left->HasNumberValue() && c_right->HasNumberValue())) { in New()
3618 int32_t v_right = c_right->NumberValueAsInteger32(); in New()
3644 HConstant* c_right = HConstant::cast(right); \
3645 if ((c_left->HasNumberValue() && c_right->HasNumberValue())) { \
3653 c_left->NumberValueAsInteger32() >> (c_right->NumberValueAsInteger32() & 0x1f))
3655 c_left->NumberValueAsInteger32() << (c_right->NumberValueAsInteger32() & 0x1f))
3663 HConstant* c_right = HConstant::cast(right); in New() local
3664 if ((c_left->HasNumberValue() && c_right->HasNumberValue())) { in New()
3666 int32_t right_val = c_right->NumberValueAsInteger32() & 0x1f; in New()