Searched refs:c_right (Results 1 - 3 of 3) sorted by relevance

/external/v8/src/
H A Dhydrogen-instructions.cc2106 HConstant* c_right = HConstant::cast(right); \
2107 if ((c_left->HasNumberValue() && c_right->HasNumberValue())) { \
2108 double double_res = c_left->DoubleValue() op c_right->DoubleValue(); \
2132 HConstant* c_right = HConstant::cast(right); local
2133 if (c_left->HasInteger32Value() && c_right->HasInteger32Value()) {
2135 int32_t divisor = c_right->Integer32Value();
2156 HConstant* c_right = HConstant::cast(right); local
2157 if ((c_left->HasNumberValue() && c_right->HasNumberValue())) {
2158 if (c_right->DoubleValue() != 0) {
2159 double double_res = c_left->DoubleValue() / c_right
2178 HConstant* c_right = HConstant::cast(right); local
2234 HConstant* c_right = HConstant::cast(right); local
[all...]
/external/chromium_org/v8/src/
H A Dhydrogen-instructions.cc3787 HConstant* c_right = HConstant::cast(right); \
3788 if ((c_left->HasNumberValue() && c_right->HasNumberValue())) { \
3789 double double_res = c_left->DoubleValue() op c_right->DoubleValue(); \
3813 HConstant* c_right = HConstant::cast(right); local
3815 if (c_left->HasStringValue() && c_right->HasStringValue()) {
3817 c_left->StringValue(), c_right->StringValue());
3917 HConstant* c_right = HConstant::cast(right); local
3918 if (c_left->HasNumberValue() && c_right->HasNumberValue()) {
3920 c_right->DoubleValue());
3932 HConstant* c_right local
3967 HConstant* c_right = HConstant::cast(right); local
3992 HConstant* c_right = HConstant::cast(right); local
4015 HConstant* c_right = HConstant::cast(right); local
4067 HConstant* c_right = HConstant::cast(right); local
[all...]
H A Dhydrogen.cc8861 HConstant* c_right = HConstant::cast(right); local
8862 if (c_right->HasInteger32Value()) {
8863 ASSERT_EQ(fixed_right_arg.value, c_right->Integer32Value());

Completed in 2271 milliseconds