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

  /system/bt/stack/include/
a2dp_sbc_up_sample.h 57 * p_dst: the data buffer to hold the converted audio data
59 * dst_samples: The size of p_dst (number of bytes)
69 * Returns The number of bytes used in p_dst
73 int a2dp_sbc_up_sample(void* p_src, void* p_dst, uint32_t src_samples,
86 * p_dst: the data buffer to hold the converted audio data
89 * dst_samples: The size of p_dst (in uint of 4 bytes)
91 * Returns The number of bytes used in p_dst
95 int a2dp_sbc_up_sample_16s(void* p_src, void* p_dst, uint32_t src_samples,
108 * p_dst: the data buffer to hold the converted audio data
111 * dst_samples: The size of p_dst (in uint of 2 bytes
    [all...]
btm_api_types.h     [all...]
  /system/bt/stack/a2dp/
a2dp_sbc_up_sample.cc 28 typedef int(tA2DP_SBC_ACT)(void* p_src, void* p_dst, uint32_t src_samples,
98 * p_dst: the data buffer to hold the converted audio data
100 * dst_samples: The size of p_dst (number of bytes)
110 * Returns The number of bytes used in p_dst
114 int a2dp_sbc_up_sample(void* p_src, void* p_dst, uint32_t src_samples,
122 return (*a2dp_sbc_ups_cb.p_act)(p_src, p_dst, src, dst, p_ret);
139 * p_dst: the data buffer to hold the converted audio data
142 * dst_samples: The size of p_dst (in uint of 4 bytes)
144 * Returns The number of bytes used in p_dst
148 int a2dp_sbc_up_sample_16s(void* p_src, void* p_dst, uint32_t src_samples
    [all...]
a2dp_vendor_ldac.cc 176 // |p_dst| points to the location where the header should be written to.
182 static void A2DP_BuildMediaPayloadHeaderLdac(uint8_t* p_dst, bool frag,
185 if (p_dst == NULL) return;
187 *p_dst = 0;
188 if (frag) *p_dst |= A2DP_LDAC_HDR_F_MSK;
189 if (start) *p_dst |= A2DP_LDAC_HDR_S_MSK;
190 if (last) *p_dst |= A2DP_LDAC_HDR_L_MSK;
191 *p_dst |= (A2DP_LDAC_HDR_NUM_MSK & num);
    [all...]
a2dp_sbc.cc 216 // |p_dst| points to the location where the header should be written to.
222 static void A2DP_BuildMediaPayloadHeaderSbc(uint8_t* p_dst, bool frag,
225 if (p_dst == NULL) return;
227 *p_dst = 0;
228 if (frag) *p_dst |= A2DP_SBC_HDR_F_MSK;
229 if (start) *p_dst |= A2DP_SBC_HDR_S_MSK;
230 if (last) *p_dst |= A2DP_SBC_HDR_L_MSK;
231 *p_dst |= (A2DP_SBC_HDR_NUM_MSK & num);
    [all...]
  /external/tensorflow/tensorflow/core/lib/gif/
gif_io.cc 119 uint8* p_dst = this_dst + i * width * channel; local
122 p_dst[j * channel + 0] = l_dst[j * channel + 0];
123 p_dst[j * channel + 1] = l_dst[j * channel + 1];
124 p_dst[j * channel + 2] = l_dst[j * channel + 2];
134 uint8* p_dst = this_dst + i * width * channel; local
140 p_dst[j * channel + 0] = gif_color.Red;
141 p_dst[j * channel + 1] = gif_color.Green;
142 p_dst[j * channel + 2] = gif_color.Blue;
  /external/libvpx/libvpx/vpx_dsp/
deblock.c 47 unsigned char *p_src, *p_dst; local
59 p_dst = dst_ptr;
78 p_dst[col] = v;
83 p_dst = dst_ptr;
104 if (col >= 2) p_dst[col - 2] = d[(col - 2) & 3];
108 p_dst[col - 2] = d[(col - 2) & 3];
109 p_dst[col - 1] = d[(col - 1) & 3];
  /external/libvpx/libvpx/
tools_common.c 300 uint16_t *p_dst = local
302 for (x = 0; x < w; x++) *p_dst++ = (*p_src++ << input_shift) + offset;
335 uint16_t *p_dst = local
338 *p_dst++ = (*p_src++ << input_shift) + offset;
377 uint8_t *p_dst = dst->planes[plane] + y * dst->stride[plane]; local
379 *p_dst++ = (uint8_t)(*p_src++);
412 uint16_t *p_dst = local
414 for (x = 0; x < w; x++) *p_dst++ = *p_src++ >> down_shift;
446 uint8_t *p_dst = dst->planes[plane] + y * dst->stride[plane]; local
448 *p_dst++ = *p_src++ >> down_shift
    [all...]
  /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/libvpx/libvpx/vpx_dsp/mips/
deblock_msa.c 149 uint8_t *p_dst = dst_ptr; local
179 p_dst, dst_stride);
181 p_dst += 16;
210 SD4(out0, out1, out2, out3, p_dst, dst_stride);
216 SD4(out0, out1, out2, out3, p_dst + 4 * dst_stride, dst_stride);
220 p_dst = dst_ptr - 2;
221 LD_UB8(p_dst, dst_stride, inter0, inter1, inter2, inter3, inter4, inter5,
273 p_dst += 8;
274 LD_UB2(p_dst, dst_stride, inter0, inter1);
277 LD_UB2(p_dst + 2 * dst_stride, dst_stride, inter2, inter3)
295 uint8_t *p_dst = dst_ptr; local
    [all...]
  /system/bt/btif/src/
btif_hd.cc 70 static void intr_data_copy_cb(uint16_t event, char* p_dst, char* p_src) {
71 tBTA_HD_INTR_DATA* p_dst_data = (tBTA_HD_INTR_DATA*)p_dst;
79 memcpy(p_dst, p_src, sizeof(tBTA_HD_INTR_DATA));
88 static void set_report_copy_cb(uint16_t event, char* p_dst, char* p_src) {
89 tBTA_HD_SET_REPORT* p_dst_data = (tBTA_HD_SET_REPORT*)p_dst;
97 memcpy(p_dst, p_src, sizeof(tBTA_HD_SET_REPORT));
  /external/libvpx/libvpx/vp9/common/
vp9_postproc.c 45 uint16_t *p_dst; local
53 p_dst = dst_ptr;
68 p_dst[col] = v;
73 p_dst = dst_ptr;
92 if (col >= 2) p_dst[col - 2] = d[(col - 2) & 7];
96 p_dst[col - 2] = d[(col - 2) & 7];
97 p_dst[col - 1] = d[(col - 1) & 7];
  /external/libxaac/decoder/
ixheaacd_lpp_tran.c 117 WORD32 *p_src, *p_dst; local
134 p_dst = qmf_buffer + high_band + ((start_indx + 2) << 7);
154 *p_dst = ixheaacd_add32(qmf_real, (accu << 1));
155 p_dst += 64;
164 *p_dst = ixheaacd_add32(qmf_imag, (accu << 1));
165 p_dst += 64;
1112 WORD32 *p_dst = sub_sig_x + high_band + ((start_idx + 2) << 7); local
    [all...]
  /system/nfc/src/nfc/llcp/
llcp_dlc.cc 856 uint8_t *p, *p_dst, send_seq, rcv_seq, error_flags; local
946 p_dst =
950 UINT16_TO_BE_STREAM(p_dst, info_len);
955 memcpy(p_dst, p, info_len);
    [all...]
llcp_link.cc 961 uint8_t* p_dst; local
    [all...]
  /external/mesa3d/src/gallium/state_trackers/nine/
surface9.c 690 uint8_t *p_dst; local
709 p_dst = NineSurface9_GetSystemMemPointer(This, 0, 0);
711 assert (p_src && p_dst);
713 util_copy_rect(p_dst, This->base.info.format,
  /external/valgrind/none/tests/ppc32/
jm-insns.c 6073 double src, *p_dst; local
6140 double src, *p_dst; local
    [all...]
  /external/valgrind/none/tests/ppc64/
jm-insns.c 6073 double src, *p_dst; local
6140 double src, *p_dst; local
    [all...]
  /system/bt/stack/gatt/
gatt_utils.cc 466 uint8_t gatt_build_uuid_to_stream(uint8_t** p_dst, const Uuid& uuid) {
467 uint8_t* p = *p_dst;
484 *p_dst = p;
    [all...]
gatt_int.h 440 extern uint8_t gatt_build_uuid_to_stream(uint8_t** p_dst,

Completed in 302 milliseconds