Searched refs:RotateRight32 (Results 1 – 12 of 12) sorted by relevance
/external/v8/test/unittests/base/ |
D | bits-unittest.cc | 142 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/ |
D | functional.cc | 77 value = bits::RotateRight32(value, 15); in hash_combine() 81 seed = bits::RotateRight32(seed, 13); in hash_combine()
|
D | win32-headers.h | 78 #undef RotateRight32
|
D | bits.h | 163 inline uint32_t RotateRight32(uint32_t value, uint32_t shift) { in RotateRight32() function
|
/external/v8/src/arm/ |
D | disasm-arm.cc | 228 int imm = base::bits::RotateRight32(immed8, rotate); in PrintShiftImm()
|
D | simulator-arm.cc | 1561 int imm = base::bits::RotateRight32(immed8, rotate); in GetImm()
|
D | assembler-arm.cc | 3593 return base::bits::RotateRight32(immed8, rotate); in DecodeShiftImm()
|
/external/v8/test/cctest/compiler/ |
D | test-run-machops.cc | 3280 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/ |
D | simulator-mips64.cc | 3435 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/ |
D | machine-operator-reducer.cc | 170 base::bits::RotateRight32(m.left().Value(), m.right().Value())); in Reduce()
|
/external/v8/src/mips/ |
D | simulator-mips.cc | 3491 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/ |
D | machine-operator-reducer-unittest.cc | 801 IsInt32Constant(base::bits::RotateRight32(x, y))); in TEST_F()
|