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

  /external/chromium_org/media/base/simd/
filter_yuv.h 19 int source_width,
25 int source_width,
31 int source_width,
filter_yuv_c.cc 10 int source_width, int source_y_fraction) {
13 uint8* end = ybuf + source_width;
14 uint8* rounded_end = ybuf + (source_width & ~7);
linear_scale_yuv_to_rgb_mmx_x64.asm 61 imul WIDTHq, SOURCE_DXq ; source_width = width * source_dx
  /external/chromium_org/media/base/
yuv_convert.cc 196 int source_width,
207 if ((yuv_type == YV12 && (source_width < 2 || source_height < 2)) ||
208 (yuv_type == YV16 && (source_width < 2 || source_height < 1)) ||
220 if (source_width > kFilterBufferSize || view_rotate)
233 y_buf += source_width - 1;
234 u_buf += source_width / 2 - 1;
235 v_buf += source_width / 2 - 1;
236 source_width = -source_width;
247 int source_dx = source_width * kFractionMax / width
    [all...]
yuv_convert.h 88 int source_width,
106 int source_width,
  /external/libvpx/armv7a/
vpx_scale_rtcd.h 12 void vp8_horizontal_line_5_4_scale_c(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width);
18 void vp8_horizontal_line_5_3_scale_c(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width);
24 void vp8_horizontal_line_2_1_scale_c(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width);
  /external/libvpx/armv7a-neon/
vpx_scale_rtcd.h 12 void vp8_horizontal_line_5_4_scale_c(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width);
18 void vp8_horizontal_line_5_3_scale_c(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width);
24 void vp8_horizontal_line_2_1_scale_c(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width);
  /external/libvpx/generic/
vpx_scale_rtcd.h 12 void vp8_horizontal_line_5_4_scale_c(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width);
18 void vp8_horizontal_line_5_3_scale_c(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width);
24 void vp8_horizontal_line_2_1_scale_c(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width);
  /external/libvpx/mips/
vpx_scale_rtcd.h 12 void vp8_horizontal_line_5_4_scale_c(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width);
18 void vp8_horizontal_line_5_3_scale_c(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width);
24 void vp8_horizontal_line_2_1_scale_c(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width);
  /external/libvpx/mips-dspr2/
vpx_scale_rtcd.h 12 void vp8_horizontal_line_5_4_scale_c(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width);
18 void vp8_horizontal_line_5_3_scale_c(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width);
24 void vp8_horizontal_line_2_1_scale_c(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width);
  /external/libvpx/libvpx/vpx_scale/generic/
gen_scalers.c 22 * unsigned int source_width : Stride of source.
37 unsigned int source_width,
47 for (i = 0; i < source_width; i += 5) {
102 * unsigned int source_width : Stride of source.
118 unsigned int source_width,
128 for (i = 0; i < source_width; i += 5) {
178 * unsigned int source_width : Stride of source.
193 unsigned int source_width,
203 for (i = 0; i < source_width; i += 2) {
vpx_scale.c 210 * unsigned int source_width : Width of input image.
240 unsigned int source_width,
349 horiz_line_scale(source, source_width, dest, dest_width);
361 horiz_line_scale(source, source_width, temp_area, dest_width);
374 horiz_line_scale(line_src, source_width,
405 Scale1Dh(source, 1, hscale, source_width + 1, dest, 1, hratio, dest_width);
422 Scale1Dh(source, 1, hscale, source_width + 1, temp_area, 1, hratio, dest_width);
431 Scale1Dh(source + i * source_pitch, 1, hscale, source_width + 1,
  /external/chromium_org/printing/
pdf_metafile_cg_mac.cc 191 const float source_width = local
198 (params.shrink_to_fit && ((source_width > rect.size.width) ||
200 (params.stretch_to_fit && ((source_width < rect.size.width) &&
203 float x_scaling_factor = rect.size.width / source_width;
214 ((rect.size.width - (source_width * scaling_factor)) / 2) : 0;
  /external/libvpx/libvpx/vpx_scale/win32/
scaleopt.c 38 * unsigned int source_width : Stride of source.
56 unsigned int source_width,
68 for ( i=0; i<source_width; i+=5 )
92 mov ecx, source_width; local
229 unsigned int source_width,
240 mov ecx, source_width; local
400 * unsigned int source_width :
417 unsigned int source_width,
422 (void) source_width;
  /external/chromium_org/skia/ext/
convolver_unittest.cc 238 unsigned int source_width = source_sizes[i][0]; local
247 unsigned int offset = source_width * p / dest_width;
248 EXPECT_LT(offset, source_width);
251 source_width - offset));
265 source_width, source_height);
316 VLOG(1) << "from:" << source_width << "x" << source_height
  /external/chromium/chrome/browser/
aeropeek_manager.cc 389 float source_width = static_cast<float>(width); local
391 DCHECK(source_width && source_height);
393 float ratio_width = thumbnail_width / source_width;
396 thumbnail_width = source_width * ratio_height;
    [all...]
  /external/chromium_org/gpu/command_buffer/service/
gles2_cmd_decoder.cc 9788 int source_width, source_height, dest_width, dest_height; local
    [all...]

Completed in 1011 milliseconds