Lines Matching refs:c_right

4053     HConstant* c_right = HConstant::cast(right);                               \
4054 if ((c_left->HasNumberValue() && c_right->HasNumberValue())) { \
4055 double double_res = c_left->DoubleValue() op c_right->DoubleValue(); \
4081 HConstant* c_right = HConstant::cast(right);
4083 if (c_left->HasStringValue() && c_right->HasStringValue()) {
4085 Handle<String> right_string = c_right->StringValue();
4089 c_left->StringValue(), c_right->StringValue());
4245 HConstant* c_right = HConstant::cast(right);
4246 if (c_left->HasNumberValue() && c_right->HasNumberValue()) {
4248 c_right->DoubleValue());
4261 HConstant* c_right = HConstant::cast(right);
4262 if (c_left->HasNumberValue() && c_right->HasNumberValue()) {
4264 double d_right = c_right->DoubleValue();
4296 HConstant* c_right = HConstant::cast(right);
4297 if (c_left->HasInteger32Value() && c_right->HasInteger32Value()) {
4299 int32_t divisor = c_right->Integer32Value();
4321 HConstant* c_right = HConstant::cast(right);
4322 if ((c_left->HasNumberValue() && c_right->HasNumberValue())) {
4323 if (c_right->DoubleValue() != 0) {
4324 double double_res = c_left->DoubleValue() / c_right->DoubleValue();
4331 Double(c_right->DoubleValue()).Sign(); // Right could be -0.
4344 HConstant* c_right = HConstant::cast(right);
4345 if ((c_left->HasNumberValue() && c_right->HasNumberValue())) {
4348 int32_t v_right = c_right->NumberValueAsInteger32();
4375 HConstant* c_right = HConstant::cast(right); \
4376 if ((c_left->HasNumberValue() && c_right->HasNumberValue())) { \
4385 c_left->NumberValueAsInteger32() >> (c_right->NumberValueAsInteger32() & 0x1f))
4387 c_left->NumberValueAsInteger32() << (c_right->NumberValueAsInteger32() & 0x1f))
4396 HConstant* c_right = HConstant::cast(right);
4397 if ((c_left->HasNumberValue() && c_right->HasNumberValue())) {
4399 int32_t right_val = c_right->NumberValueAsInteger32() & 0x1f;