Lines Matching defs:uvalue
451 uint32_t uvalue = 0;
455 } else if (CheckForUnsigned(&uvalue)) {
456 if (uvalue > 0x7FFFFFFF) {
461 kWasmI32, WasmInitExpr(static_cast<int32_t>(uvalue)));
466 } else if (CheckForUnsigned(&uvalue)) {
467 if (uvalue > 0x7FFFFFFF) {
470 if (uvalue == 0) {
477 kWasmI32, WasmInitExpr(-static_cast<int32_t>(uvalue)));
524 uint32_t uvalue = 0;
531 } else if (CheckForUnsigned(&uvalue)) {
532 dvalue = uvalue;
922 uint32_t uvalue = 0;
931 } else if (CheckForUnsigned(&uvalue)) {
932 if (uvalue > 0x7FFFFFFF) {
939 int32_t value = -static_cast<int32_t>(uvalue);
983 } else if (CheckForUnsigned(&uvalue)) {
984 if (uvalue > 0x7FFFFFFF) {
991 int32_t value = static_cast<int32_t>(uvalue);
1012 } else if (CheckForUnsigned(&uvalue)) {
1017 int32_t value = static_cast<int32_t>(uvalue);
1363 uint32_t uvalue;
1364 if (!CheckForUnsigned(&uvalue)) {
1368 if ((negate && uvalue > 0x80000000) || (!negate && uvalue > 0x7FFFFFFF)) {
1371 int32_t value = static_cast<int32_t>(uvalue);
1372 DCHECK_IMPLIES(negate && uvalue == 0x80000000, value == kMinInt);
1425 uint32_t uvalue = 0;
1429 } else if (CheckForUnsigned(&uvalue)) {
1430 if (uvalue <= 0x7FFFFFFF) {
1431 current_function_builder_->EmitI32Const(static_cast<int32_t>(uvalue));
1434 current_function_builder_->EmitI32Const(static_cast<int32_t>(uvalue));
1589 uint32_t uvalue;
1590 if (CheckForUnsigned(&uvalue)) {
1591 if (uvalue == 0) {
1594 } else if (uvalue <= 0x80000000) {
1597 base::NegateWithWraparound(static_cast<int32_t>(uvalue)));
1676 uint32_t uvalue;
1677 if (CheckForUnsignedBelow(0x100000, &uvalue)) {
1684 int32_t value = static_cast<int32_t>(uvalue);
1693 if (!PeekForZero() && CheckForUnsignedBelow(0x100000, &uvalue)) {
1694 int32_t value = -static_cast<int32_t>(uvalue);
1716 if (!PeekForZero() && CheckForUnsigned(&uvalue)) {
1717 if (uvalue >= 0x100000) {
1723 int32_t value = -static_cast<int32_t>(uvalue);
1729 } else if (CheckForUnsigned(&uvalue)) {
1730 if (uvalue >= 0x100000) {
1736 int32_t value = static_cast<int32_t>(uvalue);
2554 uint32_t uvalue;
2557 if (!CheckForUnsigned(&uvalue)) {
2560 int32_t value = static_cast<int32_t>(uvalue);
2561 DCHECK_IMPLIES(negate && uvalue == 0x80000000, value == kMinInt);