Home | History | Annotate | Download | only in source

Lines Matching full:dst_ptr

2153 void InterpolateRow_C(uint8* dst_ptr,
2163 memcpy(dst_ptr, src_ptr, width);
2167 HalfRow_C(src_ptr, src_stride, dst_ptr, width);
2171 dst_ptr[0] =
2173 dst_ptr[1] =
2177 dst_ptr += 2;
2180 dst_ptr[0] =
2185 void InterpolateRow_16_C(uint16* dst_ptr,
2195 memcpy(dst_ptr, src_ptr, width * 2);
2199 HalfRow_16_C(src_ptr, src_stride, dst_ptr, width);
2203 dst_ptr[0] = (src_ptr[0] * y0_fraction + src_ptr1[0] * y1_fraction) >> 8;
2204 dst_ptr[1] = (src_ptr[1] * y0_fraction + src_ptr1[1] * y1_fraction) >> 8;
2207 dst_ptr += 2;
2210 dst_ptr[0] = (src_ptr[0] * y0_fraction + src_ptr1[0] * y1_fraction) >> 8;