/linux-6.3-rc2/drivers/thermal/mediatek/ |
A D | lvts_thermal.c | 22 #define LVTS_MONCTL0(__base) (__base + 0x0000) argument 23 #define LVTS_MONCTL1(__base) (__base + 0x0004) argument 24 #define LVTS_MONCTL2(__base) (__base + 0x0008) argument 25 #define LVTS_MONINT(__base) (__base + 0x000C) argument 27 #define LVTS_MONIDET0(__base) (__base + 0x0014) argument 28 #define LVTS_MONIDET1(__base) (__base + 0x0018) argument 31 #define LVTS_H2NTHRE(__base) (__base + 0x0024) argument 32 #define LVTS_HTHRE(__base) (__base + 0x0028) argument 37 #define LVTS_TSSEL(__base) (__base + 0x0040) argument 39 #define LVTS_ID(__base) (__base + 0x004C) argument [all …]
|
/linux-6.3-rc2/include/asm-generic/ |
A 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); \ 224 is_power_of_2(__base)) { \ 225 __rem = (n) & (__base - 1); \ 226 (n) >>= ilog2(__base); \ 228 __base != 0) { \ 230 (n) = __div64_const32(n, __base); \ 235 __rem = (uint32_t)(n) % __base; \ [all …]
|
/linux-6.3-rc2/arch/x86/include/asm/ |
A 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.3-rc2/include/net/netfilter/ |
A 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.3-rc2/arch/m68k/include/asm/ |
A 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.3-rc2/arch/powerpc/boot/ |
A 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.3-rc2/arch/arm/include/asm/ |
A D | div64.h | 26 register unsigned int __base asm("r4") = base; in __div64_32() 35 : "r" (__base) in __div64_32()
|
/linux-6.3-rc2/drivers/gpu/drm/vmwgfx/ |
A D | ttm_object.h | 285 #define ttm_base_object_kfree(__object, __base)\ argument 286 kfree_rcu(__object, __base.rhead)
|
/linux-6.3-rc2/arch/alpha/boot/ |
A D | stdio.c | 18 unsigned int __base = (base); \ 20 __rem = ((unsigned long long)(n)) % __base; \ 21 (n) = ((unsigned long long)(n)) / __base; \
|
/linux-6.3-rc2/drivers/net/ethernet/qlogic/qed/ |
A D | qed.h | 949 #define GET_GTT_REG_ADDR(__base, __offset, __idx) \ argument 950 ((__base) + __offset ## _GTT_OFFSET((__idx))) 952 #define GET_GTT_BDQ_REG_ADDR(__base, __offset, __idx, __bdq_idx) \ argument 953 ((__base) + __offset ## _GTT_OFFSET((__idx), (__bdq_idx)))
|
/linux-6.3-rc2/drivers/net/wireless/mediatek/mt76/mt7996/ |
A D | regs.h | 15 struct __base { struct 21 const struct __base *base; argument
|
A D | mmio.c | 14 static const struct __base mt7996_reg_base[] = {
|
/linux-6.3-rc2/drivers/net/ethernet/amd/ |
A 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.3-rc2/drivers/net/wireless/ralink/rt2x00/ |
A D | rt2x00queue.c | 1116 #define QUEUE_ENTRY_PRIV_OFFSET(__base, __index, __limit, __esize, __psize) \ in rt2x00queue_alloc_entries() argument 1117 (((char *)(__base)) + ((__limit) * (__esize)) + \ in rt2x00queue_alloc_entries()
|