Home | History | Annotate | Download | only in source

Lines Matching refs:src_ptr

2154                       const uint8* src_ptr,
2160 const uint8* src_ptr1 = src_ptr + src_stride;
2163 memcpy(dst_ptr, src_ptr, width);
2167 HalfRow_C(src_ptr, src_stride, dst_ptr, width);
2172 (src_ptr[0] * y0_fraction + src_ptr1[0] * y1_fraction + 128) >> 8;
2174 (src_ptr[1] * y0_fraction + src_ptr1[1] * y1_fraction + 128) >> 8;
2175 src_ptr += 2;
2181 (src_ptr[0] * y0_fraction + src_ptr1[0] * y1_fraction + 128) >> 8;
2186 const uint16* src_ptr,
2192 const uint16* src_ptr1 = src_ptr + src_stride;
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;
2205 src_ptr += 2;
2210 dst_ptr[0] = (src_ptr[0] * y0_fraction + src_ptr1[0] * y1_fraction) >> 8;