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

  /external/libvpx/vp8/encoder/arm/
picklpf_arm.c 26 unsigned char *src_y, *dst_y; local
46 dst_y = dst_ybc->y_buffer + yoffset;
48 //vpx_memcpy (dst_y, src_y, ystride * (linestocopy +16));
49 vp8_memcpy_neon((unsigned char *)dst_y, (unsigned char *)src_y, (int)(ystride *(linestocopy + 16)));
  /external/libyuv/files/include/libyuv/
rotate.h 35 uint8* dst_y, int dst_stride_y,
44 uint8* dst_y, int dst_stride_y,
planar_functions.h 23 uint8* dst_y, int dst_stride_y,
29 int I420Rect(uint8* dst_y, int dst_stride_y,
40 uint8* dst_y, int dst_stride_y,
48 uint8* dst_y, int dst_stride_y,
56 uint8* dst_y, int dst_stride_y,
64 uint8* dst_y, int dst_stride_y,
71 uint8* dst_y, int dst_stride_y,
78 uint8* dst_y, int dst_stride_y,
85 uint8* dst_y, int dst_stride_y,
157 uint8* dst_y, int dst_stride_y
    [all...]
scale.h 39 uint8* dst_y, int dst_stride_y,
57 uint8* dst_y, uint8* dst_u, uint8* dst_v,
convert.h 61 uint8* dst_y, int dst_stride_y,
67 uint8* dst_y, int dst_stride_y,
73 uint8* dst_y, int dst_stride_y,
79 uint8* dst_y, int dst_stride_y,
85 uint8* dst_y, int dst_stride_y,
format_conversion.h 22 uint8* dst_y, int dst_stride_y,
  /external/libyuv/files/source/
row.h 40 void ARGBToYRow_SSSE3(const uint8* src_argb, uint8* dst_y, int pix);
41 void BGRAToYRow_SSSE3(const uint8* src_argb, uint8* dst_y, int pix);
42 void ABGRToYRow_SSSE3(const uint8* src_argb, uint8* dst_y, int pix);
54 void RGB24ToYRow_SSSE3(const uint8* src_argb, uint8* dst_y, int pix);
55 void RAWToYRow_SSSE3(const uint8* src_argb, uint8* dst_y, int pix);
61 void ARGBToYRow_C(const uint8* src_argb, uint8* dst_y, int pix);
62 void BGRAToYRow_C(const uint8* src_argb, uint8* dst_y, int pix);
63 void ABGRToYRow_C(const uint8* src_argb, uint8* dst_y, int pix);
64 void RGB24ToYRow_C(const uint8* src_argb, uint8* dst_y, int pix);
65 void RAWToYRow_C(const uint8* src_argb, uint8* dst_y, int pix)
    [all...]
planar_functions.cc 148 uint8* dst_y, int dst_stride_y,
152 memcpy(dst_y, src_y, width);
154 dst_y += dst_stride_y;
162 uint8* dst_y, int dst_stride_y,
167 !dst_y || !dst_u || !dst_v ||
186 I420CopyPlane(src_y, src_stride_y, dst_y, dst_stride_y, width, height);
255 static void I420SetPlane(uint8* dst_y, int dst_stride_y,
262 IS_ALIGNED(dst_y, 16) && (dst_stride_y % 16 == 0)) {
268 IS_ALIGNED(dst_y, 16) && (dst_stride_y % 16 == 0)) {
279 SetRow(dst_y, v32, width)
    [all...]
convert.cc 640 uint8* dst_y, int dst_stride_y,
649 void (*ARGBToYRow)(const uint8* src_argb, uint8* dst_y, int pix);
656 IS_ALIGNED(dst_y, 16) && (dst_stride_y % 16 == 0)) {
678 ARGBToYRow(src_frame, dst_y, width);
679 ARGBToYRow(src_frame + src_stride_frame, dst_y + dst_stride_y, width);
681 dst_y += dst_stride_y * 2;
687 ARGBToYRow(src_frame, dst_y, width);
693 uint8* dst_y, int dst_stride_y,
702 void (*ARGBToYRow)(const uint8* src_argb, uint8* dst_y, int pix);
709 IS_ALIGNED(dst_y, 16) && (dst_stride_y % 16 == 0))
    [all...]
format_conversion.cc 330 uint8* dst_y, int dst_stride_y,
341 dst_y = dst_y + (height - 1) * dst_stride_y;
352 void (*ARGBToYRow)(const uint8* src_argb, uint8* dst_y, int pix);
361 IS_ALIGNED(dst_y, 16) && (dst_stride_y % 16 == 0)) {
407 ARGBToYRow(row, dst_y, width);
408 ARGBToYRow(row + kMaxStride, dst_y + dst_stride_y, width);
410 dst_y += dst_stride_y * 2;
418 ARGBToYRow(row, dst_y, width);
rotate.cc     [all...]
row_table.cc 337 void RGB24ToYRow_C(const uint8* src_argb, uint8* dst_y, int pix) {
340 ARGBToYRow_C(row, dst_y, pix);
343 void RAWToYRow_C(const uint8* src_argb, uint8* dst_y, int pix) {
346 ARGBToYRow_C(row, dst_y, pix);
377 void NAME ## ToYRow_C(const uint8* src_argb0, uint8* dst_y, int width) { \
379 dst_y[0] = RGBToY(src_argb0[R], src_argb0[G], src_argb0[B]); \
381 dst_y += 1; \
416 void RGB24ToYRow_SSSE3(const uint8* src_argb, uint8* dst_y, int pix) {
419 ARGBToYRow_SSSE3(row, dst_y, pix);
422 void RAWToYRow_SSSE3(const uint8* src_argb, uint8* dst_y, int pix)
    [all...]
row_posix.cc 36 void ARGBToYRow_SSSE3(const uint8* src_argb, uint8* dst_y, int pix) {
59 "+r"(dst_y), // %1
row_win.cc 79 void ARGBToYRow_SSSE3(const uint8* src_argb, uint8* dst_y, int pix) {
82 mov edx, [esp + 8] /* dst_y */
112 void BGRAToYRow_SSSE3(const uint8* src_argb, uint8* dst_y, int pix) {
115 mov edx, [esp + 8] /* dst_y */
145 void ABGRToYRow_SSSE3(const uint8* src_argb, uint8* dst_y, int pix) {
148 mov edx, [esp + 8] /* dst_y */
scale.cc     [all...]
  /frameworks/base/media/libstagefright/colorconversion/
SoftwareRenderer.cpp 165 uint8_t *dst_y = (uint8_t *)dst; local
169 uint8_t *dst_v = dst_y + dst_y_size;
173 memcpy(dst_y, src_y, mCropWidth);
176 dst_y += buf->stride;
197 uint8_t *dst_y = (uint8_t *)dst; local
202 uint8_t *dst_v = dst_y + dst_y_size;
206 memcpy(dst_y, src_y, mCropWidth);
209 dst_y += buf->stride;
  /external/libyuv/files/unit_test/
scale_test.cc 58 align_buffer_16(dst_y, dst_y_plane_size)
117 dst_y + (dst_stride_y * b) + b, dst_stride_y,
123 int value = dst_y[(dst_stride_y * b) + b];
131 if (value != dst_y[(i * dst_stride_y) + j])
154 free_aligned_buffer_16(dst_y)
  /external/qemu/
console.h 177 int dst_x, int dst_y, int w, int h);
342 int dst_x, int dst_y, int w, int h) {
346 dcl->dpy_copy(s, src_x, src_y, dst_x, dst_y, w, h);
348 dcl->dpy_update(s, dst_x, dst_y, w, h);
453 int dst_x, int dst_y, int w, int h);
vnc-android.c 661 static void vnc_copy(VncState *vs, int src_x, int src_y, int dst_x, int dst_y, int w, int h)
666 vnc_framebuffer_update(vs, dst_x, dst_y, w, h, VNC_ENCODING_COPYRECT);
672 static void vnc_dpy_copy(DisplayState *ds, int src_x, int src_y, int dst_x, int dst_y, int w, int h)
688 vnc_copy(vs, src_x, src_y, dst_x, dst_y, w, h);
690 vnc_update(vs, dst_x, dst_y, w, h);
    [all...]
vnc.c 655 static void vnc_copy(VncState *vs, int src_x, int src_y, int dst_x, int dst_y, int w, int h)
660 vnc_framebuffer_update(vs, dst_x, dst_y, w, h, VNC_ENCODING_COPYRECT);
666 static void vnc_dpy_copy(DisplayState *ds, int src_x, int src_y, int dst_x, int dst_y, int w, int h)
682 vnc_copy(vs, src_x, src_y, dst_x, dst_y, w, h);
684 vnc_update(vs, dst_x, dst_y, w, h);
    [all...]
console.c     [all...]
  /external/opencv/cv/src/
cvcorner.cpp 218 int i, j, y, dst_y = 0, max_dy, delta = 0; local
394 (float*)(eigenv->data.ptr + dst_y*eigenv->step), eigenv->step,
398 (float*)(eigenv->data.ptr + dst_y*eigenv->step), eigenv->step,
402 (float*)(eigenv->data.ptr + dst_y*eigenv->step), eigenv->step,
405 dst_y += stripe_size.height;
515 int i, j, y, dst_y = 0, max_dy, delta = 0; local
654 for( i = 0; i < stripe_size.height; i++, dst_y++ )
656 float* dstdata = (float*)(dst->data.ptr + dst_y*dst->step);
cvfilter.cpp 441 int src_x, src_y, src_y1, src_y2, dst_y;
504 dst_y = dst_origin.y;
572 if( dst_y + count > dst->rows )
578 dst_y += count;
    [all...]
  /external/chromium/chrome/browser/ui/views/tabs/
base_tab.cc 87 int dst_y = bounds.y() - (icon_height - bounds.height()) / 2; local
90 canvas->ClipRectInt(dst_x, dst_y, icon_width, icon_height);
93 dst_x, dst_y, icon_width, icon_height,
  /external/libvpx/vp8/encoder/
picklpf.c 43 unsigned char *src_y, *dst_y; local
63 dst_y = dst_ybc->y_buffer + yoffset;
65 vpx_memcpy(dst_y, src_y, ystride *(linestocopy + 16));

Completed in 509 milliseconds