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

  /external/chromium_org/media/base/simd/
convert_yuv_to_rgb_x86.cc 27 unsigned int y_shift = GetVerticalShift(yuv_type); local
31 const uint8* u_ptr = uplane + (y >> y_shift) * uvstride;
32 const uint8* v_ptr = vplane + (y >> y_shift) * uvstride;
57 unsigned int y_shift = GetVerticalShift(yuv_type); local
61 const uint8* u_ptr = uplane + (y >> y_shift) * uvstride;
62 const uint8* v_ptr = vplane + (y >> y_shift) * uvstride;
87 unsigned int y_shift = GetVerticalShift(yuv_type); local
91 const uint8* u_ptr = uplane + (y >> y_shift) * uvstride;
92 const uint8* v_ptr = vplane + (y >> y_shift) * uvstride;
convert_yuv_to_rgb_c.cc 228 unsigned int y_shift = GetVerticalShift(yuv_type); local
232 const uint8* u_ptr = uplane + (y >> y_shift) * uvstride;
233 const uint8* v_ptr = vplane + (y >> y_shift) * uvstride;
256 unsigned int y_shift = yuv_type; local
260 const uint8* u_ptr = uplane + (y >> y_shift) * uvstride;
261 const uint8* v_ptr = vplane + (y >> y_shift) * uvstride;
  /external/opencv/otherlibs/highgui/
grfmt_bmp.cpp 296 int y_shift = m_height - y; local
301 y_shift = m_strm.GetByte();
304 len = x_shift3 + (y_shift * width3) & ((code == 0) - 1);
387 int y_shift = m_height - y; local
394 y_shift = m_strm.GetByte();
397 x_shift3 += (y_shift * width3) & ((code == 0) - 1);
grfmt_jpeg.cpp 1116 int x_shift = 0, y_shift = 0; local
1136 y_shift = v[0]/(v[1]*2);
    [all...]
  /external/chromium_org/media/base/
yuv_convert.cc 254 unsigned int y_shift = GetVerticalShift(yuv_type); local
273 u_buf += ((source_height >> y_shift) - 1) * uv_pitch;
274 v_buf += ((source_height >> y_shift) - 1) * uv_pitch;
340 u_ptr = u_buf + (source_y >> y_shift) * uv_pitch;
341 v_ptr = v_buf + (source_y >> y_shift) * uv_pitch;
360 if (y_shift && (source_y & 0x1) == 0)
382 u_ptr = u_buf + (source_y >> y_shift) * uv_pitch;
383 v_ptr = v_buf + (source_y >> y_shift) * uv_pitch;
  /external/qemu/android/utils/
jpeg-compress.c 197 const int y_shift = num_lines - y - 1; local
199 JSAMPROW rgb = (JSAMPROW)(fb + (y_shift - cinfo.next_scanline) * bpl + x_shift);
  /external/chromium_org/third_party/freetype/src/smooth/
ftsmooth.c 117 FT_Pos y_shift = 0; local
204 y_shift = (FT_Int) cbox.yMin;
225 y_shift -= 64 * ( extra >> 1 );
254 FT_Outline_Translate( outline, -x_shift, -y_shift );
390 FT_Outline_Translate( outline, x_shift, y_shift );
  /external/freetype/src/smooth/
ftsmooth.c 117 FT_Pos y_shift = 0; local
204 y_shift = (FT_Int) cbox.yMin;
225 y_shift -= 64 * ( extra >> 1 );
254 FT_Outline_Translate( outline, -x_shift, -y_shift );
390 FT_Outline_Translate( outline, x_shift, y_shift );
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/smooth/
ftsmooth.c 117 FT_Pos y_shift = 0; local
204 y_shift = (FT_Int) cbox.yMin;
225 y_shift -= 64 * ( extra >> 1 );
254 FT_Outline_Translate( outline, -x_shift, -y_shift );
390 FT_Outline_Translate( outline, x_shift, y_shift );
  /external/chromium_org/media/filters/
skcanvas_video_renderer.cc 71 int y_shift = (video_frame->format() == media::VideoFrame::YV16) ? 0 : 1; local
80 (video_frame->visible_rect().y() >> y_shift)) +

Completed in 454 milliseconds