Home
last modified time | relevance | path

Searched refs:__d (Results 1 – 19 of 19) sorted by relevance

/linux-6.3-rc2/tools/include/linux/
A Doverflow.h47 typeof(d) __d = (d); \
49 (void) (&__a == __d); \
50 __builtin_add_overflow(__a, __b, __d); \
56 typeof(d) __d = (d); \
58 (void) (&__a == __d); \
59 __builtin_sub_overflow(__a, __b, __d); \
65 typeof(d) __d = (d); \
67 (void) (&__a == __d); \
68 __builtin_mul_overflow(__a, __b, __d); \
/linux-6.3-rc2/include/linux/
A Dmath.h89 typeof(divisor) __d = divisor; \
92 (((__x) > 0) == ((__d) > 0))) ? \
93 (((__x) + ((__d) / 2)) / (__d)) : \
94 (((__x) - ((__d) / 2)) / (__d)); \
103 typeof(divisor) __d = divisor; \
104 unsigned long long _tmp = (x) + (__d) / 2; \
105 do_div(_tmp, __d); \
A Dmath64.h343 s32 __d = (divisor); \
344 ((__x > 0) == (__d > 0)) ? \
345 div_s64((__x + (__d / 2)), __d) : \
346 div_s64((__x - (__d / 2)), __d); \
A Ddevice.h937 struct device *__d = dev; \
938 dev_WARN_ONCE(__d, !lockdep_match_class(&__d->mutex, \
941 __device_lock_set_class(__d, #key, key); \
956 struct device *__d __maybe_unused = dev; \
957 lock_set_novalidate_class(&__d->mutex.dep_map, "&dev->mutex", \
/linux-6.3-rc2/drivers/block/drbd/
A Ddrbd_polymorph_printk.h16 const struct drbd_device *__d = (device); \
17 const struct drbd_resource *__r = __d->resource
19 #define __drbd_printk_drbd_device_args() __r->name, __d->vnr, __d->minor
23 const struct drbd_device *__d; \
25 __d = (peer_device)->device; \
26 __r = __d->resource
30 __r->name, __d->vnr, __d->minor
/linux-6.3-rc2/tools/perf/
A Dbuiltin-version.c50 #define STATUS(__d, __m) \ argument
52 if (IS_BUILTIN(__d)) \
53 status_print(#__m, #__d, "on"); \
55 status_print(#__m, #__d, "OFF"); \
/linux-6.3-rc2/arch/m68k/include/asm/
A Dbootstd.h107 register long __d __asm__ ("%d4") = (long)d; \
111 "d" (__c), "d" (__d) \
123 register long __d __asm__ ("%d4") = (long)d; \
128 "d" (__c), "d" (__d), "d" (__e) \
/linux-6.3-rc2/drivers/scsi/bfa/
A Dbfa_defs.h637 #define bfa_asic_id_cb(__d) \ argument
638 ((__d) == BFA_PCI_DEVICE_ID_FC_8G2P || \
639 (__d) == BFA_PCI_DEVICE_ID_FC_8G1P)
640 #define bfa_asic_id_ct(__d) \ argument
641 ((__d) == BFA_PCI_DEVICE_ID_CT || \
642 (__d) == BFA_PCI_DEVICE_ID_CT_FC)
643 #define bfa_asic_id_ct2(__d) \ argument
644 ((__d) == BFA_PCI_DEVICE_ID_CT2 || \
645 (__d) == BFA_PCI_DEVICE_ID_CT2_QUAD)
646 #define bfa_asic_id_ctc(__d) \ argument
[all …]
/linux-6.3-rc2/drivers/gpu/drm/nouveau/include/nvkm/core/
A Dmemory.h84 u64 __a = (a), __d = (d); \
85 nvkm_wo32((o), __a + 0, lower_32_bits(__d)); \
86 nvkm_wo32((o), __a + 4, upper_32_bits(__d)); \
/linux-6.3-rc2/drivers/net/ethernet/netronome/nfp/
A Dnfp_net.h123 __typeof__(desc) __d = (desc); \
126 __d->dma_addr_lo = cpu_to_le32(lower_32_bits(__addr)); \
127 __d->dma_addr_hi = upper_32_bits(__addr) & 0xff; \
132 __typeof__(desc) __d = (desc); \
135 __d->dma_addr_hi = cpu_to_le16(upper_32_bits(__addr)); \
136 __d->dma_addr_lo = cpu_to_le32(lower_32_bits(__addr)); \
/linux-6.3-rc2/drivers/infiniband/hw/mthca/
A Dmthca_dev.h401 void *__d = ((char *) (dest) + (offset)); \
403 case 1: *(u8 *) __d = (source); break; \
404 case 2: *(__be16 *) __d = cpu_to_be16(source); break; \
405 case 4: *(__be32 *) __d = cpu_to_be32(source); break; \
406 case 8: *(__be64 *) __d = cpu_to_be64(source); break; \
/linux-6.3-rc2/arch/alpha/kernel/
A Dsmc37c669.c85 #define SMC37c669_DEVICE_DRQ(__d) \ argument
86 ((SMC37c669_DEVICE_DRQ_MASK) | (__d))
87 #define SMC37c669_IS_DEVICE_DRQ(__d) \ argument
88 (((__d) & (SMC37c669_DEVICE_DRQ_MASK)) == (SMC37c669_DEVICE_DRQ_MASK))
89 #define SMC37c669_RAW_DEVICE_DRQ(__d) \ argument
90 ((__d) & ~(SMC37c669_DEVICE_DRQ_MASK))
/linux-6.3-rc2/net/core/
A Dflow_offload.c53 struct flow_dissector *__d = (__m)->dissector; \
55 (__out)->key = skb_flow_dissector_target(__d, __type, (__m)->key); \
56 (__out)->mask = skb_flow_dissector_target(__d, __type, (__m)->mask); \
/linux-6.3-rc2/drivers/net/wireless/realtek/rtw88/
A Dregd.c18 struct rtw_dev *__d = (_dev); \
19 const struct rtw_regd *__r = &__d->regd; \
20 rtw_dbg(__d, RTW_DBG_REGD, _msg \
/linux-6.3-rc2/lib/
A Doverflow_kunit.c340 t __d; \
341 bool __of = check_shl_overflow(__a, __s, &__d); \
346 } else if (!__of && __d != __e) { \
347 KUNIT_EXPECT_EQ_MSG(test, __d, __e, \
351 kunit_info(test, "got %lld\n", (s64)__d); \
353 kunit_info(test, "got %llu\n", (u64)__d); \
/linux-6.3-rc2/drivers/media/platform/st/sti/delta/
A Ddelta-ipc.c24 #define to_delta(__d) container_of(__d, struct delta_dev, rpmsg_driver) argument
/linux-6.3-rc2/drivers/gpu/drm/nouveau/include/nvif/
A Dpush.h266 u32 __d = (d); \
267 PUSH_IMMD_HDR(__p, c, m, __d); \
269 PUSH_PRINTF(__p, "%08x-> "#m, __d); \
/linux-6.3-rc2/drivers/net/ethernet/mellanox/mlx4/
A Dfw.c74 void *__d = ((char *) (dest) + (offset)); \
76 case 1: *(u8 *) __d = (source); break; \
77 case 2: *(__be16 *) __d = cpu_to_be16(source); break; \
78 case 4: *(__be32 *) __d = cpu_to_be32(source); break; \
79 case 8: *(__be64 *) __d = cpu_to_be64(source); break; \
/linux-6.3-rc2/drivers/base/power/
A Ddomain.c32 type (*__routine)(struct device *__d); \

Completed in 49 milliseconds