Lines Matching refs:high
4108 uint64_t ToInt64(uint32_t low, uint32_t high) {
4109 return (static_cast<uint64_t>(high) << 32) | static_cast<uint64_t>(low);
4118 uint32_t high;
4126 m.StoreToPointer(&high, MachineRepresentation::kWord32,
4136 CHECK_EQ(*i + *j, ToInt64(low, high));
4145 uint32_t high;
4153 m.StoreToPointer(&high, MachineRepresentation::kWord32,
4162 ToInt64(low, high));
4181 uint32_t high;
4189 m.StoreToPointer(&high, MachineRepresentation::kWord32,
4199 CHECK_EQ(*i - *j, ToInt64(low, high));
4208 uint32_t high;
4216 m.StoreToPointer(&high, MachineRepresentation::kWord32,
4225 ToInt64(low, high));
4244 uint32_t high;
4252 m.StoreToPointer(&high, MachineRepresentation::kWord32,
4262 CHECK_EQ(*i * *j, ToInt64(low, high));
4271 uint32_t high;
4279 m.StoreToPointer(&high, MachineRepresentation::kWord32,
4288 ToInt64(low, high));
4307 uint32_t high;
4315 m.StoreToPointer(&high, MachineRepresentation::kWord32,
4323 CHECK_EQ(*i << j, ToInt64(low, high));
4332 uint32_t high;
4340 m.StoreToPointer(&high, MachineRepresentation::kWord32,
4348 CHECK_EQ(ToInt64(inputs[a], inputs[b]) << j, ToInt64(low, high));
4364 uint32_t high;
4372 m.StoreToPointer(&high, MachineRepresentation::kWord32,
4380 CHECK_EQ(*i >> j, ToInt64(low, high));
4389 uint32_t high;
4397 m.StoreToPointer(&high, MachineRepresentation::kWord32,
4405 CHECK_EQ(*i >> j, ToInt64(low, high));