HomeSort by relevance Sort by last modified time
    Searched refs:p_dst (Results 1 - 18 of 18) sorted by null

  /external/bluetooth/bluedroid/bta/include/
bta_av_sbc.h 61 ** 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 (in uint of 2 bytes
    [all...]
bta_api.h     [all...]
  /external/bluetooth/bluedroid/bta/av/
bta_av_sbc.c 30 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,
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,
    [all...]
  /external/bluetooth/bluedroid/stack/a2dp/
a2d_sbc.c 349 ** p_dst: the resulting media payload header byte sequence.
353 void A2D_BldSbcMplHdr(UINT8 *p_dst, BOOLEAN frag, BOOLEAN start, BOOLEAN last, UINT8 num)
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/
policy_parse.y 107 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/
a2d_sbc.h 176 ** p_dst: the resulting media payload header byte sequence.
180 A2D_API extern void A2D_BldSbcMplHdr(UINT8 *p_dst, BOOLEAN frag, BOOLEAN start,
btm_api.h     [all...]
  /external/libnfc-nci/src/nfc/llcp/
llcp_dlc.c 841 UINT8 *p, *p_dst, send_seq, rcv_seq, error_flags; local
938 p_dst = (UINT8*) (p_last_buf + 1) + p_last_buf->offset + p_last_buf->len;
941 UINT16_TO_BE_STREAM (p_dst, info_len);
946 memcpy (p_dst, p, info_len);
    [all...]
llcp_link.c 931 UINT8 *p_dst; local
    [all...]
  /external/libvpx/vp8/common/
postproc.c 140 unsigned char *p_src, *p_dst; local
153 p_dst = dst_ptr;
171 p_dst[col] = v;
176 p_dst = dst_ptr;
200 p_dst[col-2] = d[(col-2)&7];
204 p_dst[col-2] = d[(col-2)&7];
205 p_dst[col-1] = d[(col-1)&7];
    [all...]
  /external/bluetooth/bluedroid/bta/dm/
bta_dm_sco.c 664 ** 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)
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/
gatt_db.c 42 static BOOLEAN copy_extra_byte_in_db(tGATT_SVC_DB *p_db, void **p_dst, UINT16 len);
    [all...]
gatt_utils.c 1006 UINT8 gatt_build_uuid_to_stream(UINT8 **p_dst, tBT_UUID uuid)
1008 UINT8 *p = *p_dst;
1022 *p_dst = p;
    [all...]
gatt_int.h 544 extern UINT8 gatt_build_uuid_to_stream(UINT8 **p_dst, tBT_UUID uuid);
  /external/valgrind/main/none/tests/ppc32/
jm-insns.c 5924 double src, *p_dst; local
5991 double src, *p_dst; local
    [all...]
  /external/bluetooth/bluedroid/stack/btm/
btm_ble_gap.c 59 static UINT8 *btm_ble_build_adv_data(tBTM_BLE_AD_MASK *p_data_mask, UINT8 **p_dst, tBTM_BLE_ADV_DATA *p_data);
707 static UINT8 *btm_ble_build_adv_data(tBTM_BLE_AD_MASK *p_data_mask, UINT8 **p_dst, tBTM_BLE_ADV_DATA *p_data)
710 UINT8 *p = *p_dst,
864 *p_dst = p;
    [all...]
  /external/libnfc-nci/src/nfa/cho/
nfa_cho_util.c 568 UINT8 *p_src, *p_dst; local
592 p_dst = (UINT8*) (p_msg + 1) + p_msg->offset;
595 memcpy (p_dst, p_src, tx_size);
    [all...]
  /external/libnfc-nci/src/nfa/snep/
nfa_snep_act.c 405 UINT8 *p_src, *p_dst; local
434 p_dst = (UINT8*) (p_msg + 1) + p_msg->offset;
436 memcpy (p_dst, p_src, length);
    [all...]

Completed in 930 milliseconds