__base             18 arch/alpha/boot/stdio.c 	unsigned int __base = (base);					\
__base             20 arch/alpha/boot/stdio.c 	__rem = ((unsigned long long)(n)) % __base;			\
__base             21 arch/alpha/boot/stdio.c 	(n) = ((unsigned long long)(n)) / __base;			\
__base             35 arch/arm/include/asm/div64.h 	register unsigned int __base      asm("r4") = base;
__base             45 arch/arm/include/asm/div64.h 		: "r" (__n), "r" (__base)
__base             19 arch/m68k/include/asm/div64.h 	unsigned long __base = (base);				\
__base             25 arch/m68k/include/asm/div64.h 		     : "d" (__base), "0" (__n.n32[0]));		\
__base             29 arch/m68k/include/asm/div64.h 	     : "d" (__base), "1" (__upper), "0" (__n.n32[1]));	\
__base             33 arch/powerpc/boot/stdio.c 	unsigned int __base = (base);					\
__base             35 arch/powerpc/boot/stdio.c 	__rem = ((unsigned long long)(n)) % __base;			\
__base             36 arch/powerpc/boot/stdio.c 	(n) = ((unsigned long long)(n)) / __base;			\
__base             49 arch/powerpc/boot/stdio.c 	unsigned int __base = (base);					\
__base             53 arch/powerpc/boot/stdio.c 		__rem = (unsigned int)(n) % __base;			\
__base             54 arch/powerpc/boot/stdio.c 		(n) = (unsigned int)(n) / __base;			\
__base             56 arch/powerpc/boot/stdio.c 		__rem = __div64_32(&(n), __base);			\
__base             24 arch/x86/include/asm/div64.h 	unsigned long __upper, __low, __high, __mod, __base;	\
__base             25 arch/x86/include/asm/div64.h 	__base = (base);					\
__base             26 arch/x86/include/asm/div64.h 	if (__builtin_constant_p(__base) && is_power_of_2(__base)) { \
__base             27 arch/x86/include/asm/div64.h 		__mod = n & (__base - 1);			\
__base             28 arch/x86/include/asm/div64.h 		n >>= ilog2(__base);				\
__base             33 arch/x86/include/asm/div64.h 			__upper = __high % (__base);		\
__base             34 arch/x86/include/asm/div64.h 			__high = __high / (__base);		\
__base             37 arch/x86/include/asm/div64.h 			: "rm" (__base), "0" (__low), "1" (__upper));	\
__base            325 drivers/gpu/drm/vmwgfx/ttm_object.h #define ttm_base_object_kfree(__object, __base)\
__base            326 drivers/gpu/drm/vmwgfx/ttm_object.h 	kfree_rcu(__object, __base.rhead)
__base            282 drivers/net/ethernet/amd/sunlance.c do {	void __iomem *__base = (__lp)->lregs; \
__base            283 drivers/net/ethernet/amd/sunlance.c 	sbus_writew(LE_CSR0,	__base + RAP); \
__base            284 drivers/net/ethernet/amd/sunlance.c 	sbus_writew(LE_C0_STOP,	__base + RDP); \
__base           1114 drivers/net/wireless/ralink/rt2x00/rt2x00queue.c #define QUEUE_ENTRY_PRIV_OFFSET(__base, __index, __limit, __esize, __psize) \
__base           1115 drivers/net/wireless/ralink/rt2x00/rt2x00queue.c 	(((char *)(__base)) + ((__limit) * (__esize)) + \
__base             44 include/asm-generic/div64.h 	uint32_t __base = (base);				\
__base             46 include/asm-generic/div64.h 	__rem = ((uint64_t)(n)) % __base;			\
__base             47 include/asm-generic/div64.h 	(n) = ((uint64_t)(n)) / __base;				\
__base            224 include/asm-generic/div64.h 	uint32_t __base = (base);			\
__base            227 include/asm-generic/div64.h 	if (__builtin_constant_p(__base) &&		\
__base            228 include/asm-generic/div64.h 	    is_power_of_2(__base)) {			\
__base            229 include/asm-generic/div64.h 		__rem = (n) & (__base - 1);		\
__base            230 include/asm-generic/div64.h 		(n) >>= ilog2(__base);			\
__base            232 include/asm-generic/div64.h 		   __builtin_constant_p(__base) &&	\
__base            233 include/asm-generic/div64.h 		   __base != 0) {			\
__base            235 include/asm-generic/div64.h 		(n) = __div64_const32(n, __base);	\
__base            238 include/asm-generic/div64.h 		__rem = __n_lo - __res_lo * __base;	\
__base            240 include/asm-generic/div64.h 		__rem = (uint32_t)(n) % __base;		\
__base            241 include/asm-generic/div64.h 		(n) = (uint32_t)(n) / __base;		\
__base            243 include/asm-generic/div64.h 		__rem = __div64_32(&(n), __base);	\
__base             69 include/net/netfilter/nf_tables_offload.h #define NFT_OFFLOAD_MATCH(__key, __base, __field, __len, __reg)		\
__base             71 include/net/netfilter/nf_tables_offload.h 		offsetof(struct nft_flow_key, __base);			\
__base             73 include/net/netfilter/nf_tables_offload.h 		offsetof(struct nft_flow_key, __base.__field);		\