Searched refs:p_dst (Results 1 – 1 of 1) sorted by relevance
/device/linaro/dragonboard/qcom/qrtr/lib/ |
D | qmi.c | 54 #define QMI_ENCDEC_ENCODE_TLV(type, length, p_dst) do { \ argument 55 *p_dst++ = type; \ 56 *p_dst++ = ((uint8_t)((length) & 0xFF)); \ 57 *p_dst++ = ((uint8_t)(((length) >> 8) & 0xFF)); \ 66 #define QMI_ENCDEC_ENCODE_N_BYTES(p_dst, p_src, size) \ argument 68 memcpy(p_dst, p_src, size); \ 69 p_dst = (uint8_t *)p_dst + size; \ 73 #define QMI_ENCDEC_DECODE_N_BYTES(p_dst, p_src, size) \ argument 75 memcpy(p_dst, p_src, size); \ 76 p_dst = (uint8_t *)p_dst + size; \
|