Home
last modified time | relevance | path

Searched refs:p_dst (Results 1 – 6 of 6) sorted by relevance

/drivers/staging/exfat/
Dexfat.h112 #define SET16(p_dst, src) \ argument
114 (p_dst)[0] = (u8)(src); \
115 (p_dst)[1] = (u8)(((u16)(src)) >> 8); \
117 #define SET32(p_dst, src) \ argument
119 (p_dst)[0] = (u8)(src); \
120 (p_dst)[1] = (u8)(((u32)(src)) >> 8); \
121 (p_dst)[2] = (u8)(((u32)(src)) >> 16); \
122 (p_dst)[3] = (u8)(((u32)(src)) >> 24); \
124 #define SET64(p_dst, src) \ argument
126 (p_dst)[0] = (u8)(src); \
[all …]
/drivers/soc/qcom/
Dqmi_encdec.c14 #define QMI_ENCDEC_ENCODE_TLV(type, length, p_dst) do { \ argument
15 *p_dst++ = type; \
16 *p_dst++ = ((u8)((length) & 0xFF)); \
17 *p_dst++ = ((u8)(((length) >> 8) & 0xFF)); \
26 #define QMI_ENCDEC_ENCODE_N_BYTES(p_dst, p_src, size) \ argument
28 memcpy(p_dst, p_src, size); \
29 p_dst = (u8 *)p_dst + size; \
33 #define QMI_ENCDEC_DECODE_N_BYTES(p_dst, p_src, size) \ argument
35 memcpy(p_dst, p_src, size); \
36 p_dst = (u8 *)p_dst + size; \
/drivers/net/ethernet/aquantia/atlantic/
Daq_filters.c525 data->p_dst = in aq_set_data_fl3l4()
530 data->p_dst = in aq_set_data_fl3l4()
540 if (data->p_dst) in aq_set_data_fl3l4()
/drivers/media/platform/vicodec/
Dvicodec-core.c264 u8 *p_src, *p_dst; in device_process() local
307 p_dst = vb2_plane_vaddr(&dst_vb->vb2_buf, 0); in device_process()
308 if (!p_src || !p_dst) { in device_process()
320 comp_sz_or_errcode = v4l2_fwht_encode(state, p_src, p_dst); in device_process()
332 ret = v4l2_fwht_decode(state, p_src, p_dst); in device_process()
336 copy_cap_to_ref(p_dst, ctx->state.info, &ctx->state); in device_process()
/drivers/net/ethernet/aquantia/atlantic/hw_atl/
Dhw_atl_utils.h265 u16 p_dst; member
Dhw_atl_b0.c1058 hw_atl_rpf_l4_dpd_set(self, data->p_dst, location); in hw_atl_b0_hw_fl3l4_set()