Home
last modified time | relevance | path

Searched refs:p_dst (Results 1 – 16 of 16) sorted by relevance

/hal_espressif-latest/components/bt/host/bluedroid/bta/include/bta/
Dbta_av_sbc.h79 extern int bta_av_sbc_up_sample (void *p_src, void *p_dst,
100 extern int bta_av_sbc_up_sample_16s (void *p_src, void *p_dst,
121 extern int bta_av_sbc_up_sample_16m (void *p_src, void *p_dst,
142 extern int bta_av_sbc_up_sample_8s (void *p_src, void *p_dst,
163 extern int bta_av_sbc_up_sample_8m (void *p_src, void *p_dst,
Dbta_api.h2230 extern INT32 BTA_DmPcmResample (void *p_src, UINT32 in_bytes, void *p_dst);
/hal_espressif-latest/components/bt/host/bluedroid/stack/a2dp/
Da2d_sbc.c179 void A2D_BldSbcMplHdr(UINT8 *p_dst, BOOLEAN frag, BOOLEAN start, BOOLEAN last, UINT8 num) in A2D_BldSbcMplHdr() argument
181 if (p_dst) { in A2D_BldSbcMplHdr()
182 *p_dst = 0; in A2D_BldSbcMplHdr()
184 *p_dst |= A2D_SBC_HDR_F_MSK; in A2D_BldSbcMplHdr()
187 *p_dst |= A2D_SBC_HDR_S_MSK; in A2D_BldSbcMplHdr()
190 *p_dst |= A2D_SBC_HDR_L_MSK; in A2D_BldSbcMplHdr()
192 *p_dst |= (A2D_SBC_HDR_NUM_MSK & num); in A2D_BldSbcMplHdr()
/hal_espressif-latest/components/bt/host/bluedroid/bta/av/
Dbta_av_sbc.c110 int bta_av_sbc_up_sample (void *p_src, void *p_dst, in bta_av_sbc_up_sample() argument
120 return (*bta_av_sbc_ups_cb.p_act)(p_src, p_dst, src, dst, p_ret); in bta_av_sbc_up_sample()
144 int bta_av_sbc_up_sample_16s (void *p_src, void *p_dst, in bta_av_sbc_up_sample_16s() argument
149 INT16 *p_dst_tmp = (INT16 *)p_dst; in bta_av_sbc_up_sample_16s()
185 return ((char *)p_dst_tmp - (char *)p_dst); in bta_av_sbc_up_sample_16s()
205 int bta_av_sbc_up_sample_16m (void *p_src, void *p_dst, in bta_av_sbc_up_sample_16m() argument
210 INT16 *p_dst_tmp = (INT16 *)p_dst; in bta_av_sbc_up_sample_16m()
248 return ((char *)p_dst_tmp - (char *)p_dst); in bta_av_sbc_up_sample_16m()
268 int bta_av_sbc_up_sample_8s (void *p_src, void *p_dst, in bta_av_sbc_up_sample_8s() argument
273 INT16 *p_dst_tmp = (INT16 *)p_dst; in bta_av_sbc_up_sample_8s()
[all …]
/hal_espressif-latest/components/bt/esp_ble_mesh/btc/
Dbtc_ble_mesh_ble.c18 static void btc_ble_mesh_ble_copy_req_data(btc_msg_t *msg, void *p_dst, void *p_src) in btc_ble_mesh_ble_copy_req_data() argument
21 esp_ble_mesh_ble_cb_param_t *p_dst_data = (esp_ble_mesh_ble_cb_param_t *)p_dst; in btc_ble_mesh_ble_copy_req_data()
/hal_espressif-latest/components/bt/host/bluedroid/stack/include/stack/
Da2d_sbc.h159 extern void A2D_BldSbcMplHdr(UINT8 *p_dst, BOOLEAN frag, BOOLEAN start,
Dbtm_api.h1343 #define BTM_SEC_COPY_TRUSTED_DEVICE(p_src, p_dst) {UINT32 trst; for (trst = 0; trst < BTM_SEC_SER… argument
1344 … ((UINT32 *)(p_dst))[trst] = ((UINT32 *)(p_src))[trst];}
1347 #define BTM_SEC_CLR_TRUSTED_DEVICE(p_dst) {UINT32 trst; for (trst = 0; trst < BTM_SEC_SERVICE_ARR… argument
1348 ((UINT32 *)(p_dst))[trst] = 0;}
/hal_espressif-latest/components/bt/host/bluedroid/bta/dm/
Dbta_dm_sco.c653 INT32 BTA_DmPcmResample (void *p_src, UINT32 in_bytes, void *p_dst) in BTA_DmPcmResample() argument
661 … out_sample = (*p_bta_dm_pcm_cb->filter) (p_src, p_dst, (in_bytes / p_bta_dm_pcm_cb->divisor), in BTA_DmPcmResample()
664 out_sample = (*p_bta_dm_pcm_cb->nofilter) (p_src, p_dst, in BTA_DmPcmResample()
/hal_espressif-latest/components/bt/host/bluedroid/stack/gatt/
Dgatt_db.c47 static BOOLEAN copy_extra_byte_in_db(tGATT_SVC_DB *p_db, void **p_dst, UINT16 len);
1435 static BOOLEAN copy_extra_byte_in_db(tGATT_SVC_DB *p_db, void **p_dst, UINT16 len) in copy_extra_byte_in_db() argument
1437 UINT8 *p = (UINT8 *)*p_dst; in copy_extra_byte_in_db()
1450 *p_dst = (void *)p; in copy_extra_byte_in_db()
Dgatt_utils.c1200 UINT8 gatt_build_uuid_to_stream(UINT8 **p_dst, tBT_UUID uuid) in gatt_build_uuid_to_stream() argument
1202 UINT8 *p = *p_dst; in gatt_build_uuid_to_stream()
1217 *p_dst = p; in gatt_build_uuid_to_stream()
/hal_espressif-latest/components/bt/host/bluedroid/btc/profile/std/hid/
Dbtc_hd.c94 static void bte_hd_arg_deep_copy(btc_msg_t *msg, void *p_dst, void *p_src) in bte_hd_arg_deep_copy() argument
96 tBTA_HD *p_dst_data = (tBTA_HD *)p_dst; in bte_hd_arg_deep_copy()
Dbtc_hh.c349 static void bte_hh_arg_deep_copy(btc_msg_t *msg, void *p_dst, void *p_src) in bte_hh_arg_deep_copy() argument
351 tBTA_HH *p_dst_data = (tBTA_HH *)p_dst; in bte_hh_arg_deep_copy()
/hal_espressif-latest/components/bt/host/bluedroid/stack/btm/include/
Dbtm_ble_int.h417 UINT8 *btm_ble_build_adv_data(tBTM_BLE_AD_MASK *p_data_mask, UINT8 **p_dst, tBTM_BLE_ADV_DATA *p_da…
/hal_espressif-latest/components/bt/host/bluedroid/bta/av/include/
Dbta_av_int.h550 typedef int (tBTA_AV_SBC_ACT)(void *p_src, void *p_dst,
/hal_espressif-latest/components/bt/host/bluedroid/stack/gatt/include/
Dgatt_int.h627 extern UINT8 gatt_build_uuid_to_stream(UINT8 **p_dst, tBT_UUID uuid);
/hal_espressif-latest/components/bt/host/bluedroid/stack/btm/
Dbtm_ble_gap.c79 UINT8 *btm_ble_build_adv_data(tBTM_BLE_AD_MASK *p_data_mask, UINT8 **p_dst,
2218 UINT8 *btm_ble_build_adv_data(tBTM_BLE_AD_MASK *p_data_mask, UINT8 **p_dst, in btm_ble_build_adv_data() argument
2222 UINT8 *p = *p_dst, in btm_ble_build_adv_data()
2455 *p_dst = p; in btm_ble_build_adv_data()