Home
last modified time | relevance | path

Searched refs:p_src (Results 1 – 2 of 2) sorted by relevance

/openbmc/u-boot/drivers/ddr/marvell/a38x/
H A Dddr3_debug.c904 static u32 ddr3_tip_compare(u32 if_id, u32 *p_src, u32 *p_dst, in ddr3_tip_compare() argument
914 if ((p_src[burst_cnt] & addr_offset) != in ddr3_tip_compare()
924 ("0x%8x ", p_src[i_id])); in ddr3_tip_compare()
/openbmc/openbmc/meta-raspberrypi/dynamic-layers/multimedia-layer/recipes-multimedia/rpidistro-vlc/files/
H A D0004-mmal_20.patch13766 p_dst->b_top_field_first = p_src->b_top_field_first;
13779 void picture_CopyPixels( picture_t *p_dst, const picture_t *p_src )
13781 - for( int i = 0; i < p_src->i_planes ; i++ )
13782 - plane_CopyPixels( p_dst->p+i, p_src->p+i );
13783 + if( is_zc_chroma(p_src->format.i_chroma) )
13786 + p_dst->i_planes = p_src->i_planes;
13787 + for( int i = 0; i < p_src->i_planes; i++ )
13788 + p_dst->p[i] = p_src->p[i];
13792 + for( int i = 0; i < p_src->i_planes; i++ )
13793 + plane_CopyPixels( p_dst->p+i, p_src->p+i );