Home
last modified time | relevance | path

Searched refs:Rem (Results 1 – 2 of 2) sorted by relevance

/DragonStub/lib/ia32/
H A Dmath.c148 UINT32 Rem; in DivU64x32() local
158 Rem = 0; in DivU64x32()
173 : "m"(Dividend), "m"(Divisor), "m"(Rem) in DivU64x32()
180 rcl dword ptr Rem, 1 in DivU64x32()
182 mov eax, Rem in DivU64x32()
183 cmp eax, Divisor ; Is Rem >= Divisor? in DivU64x32()
188 sub Rem, eax ; subtract divisor in DivU64x32()
194 *Remainder = Rem; in DivU64x32()
/DragonStub/lib/x86_64/
H A Dmath.c148 UINT32 Rem; in DivU64x32()
158 Rem = 0; in DivU64x32()
163 rcl dword ptr Rem, 1 in DivU64x32()
165 mov eax, Rem in DivU64x32()
166 cmp eax, Divisor ; Is Rem >= Divisor? in DivU64x32()
171 sub Rem, eax ; subtract divisor in DivU64x32()
176 *Remainder = Rem; in DivU64x32()