Home
last modified time | relevance | path

Searched refs:__base (Results 1 – 10 of 10) sorted by relevance

/linux/arch/x86/include/asm/
H A Ddiv64.h24 unsigned long __upper, __low, __high, __mod, __base; \
25 __base = (base); \
26 if (__builtin_constant_p(__base) && is_power_of_2(__base)) { \
27 __mod = n & (__base - 1); \
28 n >>= ilog2(__base); \
33 __upper = __high % (__base); \
34 __high = __high / (__base); \
37 : "rm" (__base), "0" (__low), "1" (__upper)); \
/linux/include/net/netfilter/
H A Dnf_tables_offload.h79 #define NFT_OFFLOAD_MATCH_FLAGS(__key, __base, __field, __len, __reg, __flags) \ argument
81 offsetof(struct nft_flow_key, __base); \
83 offsetof(struct nft_flow_key, __base.__field); \
88 #define NFT_OFFLOAD_MATCH(__key, __base, __field, __len, __reg) \ argument
89 NFT_OFFLOAD_MATCH_FLAGS(__key, __base, __field, __len, __reg, 0)
91 #define NFT_OFFLOAD_MATCH_EXACT(__key, __base, __field, __len, __reg) \ argument
92 NFT_OFFLOAD_MATCH(__key, __base, __field, __len, __reg) \
/linux/drivers/watchdog/
H A Ds32g_wdt.c20 #define S32G_SWT_CR(__base) ((__base) + 0x00) /* Control Register offset */ argument
26 #define S32G_SWT_TO(__base) ((__base) + 0x08) /* Timeout Register offset */ argument
28 #define S32G_SWT_SR(__base) ((__base) + 0x10) /* Service Register offset */ argument
32 #define S32G_SWT_CO(__base) ((__base) + 0x14) /* Counter output register */ argument
/linux/arch/m68k/include/asm/
H A Ddiv64.h19 unsigned long __base = (base); \
25 : "d" (__base), "0" (__n.n32[0])); \
29 : "d" (__base), "1" (__upper), "0" (__n.n32[1])); \
/linux/arch/powerpc/boot/
H A Dstdio.c33 unsigned int __base = (base); \
35 __rem = ((unsigned long long)(n)) % __base; \
36 (n) = ((unsigned long long)(n)) / __base; \
49 unsigned int __base = (base); \
53 __rem = (unsigned int)(n) % __base; \
54 (n) = (unsigned int)(n) / __base; \
56 __rem = __div64_32(&(n), __base); \
/linux/drivers/gpu/drm/vmwgfx/
H A Dttm_object.h285 #define ttm_base_object_kfree(__object, __base)\ argument
286 kfree_rcu(__object, __base.rhead)
/linux/arch/alpha/boot/
H A Dstdio.c18 unsigned int __base = (base); \
20 __rem = ((unsigned long long)(n)) % __base; \
21 (n) = ((unsigned long long)(n)) / __base; \
/linux/tools/sched_ext/include/scx/
H A Dcommon.bpf.h247 u64 __base = (u64)&(base); \
248 u64 __addr = (u64)&((base) member) - __base; \
257 : "r"(__base), \
280 u64 __base = (u64)arr; \
281 u64 __addr = (u64)&(arr[i]) - __base; \
288 : "r"(__base), \
/linux/drivers/net/ethernet/amd/
H A Dsunlance.c277 do { void __iomem *__base = (__lp)->lregs; \
278 sbus_writew(LE_CSR0, __base + RAP); \
279 sbus_writew(LE_C0_STOP, __base + RDP); \
/linux/drivers/net/wireless/ralink/rt2x00/
H A Drt2x00queue.c1113 #define QUEUE_ENTRY_PRIV_OFFSET(__base, __index, __limit, __esize, __psize) \ in rt2x00queue_alloc_entries() argument
1114 (((char *)(__base)) + ((__limit) * (__esize)) + \ in rt2x00queue_alloc_entries()