Searched refs:p_dst (Results 1 - 21 of 21) sorted by relevance

/external/bluetooth/bluedroid/bta/include/
H A Dbta_av_sbc.h61 ** p_dst: the data buffer to hold the converted audio data
63 ** dst_samples: The size of p_dst (number of bytes)
73 ** Returns The number of bytes used in p_dst
77 extern int bta_av_sbc_up_sample (void *p_src, void *p_dst,
90 ** p_dst: the data buffer to hold the converted audio data
92 ** dst_samples: The size of p_dst (in uint of 4 bytes)
94 ** Returns The number of bytes used in p_dst
98 extern int bta_av_sbc_up_sample_16s (void *p_src, void *p_dst,
111 ** p_dst: the data buffer to hold the converted audio data
113 ** dst_samples: The size of p_dst (i
[all...]
H A Dbta_api.h1636 ** p_dst: pointer to the buffer which is to be used to store
1643 BTA_API extern INT32 BTA_DmPcmResample (void *p_src, UINT32 in_bytes, void *p_dst);
/external/libnfc-nci/src/nfc/tags/
H A Dce_t3t.c172 UINT8 *p_dst, *p_rsp_start; local
182 p_dst = p_rsp_start = (UINT8 *) (p_rsp_msg+1) + p_rsp_msg->offset;
185 UINT8_TO_STREAM (p_dst, opcode);
188 ARRAY_TO_STREAM (p_dst, p_nfcid2, NCI_RF_F_UID_LEN);
191 UINT8_TO_STREAM (p_dst, status1);
192 UINT8_TO_STREAM (p_dst, status2);
194 p_rsp_msg->len = (UINT16) (p_dst - p_rsp_start);
402 UINT8 *p_dst, *p_temp, *p_status; local
411 p_dst = p_rsp_start = (UINT8 *) (p_rsp_msg+1) + p_rsp_msg->offset;
414 UINT8_TO_STREAM (p_dst, T3T_MSG_OPC_CHECK_RS
559 UINT8 *p_dst; local
999 UINT8 *p_dst, *p_rsp_start; local
[all...]
H A Dce_t4t.c165 UINT8 *p_src = NULL, *p_dst; local
194 p_dst = (UINT8 *) (p_r_apdu + 1) + p_r_apdu->offset;
204 UINT16_TO_BE_STREAM (p_dst, p_t4t->nlen);
209 p_dst--;
216 UINT8_TO_BE_STREAM (p_dst, (UINT8) (p_t4t->nlen));
229 memcpy (p_dst, p_src + offset, length);
230 p_dst += length;
233 UINT16_TO_BE_STREAM (p_dst, T4T_RSP_CMD_CMPLTED);
H A Drw_t3t.c1784 UINT8 *p_dst, *p_cmd_start; local
1790 p_dst = p_cmd_start = (UINT8 *) (p_cmd_buf+1) + p_cmd_buf->offset;
1793 UINT8_TO_STREAM (p_dst, T3T_MSG_OPC_UPDATE_CMD);
1796 ARRAY_TO_STREAM (p_dst, p_cb->peer_nfcid2, NCI_NFCID2_LEN);
1799 UINT8_TO_STREAM (p_dst, 1); /* Number of services (only 1 service: NDEF) */
1800 UINT16_TO_STREAM (p_dst, T3T_MSG_NDEF_SC_RW); /* Service code (little-endian format) */
1803 UINT8_TO_STREAM (p_dst, 1);
1806 UINT8_TO_STREAM (p_dst, T3T_MSG_MASK_TWO_BYTE_BLOCK_DESC_FORMAT);
1807 UINT8_TO_STREAM (p_dst, block_id);
1810 ARRAY_TO_STREAM (p_dst, p_block_dat
[all...]
/external/bluetooth/bluedroid/bta/av/
H A Dbta_av_sbc.c30 typedef int (tBTA_AV_SBC_ACT)(void *p_src, void *p_dst,
110 ** p_dst: the data buffer to hold the converted audio data
112 ** dst_samples: The size of p_dst (number of bytes)
122 ** Returns The number of bytes used in p_dst
126 int bta_av_sbc_up_sample (void *p_src, void *p_dst, argument
137 return (*bta_av_sbc_ups_cb.p_act)(p_src, p_dst, src, dst, p_ret);
155 ** p_dst: the data buffer to hold the converted audio data
157 ** dst_samples: The size of p_dst (in uint of 4 bytes)
159 ** Returns The number of bytes used in p_dst
163 int bta_av_sbc_up_sample_16s (void *p_src, void *p_dst, argument
226 bta_av_sbc_up_sample_16m(void *p_src, void *p_dst, UINT32 src_samples, UINT32 dst_samples, UINT32 *p_ret) argument
291 bta_av_sbc_up_sample_8s(void *p_src, void *p_dst, UINT32 src_samples, UINT32 dst_samples, UINT32 *p_ret) argument
360 bta_av_sbc_up_sample_8m(void *p_src, void *p_dst, UINT32 src_samples, UINT32 dst_samples, UINT32 *p_ret) argument
[all...]
/external/bluetooth/bluedroid/stack/a2dp/
H A Da2d_sbc.c349 ** p_dst: the resulting media payload header byte sequence.
353 void A2D_BldSbcMplHdr(UINT8 *p_dst, BOOLEAN frag, BOOLEAN start, BOOLEAN last, UINT8 num) argument
355 if(p_dst)
357 *p_dst = 0;
359 *p_dst |= A2D_SBC_HDR_F_MSK;
361 *p_dst |= A2D_SBC_HDR_S_MSK;
363 *p_dst |= A2D_SBC_HDR_L_MSK;
364 *p_dst |= (A2D_SBC_HDR_NUM_MSK & num);
/external/ipsec-tools/src/libipsec/
H A Dpolicy_parse.y107 static struct sockaddr *p_dst = NULL;
279 if (set_x_request(p_src, p_dst) < 0)
330 p_dst = parse_sockaddr(&$4, NULL);
331 if (p_dst == NULL)
341 p_dst = parse_sockaddr(&$5, &$6);
342 if (p_dst == NULL)
455 if (p_src == NULL && p_dst == NULL) {
461 else if (p_src->sa_family != p_dst->sa_family) {
577 if (p_dst != NULL) {
578 free(p_dst);
[all...]
/external/bluetooth/bluedroid/stack/include/
H A Da2d_sbc.h176 ** p_dst: the resulting media payload header byte sequence.
180 A2D_API extern void A2D_BldSbcMplHdr(UINT8 *p_dst, BOOLEAN frag, BOOLEAN start,
H A Dbtm_api.h1249 #define BTM_SEC_COPY_TRUSTED_DEVICE(p_src, p_dst) {UINT32 trst; for (trst = 0; trst < BTM_SEC_SERVICE_ARRAY_SIZE; trst++) \
1250 ((UINT32 *)(p_dst))[trst] = ((UINT32 *)(p_src))[trst];}
1253 #define BTM_SEC_CLR_TRUSTED_DEVICE(p_dst) {UINT32 trst; for (trst = 0; trst < BTM_SEC_SERVICE_ARRAY_SIZE; trst++) \
1254 ((UINT32 *)(p_dst))[trst] = 0;}
/external/libnfc-nci/src/nfc/llcp/
H A Dllcp_dlc.c866 UINT8 *p, *p_dst, send_seq, rcv_seq, error_flags; local
963 p_dst = (UINT8*) (p_last_buf + 1) + p_last_buf->offset + p_last_buf->len;
966 UINT16_TO_BE_STREAM (p_dst, info_len);
971 memcpy (p_dst, p, info_len);
1005 p_dst = (UINT8*) (p_msg + 1);
1008 UINT16_TO_BE_STREAM (p_dst, info_len);
1011 memcpy (p_dst, p, info_len);
H A Dllcp_link.c980 UINT8 *p_dst; local
1025 p_dst = (UINT8*) (p_last_buf + 1) + p_last_buf->offset + p_last_buf->len;
1028 UINT16_TO_BE_STREAM (p_dst, ui_pdu_length);
1031 memcpy (p_dst, p_ui_pdu, ui_pdu_length);
1062 p_dst = (UINT8*) (p_msg + 1);
1065 UINT16_TO_BE_STREAM (p_dst, ui_pdu_length);
1067 memcpy (p_dst, p_ui_pdu, ui_pdu_length);
/external/libvpx/libvpx/vp9/common/
H A Dvp9_postproc.c141 uint8_t *p_dst; local
153 p_dst = dst_ptr;
168 p_dst[col] = v;
173 p_dst = dst_ptr;
195 p_dst[col - 2] = d[(col - 2) & 7];
199 p_dst[col - 2] = d[(col - 2) & 7];
200 p_dst[col - 1] = d[(col - 1) & 7];
/external/libvpx/libvpx/vp8/common/
H A Dpostproc.c142 unsigned char *p_src, *p_dst; local
152 p_dst = dst_ptr;
173 p_dst[col] = v;
178 p_dst = dst_ptr;
202 p_dst[col - 2] = d[(col - 2) & 3];
206 p_dst[col - 2] = d[(col - 2) & 3];
207 p_dst[col - 1] = d[(col - 1) & 3];
/external/bluetooth/bluedroid/bta/dm/
H A Dbta_dm_sco.c664 ** p_dst: pointer to the buffer which is to be used to store
671 INT32 BTA_DmPcmResample (void *p_src, UINT32 in_bytes, void *p_dst) argument
680 out_sample = (*bta_dm_pcm_cb.filter) (p_src, p_dst, (in_bytes / bta_dm_pcm_cb.divisor),
685 out_sample = (*bta_dm_pcm_cb.nofilter) (p_src, p_dst,
/external/bluetooth/bluedroid/stack/gatt/
H A Dgatt_db.c42 static BOOLEAN copy_extra_byte_in_db(tGATT_SVC_DB *p_db, void **p_dst, UINT16 len);
1015 ** p_dst: destination data pointer.
1022 static BOOLEAN copy_extra_byte_in_db(tGATT_SVC_DB *p_db, void **p_dst, UINT16 len) argument
1024 UINT8 *p = (UINT8 *)*p_dst;
1039 *p_dst = (void *)p;
H A Dgatt_utils.c1025 UINT8 gatt_build_uuid_to_stream(UINT8 **p_dst, tBT_UUID uuid) argument
1027 UINT8 *p = *p_dst;
1041 *p_dst = p;
H A Dgatt_int.h556 extern UINT8 gatt_build_uuid_to_stream(UINT8 **p_dst, tBT_UUID uuid);
/external/valgrind/main/none/tests/ppc32/
H A Djm-insns.c5954 double src, *p_dst; local
5978 p_dst = &fargs_priv[nb_tmp_fargs-1 + i];
5982 p_dst = &fargs_priv[i];
5985 *p_dst = 0; // clear dst
6006 double_to_bits(*p_dst), r15-base);
6021 double src, *p_dst; local
6046 p_dst = &fargs_priv[nb_tmp_fargs-1 + i];
6050 p_dst = &fargs_priv[i];
6053 *p_dst = 0; // clear dst
6069 double_to_bits(*p_dst), r1
[all...]
/external/valgrind/main/none/tests/ppc64/
H A Djm-insns.c5954 double src, *p_dst; local
5978 p_dst = &fargs_priv[nb_tmp_fargs-1 + i];
5982 p_dst = &fargs_priv[i];
5985 *p_dst = 0; // clear dst
6006 double_to_bits(*p_dst), r15-base);
6021 double src, *p_dst; local
6046 p_dst = &fargs_priv[nb_tmp_fargs-1 + i];
6050 p_dst = &fargs_priv[i];
6053 *p_dst = 0; // clear dst
6069 double_to_bits(*p_dst), r1
[all...]
/external/bluetooth/bluedroid/stack/btm/
H A Dbtm_ble_gap.c52 static UINT8 *btm_ble_build_adv_data(tBTM_BLE_AD_MASK *p_data_mask, UINT8 **p_dst, tBTM_BLE_ADV_DATA *p_data);
734 static UINT8 *btm_ble_build_adv_data(tBTM_BLE_AD_MASK *p_data_mask, UINT8 **p_dst, tBTM_BLE_ADV_DATA *p_data) argument
737 UINT8 *p = *p_dst,
880 *p_dst = p;

Completed in 451 milliseconds