Searched refs:__base (Results 1 - 11 of 11) sorted by relevance
/linux-4.4.14/arch/x86/include/asm/ |
H A D | div64.h | 23 unsigned long __upper, __low, __high, __mod, __base; \ 24 __base = (base); \ 25 if (__builtin_constant_p(__base) && is_power_of_2(__base)) { \ 26 __mod = n & (__base - 1); \ 27 n >>= ilog2(__base); \ 32 __upper = __high % (__base); \ 33 __high = __high / (__base); \ 36 : "rm" (__base), "0" (__low), "1" (__upper)); \
|
/linux-4.4.14/include/asm-generic/ |
H A D | div64.h | 26 uint32_t __base = (base); \ 28 __rem = ((uint64_t)(n)) % __base; \ 29 (n) = ((uint64_t)(n)) / __base; \ 41 uint32_t __base = (base); \ 45 __rem = (uint32_t)(n) % __base; \ 46 (n) = (uint32_t)(n) / __base; \ 48 __rem = __div64_32(&(n), __base); \
|
/linux-4.4.14/arch/m68k/include/asm/ |
H A D | div64.h | 18 unsigned long __base = (base); \ 24 : "d" (__base), "0" (__n.n32[0])); \ 28 : "d" (__base), "1" (__upper), "0" (__n.n32[1])); \
|
/linux-4.4.14/arch/metag/mm/ |
H A D | mmu-meta1.c | 123 static unsigned long __base; mmu_get_base() local 126 if (!__base) mmu_get_base() 127 __base = pgd_entry_addr(0); mmu_get_base() 129 return __base; mmu_get_base()
|
/linux-4.4.14/arch/powerpc/boot/ |
H A D | stdio.c | 27 unsigned int __base = (base); \ 29 __rem = ((unsigned long long)(n)) % __base; \ 30 (n) = ((unsigned long long)(n)) / __base; \ 43 unsigned int __base = (base); \ 47 __rem = (unsigned int)(n) % __base; \ 48 (n) = (unsigned int)(n) / __base; \ 50 __rem = __div64_32(&(n), __base); \
|
/linux-4.4.14/arch/alpha/boot/ |
H A D | stdio.c | 22 unsigned int __base = (base); \ 24 __rem = ((unsigned long long)(n)) % __base; \ 25 (n) = ((unsigned long long)(n)) / __base; \
|
/linux-4.4.14/drivers/staging/lustre/lustre/lov/ |
H A D | lov_internal.h | 49 uint64_t __base = (base); \ 51 __rem = ((uint64_t)(n)) % __base; \ 52 (n) = ((uint64_t)(n)) / __base; \
|
/linux-4.4.14/arch/arm/include/asm/ |
H A D | div64.h | 33 register unsigned int __base asm("r4") = base; \ 43 : "r" (__n), "r" (__base) \
|
/linux-4.4.14/include/drm/ttm/ |
H A D | ttm_object.h | 321 #define ttm_base_object_kfree(__object, __base)\ 322 kfree_rcu(__object, __base.rhead)
|
/linux-4.4.14/drivers/net/ethernet/amd/ |
H A D | sunlance.c | 281 do { void __iomem *__base = (__lp)->lregs; \ 282 sbus_writew(LE_CSR0, __base + RAP); \ 283 sbus_writew(LE_C0_STOP, __base + RDP); \
|
/linux-4.4.14/drivers/net/wireless/rt2x00/ |
H A D | rt2x00queue.c | 1114 #define QUEUE_ENTRY_PRIV_OFFSET(__base, __index, __limit, __esize, __psize) \ rt2x00queue_alloc_entries() 1115 (((char *)(__base)) + ((__limit) * (__esize)) + \ rt2x00queue_alloc_entries()
|
Completed in 608 milliseconds