Lines Matching refs:w_tmp
23 shrl $2, %eax # w_tmp >>= 2
25 andl $0x33333333, %eax # w_tmp &= 0x33333333
26 addl %edx, %eax # w = w_tmp + t
30 addl %edx, %eax # w_tmp += t
31 andl $0x0f0f0f0f, %eax # w_tmp &= 0x0f0f0f0f
32 imull $0x01010101, %eax, %eax # w_tmp *= 0x01010101
33 shrl $24, %eax # w = w_tmp >> 24
52 shrq $2, %rdi # w_tmp >>= 2
54 andq %rdi, %rdx # w_tmp &= 0x3333333333333333
55 addq %rdx, %rax # w = w_tmp + t
59 addq %rdx, %rax # w_tmp += t
61 andq %rdx, %rax # w_tmp &= 0x0f0f0f0f0f0f0f0f
63 imulq %rdx, %rax # w_tmp *= 0x0101010101010101
64 shrq $56, %rax # w = w_tmp >> 56