Searched refs:p_src (Results 1 - 24 of 24) sorted by relevance

/external/bluetooth/bluedroid/bta/include/
H A Dbta_av_sbc.h56 ** Description Given the source (p_src) audio data and
60 ** p_src: the data buffer that holds the source audio data
74 ** The number of bytes used in p_src (in *p_ret)
77 extern int bta_av_sbc_up_sample (void *p_src, void *p_dst,
85 ** Description Given the source (p_src) audio data and
89 ** p_src: the data buffer that holds the source audio data
95 ** The number of bytes used in p_src (in *p_ret)
98 extern int bta_av_sbc_up_sample_16s (void *p_src, void *p_dst,
106 ** Description Given the source (p_src) audio data and
110 ** p_src
[all...]
H A Dbta_api.h1506 ** Parameters p_src: pointer to the buffer where the original sampling PCM
1516 BTA_API extern INT32 BTA_DmPcmResample (void *p_src, UINT32 in_bytes, void *p_dst);
/external/bluetooth/bluedroid/bta/av/
H A Dbta_av_sbc.c30 typedef int (tBTA_AV_SBC_ACT)(void *p_src, void *p_dst,
105 ** Description Given the source (p_src) audio data and
109 ** p_src: the data buffer that holds the source audio data
123 ** The number of bytes used in p_src (in *p_ret)
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);
150 ** Description Given the source (p_src) audio data and
154 ** p_src: the data buffer that holds the source audio data
160 ** The number of bytes used in p_src (in *p_ret)
163 int bta_av_sbc_up_sample_16s (void *p_src, voi 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.c375 ** p_src: the byte sequence to parse..
390 void A2D_ParsSbcMplHdr(UINT8 *p_src, BOOLEAN *p_frag, BOOLEAN *p_start, BOOLEAN *p_last, UINT8 *p_num) argument
392 if(p_src && p_frag && p_start && p_last && p_num)
394 *p_frag = (*p_src & A2D_SBC_HDR_F_MSK) ? TRUE: FALSE;
395 *p_start= (*p_src & A2D_SBC_HDR_S_MSK) ? TRUE: FALSE;
396 *p_last = (*p_src & A2D_SBC_HDR_L_MSK) ? TRUE: FALSE;
397 *p_num = (*p_src & A2D_SBC_HDR_NUM_MSK);
/external/ipsec-tools/src/libipsec/
H A Dpolicy_parse.y106 static struct sockaddr *p_src = NULL;
279 if (set_x_request(p_src, p_dst) < 0)
324 p_src = parse_sockaddr(&$1, NULL);
325 if (p_src == NULL)
335 p_src = parse_sockaddr(&$1, &$2);
336 if (p_src == NULL)
455 if (p_src == NULL && p_dst == NULL) {
461 else if (p_src->sa_family != p_dst->sa_family) {
573 if (p_src != NULL) {
574 free(p_src);
[all...]
/external/bluetooth/bluedroid/stack/include/
H A Da2d_sbc.h190 ** p_src: the byte sequence to parse..
205 A2D_API extern void A2D_ParsSbcMplHdr(UINT8 *p_src, BOOLEAN *p_frag,
H A Dbtm_api.h1201 #define BTM_SEC_COPY_TRUSTED_DEVICE(p_src, p_dst) {int trst; for (trst = 0; trst < BTM_SEC_SERVICE_ARRAY_SIZE; trst++) \
1202 ((UINT32 *)(p_dst))[trst] = ((UINT32 *)(p_src))[trst];}
/external/libnfc-nci/halimpl/bcm2079x/hal/hal/
H A Dnfc_hal_prm.c103 UINT8 *p_src; local
119 p_src = (UINT8*) (nfc_hal_cb.prm.p_cur_patch_data + offset);
120 STREAM_TO_UINT8 (hcit, p_src);
121 STREAM_TO_UINT8 (hdr0, p_src);
122 STREAM_TO_UINT8 (oid, p_src);
123 STREAM_TO_UINT8 (len, p_src);
124 STREAM_TO_UINT8 (type, p_src);
142 p_src += NCI_SPD_HEADER_OFFSET_CHIPVERLEN;
143 STREAM_TO_UINT8 (chipverlen, p_src);
144 STREAM_TO_ARRAY (chipverstr, p_src, NCI_SPD_HEADER_CHIPVER_LE
[all...]
/external/bluetooth/bluedroid/btif/include/
H A Dbtif_common.h145 typedef void (tBTIF_COPY_CBACK) (UINT16 event, char *p_dest, char *p_src);
/external/libvpx/vp8/common/
H A Dpostproc.c140 unsigned char *p_src, *p_dst; local
152 p_src = src_ptr;
159 int v = p_src[col];
163 if (abs(v - p_src[col+i*pitch]) > flimit)
166 kernel += kernel5[2+i] * p_src[col+i*pitch];
175 p_src = dst_ptr;
179 d[i] = p_src[i];
184 v = p_src[col];
190 if (abs(v - p_src[col+i]) > flimit)
193 kernel += kernel5[2+i] * p_src[co
[all...]
/external/libnfc-nci/src/nfc/tags/
H A Dce_t3t.c402 UINT8 *p_src = p_cb->cur_cmd.p_block_list_start; local
429 STREAM_TO_UINT8 (bl0, p_src);
433 STREAM_TO_UINT8 (block_number, p_src);
437 STREAM_TO_UINT16 (block_number, p_src);
H A Dce_t4t.c164 UINT8 *p_src = NULL, *p_dst; local
172 p_src = p_t4t->cc_file;
177 p_src = p_t4t->p_scratch_buf;
179 p_src = p_t4t->p_ndef_msg;
182 if (p_src)
228 memcpy (p_dst, p_src + offset, length);
/external/libnfc-nci/src/nfc/ndef/
H A Dndef_utils.c59 static void shiftup (UINT8 *p_dest, UINT8 *p_src, UINT32 len) argument
61 register UINT8 *ps = p_src;
1517 tNDEF_STATUS NDEF_MsgCopyAndDechunk (UINT8 *p_src, UINT32 src_len, UINT8 *p_dest, UINT32 *p_out_len) argument
1528 if ((status = NDEF_MsgValidate(p_src, src_len, TRUE)) != NDEF_OK)
1537 p_rec = p_src;
/external/bluetooth/bluedroid/bta/dm/
H A Dbta_dm_sco.c661 ** Parameters p_src: pointer to the buffer where the original sampling PCM
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/btif/src/
H A Dbtif_dm.c442 static void search_devices_copy_cb(UINT16 event, char *p_dest, char *p_src) argument
445 tBTA_DM_SEARCH *p_src_data = (tBTA_DM_SEARCH *) p_src;
447 if (!p_src)
477 static void search_services_copy_cb(UINT16 event, char *p_dest, char *p_src) argument
480 tBTA_DM_SEARCH *p_src_data = (tBTA_DM_SEARCH *) p_src;
482 if (!p_src)
/external/bluetooth/bluedroid/gki/common/
H A Dgki.h391 GKI_API extern void GKI_shiftup (UINT8 *p_dest, UINT8 *p_src, UINT32 len);
/external/libnfc-nci/halimpl/bcm2079x/gki/common/
H A Dgki.h403 GKI_API extern void GKI_shiftup (UINT8 *p_dest, UINT8 *p_src, UINT32 len);
/external/libnfc-nci/src/gki/common/
H A Dgki.h405 GKI_API extern void GKI_shiftup (UINT8 *p_dest, UINT8 *p_src, UINT32 len);
/external/libnfc-nci/src/nfc/include/
H A Dndef_utils.h382 EXPORT_NDEF_API extern tNDEF_STATUS NDEF_MsgCopyAndDechunk (UINT8 *p_src, UINT32 src_len, UINT8 *p_dest, UINT32 *p_out_len);
/external/libnfc-nci/halimpl/bcm2079x/gki/ulinux/
H A Dgki_ulinux.c1303 void GKI_shiftup (UINT8 *p_dest, UINT8 *p_src, UINT32 len) argument
1305 register UINT8 *ps = p_src;
/external/libnfc-nci/src/gki/ulinux/
H A Dgki_ulinux.c1278 void GKI_shiftup (UINT8 *p_dest, UINT8 *p_src, UINT32 len) argument
1280 register UINT8 *ps = p_src;
/external/bluetooth/bluedroid/stack/rfcomm/
H A Drfc_ts_frames.c506 UINT8 *p_src, *p_dest; local
511 p_src = (UINT8 *) (p_buf + 1) + p_buf->offset + p_buf->len - 1;
515 *p_dest-- = *p_src--;
/external/libnfc-nci/src/nfa/cho/
H A Dnfa_cho_util.c568 UINT8 *p_src, *p_dst; local
593 p_src = nfa_cho_cb.p_tx_ndef_msg + nfa_cho_cb.tx_ndef_sent_size;
595 memcpy (p_dst, p_src, tx_size);
/external/libnfc-nci/src/nfa/snep/
H A Dnfa_snep_act.c405 UINT8 *p_src, *p_dst; local
417 p_src = nfa_snep_cb.conn[dlink].p_ndef_buff + nfa_snep_cb.conn[dlink].cur_length;
436 memcpy (p_dst, p_src, length);

Completed in 425 milliseconds