Home
last modified time | relevance | path

Searched refs:_d (Results 1 – 25 of 83) sorted by relevance

1234

/kernel/linux/linux-4.19/arch/arm/crypto/
Dsha1-armv7-neon.S54 #define _d r7 macro
332 _R( _a, _b, _c, _d, _e, F1, 0,
335 _R( _e, _a, _b, _c, _d, F1, 1,
338 _R( _d, _e, _a, _b, _c, F1, 2,
341 _R( _c, _d, _e, _a, _b, F1, 3,
347 _R( _b, _c, _d, _e, _a, F1, 4,
350 _R( _a, _b, _c, _d, _e, F1, 5,
353 _R( _e, _a, _b, _c, _d, F1, 6,
356 _R( _d, _e, _a, _b, _c, F1, 7,
360 _R( _c, _d, _e, _a, _b, F1, 8,
[all …]
/kernel/linux/linux-5.10/arch/arm/crypto/
Dsha1-armv7-neon.S50 #define _d r7 macro
328 _R( _a, _b, _c, _d, _e, F1, 0,
331 _R( _e, _a, _b, _c, _d, F1, 1,
334 _R( _d, _e, _a, _b, _c, F1, 2,
337 _R( _c, _d, _e, _a, _b, F1, 3,
343 _R( _b, _c, _d, _e, _a, F1, 4,
346 _R( _a, _b, _c, _d, _e, F1, 5,
349 _R( _e, _a, _b, _c, _d, F1, 6,
352 _R( _d, _e, _a, _b, _c, F1, 7,
356 _R( _c, _d, _e, _a, _b, F1, 8,
[all …]
/kernel/linux/linux-4.19/drivers/virtio/
Dvirtio.c11 static ssize_t device_show(struct device *_d, in device_show() argument
14 struct virtio_device *dev = dev_to_virtio(_d); in device_show()
19 static ssize_t vendor_show(struct device *_d, in vendor_show() argument
22 struct virtio_device *dev = dev_to_virtio(_d); in vendor_show()
27 static ssize_t status_show(struct device *_d, in status_show() argument
30 struct virtio_device *dev = dev_to_virtio(_d); in status_show()
35 static ssize_t modalias_show(struct device *_d, in modalias_show() argument
38 struct virtio_device *dev = dev_to_virtio(_d); in modalias_show()
44 static ssize_t features_show(struct device *_d, in features_show() argument
47 struct virtio_device *dev = dev_to_virtio(_d); in features_show()
[all …]
/kernel/linux/linux-5.10/drivers/virtio/
Dvirtio.c12 static ssize_t device_show(struct device *_d, in device_show() argument
15 struct virtio_device *dev = dev_to_virtio(_d); in device_show()
20 static ssize_t vendor_show(struct device *_d, in vendor_show() argument
23 struct virtio_device *dev = dev_to_virtio(_d); in vendor_show()
28 static ssize_t status_show(struct device *_d, in status_show() argument
31 struct virtio_device *dev = dev_to_virtio(_d); in status_show()
36 static ssize_t modalias_show(struct device *_d, in modalias_show() argument
39 struct virtio_device *dev = dev_to_virtio(_d); in modalias_show()
45 static ssize_t features_show(struct device *_d, in features_show() argument
48 struct virtio_device *dev = dev_to_virtio(_d); in features_show()
[all …]
/kernel/linux/linux-4.19/drivers/hwtracing/intel_th/
Dintel_th.h83 #define to_intel_th_device(_d) \ argument
84 container_of((_d), struct intel_th_device, dev)
176 #define to_intel_th_driver(_d) \ argument
177 container_of((_d), struct intel_th_driver, driver)
179 #define to_intel_th_driver_or_null(_d) \ argument
180 ((_d) ? to_intel_th_driver(_d) : NULL)
/kernel/linux/linux-5.10/drivers/hwtracing/intel_th/
Dintel_th.h92 #define to_intel_th_device(_d) \ argument
93 container_of((_d), struct intel_th_device, dev)
191 #define to_intel_th_driver(_d) \ argument
192 container_of((_d), struct intel_th_driver, driver)
194 #define to_intel_th_driver_or_null(_d) \ argument
195 ((_d) ? to_intel_th_driver(_d) : NULL)
/kernel/linux/linux-4.19/drivers/hwtracing/stm/
Dstm.h48 #define to_stm_device(_d) \ argument
49 container_of((_d), struct stm_device, dev)
78 #define to_stm_source_device(_d) \ argument
79 container_of((_d), struct stm_source_device, dev)
/kernel/linux/linux-5.10/drivers/hwtracing/stm/
Dstm.h48 #define to_stm_device(_d) \ argument
49 container_of((_d), struct stm_device, dev)
89 #define to_stm_source_device(_d) \ argument
90 container_of((_d), struct stm_source_device, dev)
/kernel/linux/linux-4.19/include/linux/
Dfmc.h90 #define FMC_PARAM_BUSID(_d) \ argument
91 module_param_array_named(busid, _d.busid_val, int, &_d.busid_n, 0444)
92 #define FMC_PARAM_GATEWARE(_d) \ argument
93 module_param_array_named(gateware, _d.gw_val, charp, &_d.gw_n, 0444)
Doverflow.h234 typeof(d) _d = d; \
238 *_d = (_a_full << _to_shift); \
239 (_to_shift != _s || is_negative(*_d) || is_negative(_a) || \
240 (*_d >> _to_shift) != _a); \
/kernel/linux/linux-4.19/drivers/gpu/drm/nouveau/include/nvkm/core/
Dmemory.h86 u64 _a = (a), _c = (c), _d = (d), _o = _a >> s, _s = _c << s; \
89 if (_d) { \
91 iowrite##t##_native(_d, &_m[_o++]); \
93 memset_io(&_m[_o], _d, _s); \
97 nvkm_wo##t((o), _a, _d); \
/kernel/linux/linux-5.10/drivers/gpu/drm/nouveau/include/nvkm/core/
Dmemory.h104 u64 _a = (a), _c = (c), _d = (d), _o = _a >> s, _s = _c << s; \
107 if (_d) { \
109 iowrite##t##_native(_d, &_m[_o++]); \
111 memset_io(&_m[_o], _d, _s); \
115 nvkm_wo##t((o), _a, _d); \
/kernel/linux/linux-4.19/arch/arm/include/asm/hardware/
Dlocomo.h182 #define LOCOMO_DEV(_d) container_of((_d), struct locomo_dev, dev) argument
194 #define LOCOMO_DRV(_d) container_of((_d), struct locomo_driver, drv) argument
/kernel/linux/linux-5.10/arch/arm/include/asm/hardware/
Dlocomo.h182 #define LOCOMO_DEV(_d) container_of((_d), struct locomo_dev, dev) argument
194 #define LOCOMO_DRV(_d) container_of((_d), struct locomo_driver, drv) argument
/kernel/linux/linux-4.19/arch/mips/include/asm/sn/
Daddrs.h270 #define HUB_S(_a, _d) *(_a) = (_d) argument
273 #define LOCAL_HUB_S(_r, _d) HUB_S(LOCAL_HUB_ADDR(_r), (_d)) argument
275 #define REMOTE_HUB_S(_n, _r, _d) HUB_S(REMOTE_HUB_ADDR((_n), (_r)), (_d)) argument
277 #define REMOTE_HUB_PI_S(_n, _sn, _r, _d) HUB_S(REMOTE_HUB_PI_ADDR((_n), (_sn), (_r)), (_d)) argument
/kernel/linux/linux-4.19/arch/arm/include/asm/
Decard.h200 #define ECARD_DEV(_d) container_of((_d), struct expansion_card, dev) argument
211 #define ECARD_DRV(_d) container_of((_d), struct ecard_driver, drv) argument
/kernel/linux/linux-5.10/arch/arm/include/asm/
Decard.h200 #define ECARD_DEV(_d) container_of((_d), struct expansion_card, dev) argument
211 #define ECARD_DRV(_d) container_of((_d), struct ecard_driver, drv) argument
/kernel/linux/linux-4.19/drivers/gpu/drm/nouveau/dispnv50/
Ddisp.h85 const u32 _d = (d); \
87 pr_err("\t%08x\n", _d); \
88 *((p)++) = _d; \
/kernel/linux/linux-5.10/drivers/soc/fsl/qbman/
Dqman_priv.h133 u32 *_d = dest->q.state; in qman_cgrs_and() local
138 *_d++ = *_a++ & *_b++; in qman_cgrs_and()
145 u32 *_d = dest->q.state; in qman_cgrs_xor() local
150 *_d++ = *_a++ ^ *_b++; in qman_cgrs_xor()
/kernel/linux/linux-4.19/drivers/soc/fsl/qbman/
Dqman_priv.h133 u32 *_d = dest->q.state; in qman_cgrs_and() local
138 *_d++ = *_a++ & *_b++; in qman_cgrs_and()
145 u32 *_d = dest->q.state; in qman_cgrs_xor() local
150 *_d++ = *_a++ ^ *_b++; in qman_cgrs_xor()
/kernel/linux/linux-4.19/drivers/net/wireless/ath/wil6210/
Dtxrx.c171 volatile struct vring_tx_desc *_d = in wil_vring_alloc() local
174 _d->dma.status = TX_DMA_STATUS_DU; in wil_vring_alloc()
227 volatile struct vring_tx_desc *_d = in wil_vring_free() local
238 *d = *_d; in wil_vring_free()
245 volatile struct vring_rx_desc *_d = in wil_vring_free() local
249 *d = *_d; in wil_vring_free()
275 volatile struct vring_rx_desc *_d = &vring->va[i].rx.legacy; in wil_vring_alloc_skb() local
304 *_d = *d; in wil_vring_alloc_skb()
420 struct vring_rx_desc *_d; in wil_is_rx_idle() local
423 _d = (struct vring_rx_desc *)&ring->va[ring->swhead].rx.legacy; in wil_is_rx_idle()
[all …]
/kernel/linux/linux-5.10/drivers/net/wireless/ath/wil6210/
Dtxrx.c159 volatile struct vring_tx_desc *_d = in wil_vring_alloc() local
162 _d->dma.status = TX_DMA_STATUS_DU; in wil_vring_alloc()
215 volatile struct vring_tx_desc *_d = in wil_vring_free() local
226 *d = *_d; in wil_vring_free()
233 volatile struct vring_rx_desc *_d = in wil_vring_free() local
237 *d = *_d; in wil_vring_free()
262 volatile struct vring_rx_desc *_d = &vring->va[i].rx.legacy; in wil_vring_alloc_skb() local
291 *_d = *d; in wil_vring_alloc_skb()
353 struct vring_rx_desc *_d; in wil_is_rx_idle() local
356 _d = (struct vring_rx_desc *)&ring->va[ring->swhead].rx.legacy; in wil_is_rx_idle()
[all …]
/kernel/linux/linux-5.10/include/linux/
Doverflow.h243 typeof(d) _d = d; \
247 *_d = (_a_full << _to_shift); \
248 (_to_shift != _s || is_negative(*_d) || is_negative(_a) || \
249 (*_d >> _to_shift) != _a); \
/kernel/linux/linux-4.19/drivers/scsi/fnic/
Dfnic_trace.h87 #define FNIC_TRACE(_fn, _hn, _t, _a, _b, _c, _d, _e) \ argument
103 trace_buf->data[3] = (u64)(unsigned long)_d; \
/kernel/linux/linux-5.10/drivers/scsi/fnic/
Dfnic_trace.h87 #define FNIC_TRACE(_fn, _hn, _t, _a, _b, _c, _d, _e) \ argument
103 trace_buf->data[3] = (u64)(unsigned long)_d; \

1234