Searched refs:__high (Results 1 - 6 of 6) sorted by relevance

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-i386/
H A Ddiv64.h19 unsigned long __upper, __low, __high, __mod, __base; \
21 asm("":"=a" (__low), "=d" (__high):"A" (n)); \
22 __upper = __high; \
23 if (__high) { \
24 __upper = __high % (__base); \
25 __high = __high / (__base); \
28 asm("":"=A" (n):"a" (__low),"d" (__high)); \
H A Dmsr.h94 static inline void wrmsr(u32 __msr, u32 __low, u32 __high) argument
96 native_write_msr(__msr, ((u64)__high << 32) | __low);
105 static inline int wrmsr_safe(u32 __msr, u32 __low, u32 __high) argument
107 return native_write_msr_safe(__msr, ((u64)__high << 32) | __low);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm/
H A Ddiv64.h62 unsigned long __upper, __low, __high, __base; \
67 __high = __div >> 32; \
69 __upper = __high; \
71 if (__high) \
73 : "=h" (__upper), "=l" (__high) \
74 : "Jr" (__high), "Jr" (__base) \
79 __quot = __high; \
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-mips/
H A Ddiv64.h62 unsigned long __upper, __low, __high, __base; \
67 __high = __div >> 32; \
69 __upper = __high; \
71 if (__high) \
73 : "=h" (__upper), "=l" (__high) \
74 : "Jr" (__high), "Jr" (__base) \
79 __quot = __high; \
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-frv/
H A Dunaligned.h168 uint32_t __high, __low; \
169 __high = (uint64_t)val >> 32; \
186 : "=&r"(__low), "=&r"(__high), "=m"(__p[7]), "=m"(__p[6]), \
189 : "0"(__low), "1"(__high) \
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/xfs/linux-2.6/
H A Dxfs_linux.h233 unsigned long __upper, __low, __high, __mod; local
235 __upper = __high = c >> 32;
237 if (__high) {
238 __upper = __high % (b);
239 __high = __high / (b);
242 asm("":"=A" (c):"a" (__low),"d" (__high));
260 unsigned long __upper, __low, __high, __mod; local
262 __upper = __high = c >> 32;
264 if (__high) {
[all...]

Completed in 70 milliseconds