Searched refs:__upper (Results 1 – 3 of 3) sorted by relevance
/linux-4.1.27/arch/m68k/include/asm/ |
D | div64.h | 17 unsigned long __rem, __upper; \ 21 if ((__upper = __n.n32[0])) { \ 23 : "=d" (__n.n32[0]), "=d" (__upper) \ 28 : "d" (__base), "1" (__upper), "0" (__n.n32[1])); \
|
/linux-4.1.27/arch/x86/include/asm/ |
D | div64.h | 23 unsigned long __upper, __low, __high, __mod, __base; \ 30 __upper = __high; \ 32 __upper = __high % (__base); \ 36 : "rm" (__base), "0" (__low), "1" (__upper)); \
|
/linux-4.1.27/fs/xfs/ |
D | xfs_linux.h | 239 unsigned long __upper, __low, __high, __mod; in xfs_do_div() local 241 __upper = __high = c >> 32; in xfs_do_div() 244 __upper = __high % (b); in xfs_do_div() 247 asm("divl %2":"=a" (__low), "=d" (__mod):"rm" (b), "0" (__low), "1" (__upper)); in xfs_do_div() 266 unsigned long __upper, __low, __high, __mod; in xfs_do_mod() local 268 __upper = __high = c >> 32; in xfs_do_mod() 271 __upper = __high % (b); in xfs_do_mod() 274 asm("divl %2":"=a" (__low), "=d" (__mod):"rm" (b), "0" (__low), "1" (__upper)); in xfs_do_mod()
|