Searched refs:p_dst (Results 1 – 6 of 6) sorted by relevance
/drivers/staging/exfat/ |
D | exfat.h | 112 #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/ |
D | qmi_encdec.c | 14 #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/ |
D | aq_filters.c | 525 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/ |
D | vicodec-core.c | 264 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/ |
D | hw_atl_utils.h | 265 u16 p_dst; member
|
D | hw_atl_b0.c | 1058 hw_atl_rpf_l4_dpd_set(self, data->p_dst, location); in hw_atl_b0_hw_fl3l4_set()
|