Searched refs:RotateRight64 (Results 1 - 5 of 5) sorted by relevance

/external/v8/src/base/
H A Dwin32-headers.h80 #undef RotateRight64 macro
H A Dbits.h202 inline uint64_t RotateRight64(uint64_t value, uint64_t shift) { function in namespace:v8::base::bits
/external/v8/test/unittests/base/
H A Dbits-unittest.cc152 TEST(Bits, RotateRight64) {
154 EXPECT_EQ(0u, RotateRight64(0u, shift));
156 EXPECT_EQ(1u, RotateRight64(1, 0));
157 EXPECT_EQ(1u, RotateRight64(2, 1));
158 EXPECT_EQ(V8_UINT64_C(0x8000000000000000), RotateRight64(1, 1));
/external/v8/src/mips64/
H A Dsimulator-mips64.cc3456 alu_out = static_cast<int64_t>(base::bits::RotateRight64(rt_u(), sa()));
3473 static_cast<int64_t>(base::bits::RotateRight64(rt_u(), sa() + 32));
3519 static_cast<int64_t>(base::bits::RotateRight64(rt_u(), rs_u()));
/external/v8/test/cctest/wasm/
H A Dtest-run-wasm-64.cc1407 int64_t expected = bits::RotateRight64(*i, *j & 0x3f);

Completed in 361 milliseconds