Searched defs:SwapBits64 (Results 1 - 2 of 2) sorted by relevance

/art/compiler/optimizing/
H A Dintrinsics_x86_64.cc1551 static void SwapBits64(CpuRegister reg, CpuRegister temp, CpuRegister temp_mask, function in namespace:art::x86_64
1582 SwapBits64(reg, temp1, temp2, 1, INT64_C(0x5555555555555555), assembler);
1583 SwapBits64(reg, temp1, temp2, 2, INT64_C(0x3333333333333333), assembler);
1584 SwapBits64(reg, temp1, temp2, 4, INT64_C(0x0f0f0f0f0f0f0f0f), assembler);
/art/compiler/dex/quick/x86/
H A Dint_x86.cc1289 void X86Mir2Lir::SwapBits64(RegStorage result_reg, int shift, int64_t value) { function in class:art::X86Mir2Lir
1324 SwapBits64(rl_result.reg, 1, 0x5555555555555555);
1325 SwapBits64(rl_result.reg, 2, 0x3333333333333333);
1326 SwapBits64(rl_result.reg, 4, 0x0f0f0f0f0f0f0f0f);

Completed in 39 milliseconds