Lines Matching refs:t
17 movl %eax, %edx # w -> t
18 shrl %edx # t >>= 1
19 andl $0x55555555, %edx # t &= 0x55555555
20 subl %edx, %eax # w -= t
22 movl %eax, %edx # w -> t
24 andl $0x33333333, %edx # t &= 0x33333333
26 addl %edx, %eax # w = w_tmp + t
28 movl %eax, %edx # w -> t
29 shrl $4, %edx # t >>= 4
30 addl %edx, %eax # w_tmp += t
44 movq %rdi, %rdx # w -> t
46 shrq %rdx # t >>= 1
47 andq %rdx, %rax # t &= 0x5555555555555555
49 subq %rax, %rdi # w -= t
51 movq %rdi, %rax # w -> t
53 andq %rdx, %rax # t &= 0x3333333333333333
55 addq %rdx, %rax # w = w_tmp + t
57 movq %rax, %rdx # w -> t
58 shrq $4, %rdx # t >>= 4
59 addq %rdx, %rax # w_tmp += t