Home
last modified time | relevance | path

Searched refs:RotateRight32 (Results 1 – 12 of 12) sorted by relevance

/external/v8/test/unittests/base/
Dbits-unittest.cc142 TEST(Bits, RotateRight32) { in TEST() argument
144 EXPECT_EQ(0u, RotateRight32(0u, shift)); in TEST()
146 EXPECT_EQ(1u, RotateRight32(1, 0)); in TEST()
147 EXPECT_EQ(1u, RotateRight32(2, 1)); in TEST()
148 EXPECT_EQ(0x80000000u, RotateRight32(1, 1)); in TEST()
/external/v8/src/base/
Dfunctional.cc77 value = bits::RotateRight32(value, 15); in hash_combine()
81 seed = bits::RotateRight32(seed, 13); in hash_combine()
Dwin32-headers.h78 #undef RotateRight32
Dbits.h163 inline uint32_t RotateRight32(uint32_t value, uint32_t shift) { in RotateRight32() function
/external/v8/src/arm/
Ddisasm-arm.cc228 int imm = base::bits::RotateRight32(immed8, rotate); in PrintShiftImm()
Dsimulator-arm.cc1561 int imm = base::bits::RotateRight32(immed8, rotate); in GetImm()
Dassembler-arm.cc3593 return base::bits::RotateRight32(immed8, rotate); in DecodeShiftImm()
/external/v8/test/cctest/compiler/
Dtest-run-machops.cc3280 int32_t expected = bits::RotateRight32(*j, shift); in TEST()
3291 uint32_t expected = bits::RotateRight32(*i, shift); in TEST()
3307 uint32_t expected = 0 == bits::RotateRight32(*i, shift); in TEST()
3319 uint32_t expected = 0 == bits::RotateRight32(*i, shift); in TEST()
3331 uint32_t expected = 0 == bits::RotateRight32(*i, shift); in TEST()
3343 uint32_t expected = 0 == bits::RotateRight32(*i, shift); in TEST()
/external/v8/src/mips64/
Dsimulator-mips64.cc3435 base::bits::RotateRight32(static_cast<const uint32_t>(rt_u()), in DecodeTypeRegisterSPECIAL()
3471 base::bits::RotateRight32(static_cast<const uint32_t>(rt_u()), in DecodeTypeRegisterSPECIAL()
3486 base::bits::RotateRight32(static_cast<const uint32_t>(rt_u()), in DecodeTypeRegisterSPECIAL()
/external/v8/src/compiler/
Dmachine-operator-reducer.cc170 base::bits::RotateRight32(m.left().Value(), m.right().Value())); in Reduce()
/external/v8/src/mips/
Dsimulator-mips.cc3491 alu_out = base::bits::RotateRight32(rt_u(), sa()); in DecodeTypeRegisterSPECIAL()
3512 alu_out = base::bits::RotateRight32(rt_u(), rs_u()); in DecodeTypeRegisterSPECIAL()
/external/v8/test/unittests/compiler/
Dmachine-operator-reducer-unittest.cc801 IsInt32Constant(base::bits::RotateRight32(x, y))); in TEST_F()