Lines Matching refs:eax
50 mov eax, dword ptr Operand[0] in LShiftU64()
55 shld edx, eax, cl in LShiftU64()
56 shl eax, cl in LShiftU64()
61 mov edx, eax in LShiftU64()
62 xor eax, eax in LShiftU64()
65 mov dword ptr Result[0], eax in LShiftU64()
85 mov eax, dword ptr Operand[0] in RShiftU64()
90 shrd eax, edx, cl in RShiftU64()
96 mov eax, edx in RShiftU64()
100 mov dword ptr Result[0], eax in RShiftU64()
121 mov eax, dword ptr Multiplicand[0] in MultU64x32()
123 mov dword ptr Result[0], eax in MultU64x32()
125 mov eax, dword ptr Multiplicand[4] in MultU64x32()
127 add dword ptr Result[4], eax in MultU64x32()
182 mov eax, Rem in DivU64x32()
183 cmp eax, Divisor ; Is Rem >= Divisor? in DivU64x32()
185 sbb eax, eax ; Else, in DivU64x32()
186 sub dword ptr Dividend[0], eax ; set low bit in dividen in DivU64x32()
187 and eax, Divisor ; and in DivU64x32()
188 sub Rem, eax ; subtract divisor in DivU64x32()