Lines Matching defs:value
939 int32_t value = -static_cast<int32_t>(uvalue);
940 current_function_builder_->EmitI32Const(value);
943 FAIL("Expected variable initial value");
991 int32_t value = static_cast<int32_t>(uvalue);
993 value = -value;
995 float fvalue = static_cast<float>(value);
999 FAIL("Expected variable initial value");
1017 int32_t value = static_cast<int32_t>(uvalue);
1018 current_function_builder_->EmitI32Const(value);
1021 FAIL("Expected variable initial value");
1318 FAIL("Expected signed for switch value");
1371 int32_t value = static_cast<int32_t>(uvalue);
1372 DCHECK_IMPLIES(negate && uvalue == 0x80000000, value == kMinInt);
1373 if (negate && value != kMinInt) {
1374 value = -value;
1519 AsmType* value;
1520 RECURSEn(value = AssignmentExpression());
1521 if (!value->IsA(ret)) {
1524 ret = value;
1526 value->IsA(AsmType::DoubleQ())) {
1532 value->IsA(AsmType::FloatQ())) {
1562 AsmType* value;
1563 RECURSEn(value = AssignmentExpression());
1564 if (!value->IsA(ret)) {
1684 int32_t value = static_cast<int32_t>(uvalue);
1685 current_function_builder_->EmitI32Const(value);
1694 int32_t value = -static_cast<int32_t>(uvalue);
1695 current_function_builder_->EmitI32Const(value);
1723 int32_t value = -static_cast<int32_t>(uvalue);
1724 current_function_builder_->EmitI32Const(value);
1736 int32_t value = static_cast<int32_t>(uvalue);
1737 current_function_builder_->EmitI32Const(value);
2560 int32_t value = static_cast<int32_t>(uvalue);
2561 DCHECK_IMPLIES(negate && uvalue == 0x80000000, value == kMinInt);
2562 if (negate && value != kMinInt) {
2563 value = -value;
2565 cases->push_back(value);