/linux-6.12.1/drivers/thermal/mediatek/ |
D | lvts_thermal.c | 24 #define LVTS_MONCTL0(__base) (__base + 0x0000) argument 25 #define LVTS_MONCTL1(__base) (__base + 0x0004) argument 26 #define LVTS_MONCTL2(__base) (__base + 0x0008) argument 27 #define LVTS_MONINT(__base) (__base + 0x000C) argument 28 #define LVTS_MONINTSTS(__base) (__base + 0x0010) argument 29 #define LVTS_MONIDET0(__base) (__base + 0x0014) argument 30 #define LVTS_MONIDET1(__base) (__base + 0x0018) argument 31 #define LVTS_MONIDET2(__base) (__base + 0x001C) argument 32 #define LVTS_MONIDET3(__base) (__base + 0x0020) argument 33 #define LVTS_H2NTHRE(__base) (__base + 0x0024) argument [all …]
|
/linux-6.12.1/include/asm-generic/ |
D | div64.h | 46 uint32_t __base = (base); \ 48 __rem = ((uint64_t)(n)) % __base; \ 49 (n) = ((uint64_t)(n)) / __base; \ 220 uint32_t __base = (base); \ 223 if (__builtin_constant_p(__base) && \ 224 is_power_of_2(__base)) { \ 225 __rem = (n) & (__base - 1); \ 226 (n) >>= ilog2(__base); \ 227 } else if (__builtin_constant_p(__base) && \ 228 __base != 0) { \ [all …]
|
/linux-6.12.1/arch/x86/include/asm/ |
D | div64.h | 24 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-6.12.1/include/net/netfilter/ |
D | nf_tables_offload.h | 79 #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-6.12.1/arch/m68k/include/asm/ |
D | div64.h | 19 unsigned long __base = (base); \ 25 : "d" (__base), "0" (__n.n32[0])); \ 29 : "d" (__base), "1" (__upper), "0" (__n.n32[1])); \
|
/linux-6.12.1/arch/powerpc/boot/ |
D | stdio.c | 33 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-6.12.1/arch/arm/include/asm/ |
D | div64.h | 26 register unsigned int __base asm("r4") = base; in __div64_32() 35 : "r" (__base) in __div64_32()
|
/linux-6.12.1/tools/sched_ext/include/scx/ |
D | common.bpf.h | 195 u64 __base = (u64)&(base); \ 196 u64 __addr = (u64)&((base) member) - __base; \ 205 : "r"(__base), \ 226 u64 __base = (u64)arr; \ 227 u64 __addr = (u64)&(arr[i]) - __base; \ 234 : "r"(__base), \
|
/linux-6.12.1/arch/alpha/boot/ |
D | stdio.c | 18 unsigned int __base = (base); \ 20 __rem = ((unsigned long long)(n)) % __base; \ 21 (n) = ((unsigned long long)(n)) / __base; \
|
/linux-6.12.1/drivers/gpu/drm/vmwgfx/ |
D | ttm_object.h | 285 #define ttm_base_object_kfree(__object, __base)\ argument 286 kfree_rcu(__object, __base.rhead)
|
/linux-6.12.1/drivers/net/ethernet/qlogic/qed/ |
D | qed.h | 946 #define GET_GTT_REG_ADDR(__base, __offset, __idx) \ argument 947 ((__base) + __offset ## _GTT_OFFSET((__idx))) 949 #define GET_GTT_BDQ_REG_ADDR(__base, __offset, __idx, __bdq_idx) \ argument 950 ((__base) + __offset ## _GTT_OFFSET((__idx), (__bdq_idx)))
|
/linux-6.12.1/drivers/net/wireless/mediatek/mt76/mt7996/ |
D | regs.h | 15 struct __base { struct 21 const struct __base *base; argument
|
D | mmio.c | 20 static const struct __base mt7996_reg_base[] = {
|
/linux-6.12.1/drivers/net/ethernet/amd/ |
D | sunlance.c | 277 do { void __iomem *__base = (__lp)->lregs; \ 278 sbus_writew(LE_CSR0, __base + RAP); \ 279 sbus_writew(LE_C0_STOP, __base + RDP); \
|
/linux-6.12.1/drivers/net/wireless/ralink/rt2x00/ |
D | rt2x00queue.c | 1113 #define QUEUE_ENTRY_PRIV_OFFSET(__base, __index, __limit, __esize, __psize) \ in rt2x00queue_alloc_entries() argument 1114 (((char *)(__base)) + ((__limit) * (__esize)) + \ in rt2x00queue_alloc_entries()
|