/external/chromium_org/media/base/ |
D | yuv_convert.cc | 196 int source_width, in ScaleYUVToRGB32() argument 207 if ((yuv_type == YV12 && (source_width < 2 || source_height < 2)) || in ScaleYUVToRGB32() 208 (yuv_type == YV16 && (source_width < 2 || source_height < 1)) || in ScaleYUVToRGB32() 220 if (source_width > kFilterBufferSize || view_rotate) in ScaleYUVToRGB32() 233 y_buf += source_width - 1; in ScaleYUVToRGB32() 234 u_buf += source_width / 2 - 1; in ScaleYUVToRGB32() 235 v_buf += source_width / 2 - 1; in ScaleYUVToRGB32() 236 source_width = -source_width; in ScaleYUVToRGB32() 247 int source_dx = source_width * kFractionMax / width; in ScaleYUVToRGB32() 254 source_height = source_width; in ScaleYUVToRGB32() [all …]
|
D | yuv_convert.h | 88 int source_width, 106 int source_width,
|
/external/libvpx/libvpx/vpx_scale/generic/ |
D | gen_scalers.c | 37 unsigned int source_width, in vp8_horizontal_line_5_4_scale_c() argument 47 for (i = 0; i < source_width; i += 5) { in vp8_horizontal_line_5_4_scale_c() 118 unsigned int source_width, in vp8_horizontal_line_5_3_scale_c() argument 128 for (i = 0; i < source_width; i += 5) { in vp8_horizontal_line_5_3_scale_c() 193 unsigned int source_width, in vp8_horizontal_line_2_1_scale_c() argument 203 for (i = 0; i < source_width; i += 2) { in vp8_horizontal_line_2_1_scale_c()
|
D | vpx_scale.c | 240 unsigned int source_width, in Scale2D() argument 349 horiz_line_scale(source, source_width, dest, dest_width); in Scale2D() 361 horiz_line_scale(source, source_width, temp_area, dest_width); in Scale2D() 374 horiz_line_scale(line_src, source_width, in Scale2D() 405 Scale1Dh(source, 1, hscale, source_width + 1, dest, 1, hratio, dest_width); in Scale2D() 422 Scale1Dh(source, 1, hscale, source_width + 1, temp_area, 1, hratio, dest_width); in Scale2D() 431 Scale1Dh(source + i * source_pitch, 1, hscale, source_width + 1, in Scale2D()
|
/external/chromium_org/media/base/simd/ |
D | filter_yuv.h | 19 int source_width, 25 int source_width, 31 int source_width,
|
D | filter_yuv_c.cc | 10 int source_width, int source_y_fraction) { in FilterYUVRows_C() argument 13 uint8* end = ybuf + source_width; in FilterYUVRows_C() 14 uint8* rounded_end = ybuf + (source_width & ~7); in FilterYUVRows_C()
|
D | linear_scale_yuv_to_rgb_mmx.inc | 70 imul WIDTH_ARG_REGq, SOURCE_DX_ARG_REGq ; source_width = width * source_dx 81 imul WIDTH_ARG_REGq, SOURCE_DX_ARG_REGq ; source_width = width * source_dx 142 cmp Xq, SOURCE_WIDTH ; Compare source_width from stack 157 cmp Xq, SOURCE_WIDTH ; Compare source_width from stack
|
D | linear_scale_yuv_to_rgb_mmx_x64.asm | 61 imul WIDTHq, SOURCE_DXq ; source_width = width * source_dx
|
/external/libvpx/generic/ |
D | vpx_scale_rtcd.h | 12 void vp8_horizontal_line_5_4_scale_c(const unsigned char *source, unsigned int source_width, unsign… 18 void vp8_horizontal_line_5_3_scale_c(const unsigned char *source, unsigned int source_width, unsign… 24 void vp8_horizontal_line_2_1_scale_c(const unsigned char *source, unsigned int source_width, unsign…
|
/external/libvpx/mips/ |
D | vpx_scale_rtcd.h | 12 void vp8_horizontal_line_5_4_scale_c(const unsigned char *source, unsigned int source_width, unsign… 18 void vp8_horizontal_line_5_3_scale_c(const unsigned char *source, unsigned int source_width, unsign… 24 void vp8_horizontal_line_2_1_scale_c(const unsigned char *source, unsigned int source_width, unsign…
|
/external/libvpx/armv7a/ |
D | vpx_scale_rtcd.h | 12 void vp8_horizontal_line_5_4_scale_c(const unsigned char *source, unsigned int source_width, unsign… 18 void vp8_horizontal_line_5_3_scale_c(const unsigned char *source, unsigned int source_width, unsign… 24 void vp8_horizontal_line_2_1_scale_c(const unsigned char *source, unsigned int source_width, unsign…
|
/external/libvpx/armv7a-neon/ |
D | vpx_scale_rtcd.h | 12 void vp8_horizontal_line_5_4_scale_c(const unsigned char *source, unsigned int source_width, unsign… 18 void vp8_horizontal_line_5_3_scale_c(const unsigned char *source, unsigned int source_width, unsign… 24 void vp8_horizontal_line_2_1_scale_c(const unsigned char *source, unsigned int source_width, unsign…
|
/external/libvpx/mips-dspr2/ |
D | vpx_scale_rtcd.h | 12 void vp8_horizontal_line_5_4_scale_c(const unsigned char *source, unsigned int source_width, unsign… 18 void vp8_horizontal_line_5_3_scale_c(const unsigned char *source, unsigned int source_width, unsign… 24 void vp8_horizontal_line_2_1_scale_c(const unsigned char *source, unsigned int source_width, unsign…
|
/external/chromium_org/printing/ |
D | pdf_metafile_cg_mac.cc | 191 const float source_width = in RenderPage() local 198 (params.shrink_to_fit && ((source_width > rect.size.width) || in RenderPage() 200 (params.stretch_to_fit && ((source_width < rect.size.width) && in RenderPage() 203 float x_scaling_factor = rect.size.width / source_width; in RenderPage() 214 ((rect.size.width - (source_width * scaling_factor)) / 2) : 0; in RenderPage()
|
/external/libvpx/libvpx/vpx_scale/win32/ |
D | scaleopt.c | 56 unsigned int source_width, in horizontal_line_5_4_scale_mmx() argument 92 mov ecx, source_width; in horizontal_line_5_4_scale_mmx() local 229 unsigned int source_width, in horizontal_line_5_3_scale_mmx() argument 240 mov ecx, source_width; in horizontal_line_5_3_scale_mmx() local 417 unsigned int source_width, in horizontal_line_2_1_scale_mmx() argument 422 (void) source_width; in horizontal_line_2_1_scale_mmx()
|
/external/chromium_org/skia/ext/ |
D | convolver_unittest.cc | 238 unsigned int source_width = source_sizes[i][0]; in TEST() local 247 unsigned int offset = source_width * p / dest_width; in TEST() 248 EXPECT_LT(offset, source_width); in TEST() 251 source_width - offset)); in TEST() 265 source_width, source_height); in TEST() 316 VLOG(1) << "from:" << source_width << "x" << source_height in TEST()
|
/external/chromium/chrome/browser/ |
D | aeropeek_manager.cc | 389 float source_width = static_cast<float>(width); 391 DCHECK(source_width && source_height); 393 float ratio_width = thumbnail_width / source_width; 396 thumbnail_width = source_width * ratio_height;
|
/external/chromium_org/gpu/command_buffer/service/ |
D | gles2_cmd_decoder.cc | 9915 int source_width, source_height, dest_width, dest_height; in DoCopyTextureCHROMIUM() local 9931 source_width = size.width(); in DoCopyTextureCHROMIUM() 9933 if (source_width <= 0 || source_height <= 0) { in DoCopyTextureCHROMIUM() 9941 source_texture->target(), 0, &source_width, &source_height)) { in DoCopyTextureCHROMIUM() 9950 source_texture->target(), level, source_width, source_height, 1)) { in DoCopyTextureCHROMIUM() 9987 if (!dest_level_defined || dest_width != source_width || in DoCopyTextureCHROMIUM() 9995 GL_TEXTURE_2D, level, internal_format, source_width, source_height, in DoCopyTextureCHROMIUM() 10004 dest_texture_ref, GL_TEXTURE_2D, level, internal_format, source_width, in DoCopyTextureCHROMIUM() 10029 source_width, source_height, in DoCopyTextureCHROMIUM() 10041 source_width, source_height, in DoCopyTextureCHROMIUM()
|