Lines Matching refs:ToInt64
4108 uint64_t ToInt64(uint32_t low, uint32_t high) { in ToInt64() function
4136 CHECK_EQ(*i + *j, ToInt64(low, high)); in TEST()
4161 CHECK_EQ(ToInt64(inputs[a], inputs[b]) + ToInt64(inputs[c], inputs[d]), in TestInt32PairAddWithSharedInput()
4162 ToInt64(low, high)); in TestInt32PairAddWithSharedInput()
4199 CHECK_EQ(*i - *j, ToInt64(low, high)); in TEST()
4224 CHECK_EQ(ToInt64(inputs[a], inputs[b]) - ToInt64(inputs[c], inputs[d]), in TestInt32PairSubWithSharedInput()
4225 ToInt64(low, high)); in TestInt32PairSubWithSharedInput()
4262 CHECK_EQ(*i * *j, ToInt64(low, high)); in TEST()
4287 CHECK_EQ(ToInt64(inputs[a], inputs[b]) * ToInt64(inputs[c], inputs[d]), in TestInt32PairMulWithSharedInput()
4288 ToInt64(low, high)); in TestInt32PairMulWithSharedInput()
4323 CHECK_EQ(*i << j, ToInt64(low, high)); in TEST()
4348 CHECK_EQ(ToInt64(inputs[a], inputs[b]) << j, ToInt64(low, high)); in TestWord32PairShlWithSharedInput()
4380 CHECK_EQ(*i >> j, ToInt64(low, high)); in TEST()
4405 CHECK_EQ(*i >> j, ToInt64(low, high)); in TEST()