Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/core/lib/gif/
Dgif_io.cc130 uint8* p_dst = this_dst + i * width * channel; in Decode() local
133 p_dst[j * channel + 0] = l_dst[j * channel + 0]; in Decode()
134 p_dst[j * channel + 1] = l_dst[j * channel + 1]; in Decode()
135 p_dst[j * channel + 2] = l_dst[j * channel + 2]; in Decode()
149 uint8* p_dst = this_dst + i * width * channel; in Decode() local
163 p_dst[j * channel + 0] = gif_color.Red; in Decode()
164 p_dst[j * channel + 1] = gif_color.Green; in Decode()
165 p_dst[j * channel + 2] = gif_color.Blue; in Decode()
/external/ipsec-tools/src/libipsec/
Dpolicy_parse.y107 static struct sockaddr *p_dst = NULL; variable
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) { in rule_check()
461 else if (p_src->sa_family != p_dst->sa_family) { in rule_check()
577 if (p_dst != NULL) { in policy_parse_request_init()
578 free(p_dst); in policy_parse_request_init()
[all …]
/external/libvpx/libvpx/vpx_dsp/
Ddeblock.c46 unsigned char *p_src, *p_dst; in vpx_post_proc_down_and_across_mb_row_c() local
58 p_dst = dst; in vpx_post_proc_down_and_across_mb_row_c()
79 p_dst[col] = v; in vpx_post_proc_down_and_across_mb_row_c()
84 p_dst = dst; in vpx_post_proc_down_and_across_mb_row_c()
105 if (col >= 2) p_dst[col - 2] = d[(col - 2) & 3]; in vpx_post_proc_down_and_across_mb_row_c()
109 p_dst[col - 2] = d[(col - 2) & 3]; in vpx_post_proc_down_and_across_mb_row_c()
110 p_dst[col - 1] = d[(col - 1) & 3]; in vpx_post_proc_down_and_across_mb_row_c()
/external/libvpx/libvpx/vpx_dsp/mips/
Ddeblock_msa.c148 uint8_t *p_dst = dst_ptr; in postproc_down_across_chroma_msa() local
178 p_dst, dst_stride); in postproc_down_across_chroma_msa()
180 p_dst += 16; in postproc_down_across_chroma_msa()
209 SD4(out0, out1, out2, out3, p_dst, dst_stride); in postproc_down_across_chroma_msa()
215 SD4(out0, out1, out2, out3, p_dst + 4 * dst_stride, dst_stride); in postproc_down_across_chroma_msa()
219 p_dst = dst_ptr - 2; in postproc_down_across_chroma_msa()
220 LD_UB8(p_dst, dst_stride, inter0, inter1, inter2, inter3, inter4, inter5, in postproc_down_across_chroma_msa()
272 p_dst += 8; in postproc_down_across_chroma_msa()
273 LD_UB2(p_dst, dst_stride, inter0, inter1); in postproc_down_across_chroma_msa()
276 LD_UB2(p_dst + 2 * dst_stride, dst_stride, inter2, inter3); in postproc_down_across_chroma_msa()
[all …]
/external/libvpx/libvpx/
Dtools_common.c300 uint16_t *p_dst = in highbd_img_upshift() local
302 for (x = 0; x < w; x++) *p_dst++ = (*p_src++ << input_shift) + offset; in highbd_img_upshift()
335 uint16_t *p_dst = in lowbd_img_upshift() local
338 *p_dst++ = (*p_src++ << input_shift) + offset; in lowbd_img_upshift()
377 uint8_t *p_dst = dst->planes[plane] + y * dst->stride[plane]; in vpx_img_truncate_16_to_8() local
379 *p_dst++ = (uint8_t)(*p_src++); in vpx_img_truncate_16_to_8()
412 uint16_t *p_dst = in highbd_img_downshift() local
414 for (x = 0; x < w; x++) *p_dst++ = *p_src++ >> down_shift; in highbd_img_downshift()
446 uint8_t *p_dst = dst->planes[plane] + y * dst->stride[plane]; in lowbd_img_downshift() local
448 *p_dst++ = *p_src++ >> down_shift; in lowbd_img_downshift()
/external/libaom/libaom/common/
Dtools_common.c272 uint16_t *p_dst = in highbd_img_upshift() local
274 for (x = 0; x < w; x++) *p_dst++ = (*p_src++ << input_shift) + offset; in highbd_img_upshift()
307 uint16_t *p_dst = in lowbd_img_upshift() local
310 *p_dst++ = (*p_src++ << input_shift) + offset; in lowbd_img_upshift()
349 uint8_t *p_dst = dst->planes[plane] + y * dst->stride[plane]; in aom_img_truncate_16_to_8() local
351 *p_dst++ = (uint8_t)(*p_src++); in aom_img_truncate_16_to_8()
383 uint16_t *p_dst = in highbd_img_downshift() local
385 for (x = 0; x < w; x++) *p_dst++ = *p_src++ >> down_shift; in highbd_img_downshift()
416 uint8_t *p_dst = dst->planes[plane] + y * dst->stride[plane]; in lowbd_img_downshift() local
418 *p_dst++ = *p_src++ >> down_shift; in lowbd_img_downshift()
/external/libvpx/libvpx/vp9/common/
Dvp9_postproc.c45 uint16_t *p_dst; in vp9_highbd_post_proc_down_and_across_c() local
53 p_dst = dst_ptr; in vp9_highbd_post_proc_down_and_across_c()
68 p_dst[col] = v; in vp9_highbd_post_proc_down_and_across_c()
73 p_dst = dst_ptr; in vp9_highbd_post_proc_down_and_across_c()
92 if (col >= 2) p_dst[col - 2] = d[(col - 2) & 7]; in vp9_highbd_post_proc_down_and_across_c()
96 p_dst[col - 2] = d[(col - 2) & 7]; in vp9_highbd_post_proc_down_and_across_c()
97 p_dst[col - 1] = d[(col - 1) & 7]; in vp9_highbd_post_proc_down_and_across_c()
/external/libxaac/decoder/
Dixheaacd_lpp_tran.c117 WORD32 *p_src, *p_dst; in ixheaacd_filterstep3() local
134 p_dst = qmf_buffer + high_band + ((start_indx + 2) << 7); in ixheaacd_filterstep3()
154 *p_dst = ixheaacd_add32(qmf_real, (accu << 1)); in ixheaacd_filterstep3()
155 p_dst += 64; in ixheaacd_filterstep3()
164 *p_dst = ixheaacd_add32(qmf_imag, (accu << 1)); in ixheaacd_filterstep3()
165 p_dst += 64; in ixheaacd_filterstep3()
1112 WORD32 *p_dst = sub_sig_x + high_band + ((start_idx + 2) << 7); in ixheaacd_hf_generator() local
1115 *(p_dst) = *(p_src) >> LPC_SCALE_FACTOR; in ixheaacd_hf_generator()
1117 p_dst += 64; in ixheaacd_hf_generator()
1118 *(p_dst) = *(p_src) >> LPC_SCALE_FACTOR; in ixheaacd_hf_generator()
[all …]
/external/libhevc/encoder/arm/
Dihevce_copy_neon.c216 void *p_dst, in ihevce_2d_square_copy_luma_neon() argument
223 UWORD8 *pu1_dst = (UWORD8 *)p_dst; in ihevce_2d_square_copy_luma_neon()
/external/mesa3d/src/gallium/state_trackers/nine/
Dsurface9.c690 uint8_t *p_dst; in NineSurface9_CopyDefaultToMem() local
709 p_dst = NineSurface9_GetSystemMemPointer(This, 0, 0); in NineSurface9_CopyDefaultToMem()
711 assert (p_src && p_dst); in NineSurface9_CopyDefaultToMem()
713 util_copy_rect(p_dst, This->base.info.format, in NineSurface9_CopyDefaultToMem()
/external/libhevc/encoder/
Dihevce_common_utils.h143 void *p_dst,
Dihevce_common_utils.c214 void *p_dst, in ihevce_2d_square_copy_luma() argument
221 UWORD8 *pu1_dst = (UWORD8 *)p_dst; in ihevce_2d_square_copy_luma()
/external/u-boot/drivers/ddr/marvell/a38x/
Dddr3_debug.c1268 static u32 ddr3_tip_compare(u32 if_id, u32 *p_src, u32 *p_dst, in ddr3_tip_compare() argument
1279 (p_dst[if_id] & addr_offset)) in ddr3_tip_compare()
1294 ("(0x%8x ", p_dst[i_id])); in ddr3_tip_compare()