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

  /external/skia/src/opts/
SkBitmapProcState_opts_SSSE3.cpp 132 // @param scale_x vector of 8 bit components to multiply the pixel[0:3]. This
141 const __m128i& scale_x) {
167 return _mm_maddubs_epi16(a0, scale_x);
211 const __m128i& scale_x,
214 scale_x);
226 __m128i scale_x,
235 __m128i sum = _mm_maddubs_epi16(a0, scale_x);
253 const __m128i& scale_x,
256 scale_x);
292 const __m128i& scale_x,
448 __m128i scale_x; local
482 __m128i scale_x = _mm_sub_epi8(sixteen_8bit, all_x); local
520 __m128i scale_x; local
556 __m128i scale_x = _mm_sub_epi8(sixteen_8bit, all_x); local
626 __m128i scale_x = _mm_unpacklo_epi8(sixteen_minus_xy, all_xy); local
678 __m128i scale_x = _mm_sub_epi8(sixteen_8bit, all_x); local
    [all...]
  /external/proguard/src/proguard/gui/splash/
ImageSprite.java 68 double scale_x = scaleX.getDouble(time); local
71 int width = (int)(image.getWidth(null) * scale_x);
  /external/opencv3/modules/core/include/opencv2/core/cuda/
filters.hpp 184 : src(src_), scale_x(scale_x_), scale_y(scale_y_), scale(1.f / (scale_x * scale_y)) {}
188 float fsx1 = x * scale_x;
189 float fsx2 = fsx1 + scale_x;
213 float scale_x, scale_y ,scale; member in struct:cv::cuda::device::IntegerAreaFilter
222 : src(src_), scale_x(scale_x_), scale_y(scale_y_){}
226 float fsx1 = x * scale_x;
227 float fsx2 = fsx1 + scale_x;
238 float scale = 1.f / (fminf(scale_x, src.width - fsx1) * fminf(scale_y, src.height - fsy1));
279 float scale_x, scale_y member in struct:cv::cuda::device::AreaFilter
    [all...]
  /external/mesa3d/src/gallium/state_trackers/xa/
xa_yuv.c 123 float scale_x; local
140 scale_x = (float)src_w / (float)dst_w;
150 (float)src_x + scale_x * (x - dst_x),
152 scale_x * w, scale_y * h, x, y, w, h, yuv);
  /external/opencv3/modules/imgproc/test/
test_imgwarp_strict.cpp 185 double scale_x, scale_y; local
191 scale_x = rng.uniform(2, 5);
196 scale_x = rng.uniform(1.0, 3.0);
202 scale_x = rng.uniform(0.4, 4.0);
205 CV_Assert(scale_x > 0.0f && scale_y > 0.0f);
207 dsize.width = saturate_cast<int>((ssize.width + scale_x - 1) / scale_x);
213 scale_x = src.cols / static_cast<double>(dst.cols);
216 if (interpolation == INTER_AREA && (scale_x < 1.0 || scale_y < 1.0))
271 double scale_x = static_cast<double>(ssize.width) / dsize.width local
    [all...]
test_imgwarp.cpp 303 double scale_x = (double)src->cols/dcols; local
308 double f = ((j+0.5)*scale_x - 0.5);
    [all...]
  /hardware/qcom/display/msm8996/sdm/libs/core/
resource_default.h 120 DisplayError ValidateDownScaling(float scale_x, float scale_y, bool ubwc_tiled);
121 DisplayError ValidateUpScaling(float scale_x, float scale_y);
122 DisplayError GetScaleFactor(const LayerRect &crop, const LayerRect &dst, float *scale_x,
resource_default.cpp 707 float scale_x = 1.0f; local
710 error = GetScaleFactor(crop, dst, &scale_x, &scale_y);
715 error = ValidateDownScaling(scale_x, scale_y, ubwc_tiled);
720 error = ValidateUpScaling(scale_x, scale_y);
728 DisplayError ResourceDefault::ValidateDownScaling(float scale_x, float scale_y, bool ubwc_tiled) {
729 if ((UINT32(scale_x) > 1) || (UINT32(scale_y) > 1)) {
737 if (scale_x > max_scale_down || scale_y > max_scale_down) {
739 "Scaling down is over the limit: scale_x = %.0f, scale_y = %.0f, " \
740 "has_deci = %d", scale_x, scale_y, hw_res_info_.has_decimation);
745 DLOGV_IF(kTagResources, "scale_x = %.4f, scale_y = %.4f", scale_x, scale_y)
    [all...]
  /hardware/qcom/display/msmcobalt/sdm/libs/core/
resource_default.h 120 DisplayError ValidateDownScaling(float scale_x, float scale_y, bool ubwc_tiled);
121 DisplayError ValidateUpScaling(float scale_x, float scale_y);
122 DisplayError GetScaleFactor(const LayerRect &crop, const LayerRect &dst, float *scale_x,
resource_default.cpp 707 float scale_x = 1.0f; local
710 error = GetScaleFactor(crop, dst, &scale_x, &scale_y);
715 error = ValidateDownScaling(scale_x, scale_y, ubwc_tiled);
720 error = ValidateUpScaling(scale_x, scale_y);
728 DisplayError ResourceDefault::ValidateDownScaling(float scale_x, float scale_y, bool ubwc_tiled) {
729 if ((UINT32(scale_x) > 1) || (UINT32(scale_y) > 1)) {
737 if (scale_x > max_scale_down || scale_y > max_scale_down) {
739 "Scaling down is over the limit: scale_x = %.0f, scale_y = %.0f, " \
740 "has_deci = %d", scale_x, scale_y, hw_res_info_.has_decimation);
745 DLOGV_IF(kTagResources, "scale_x = %.4f, scale_y = %.4f", scale_x, scale_y)
    [all...]
  /frameworks/base/libs/hwui/protos/
hwui.proto 45 required float scale_x = 14;
  /external/libdrm/exynos/
exynos_fimg2d.c 695 unsigned int scale_x, scale_y; local
705 scale_x = g2d_get_scaling(src_w, dst_w);
756 g2d_add_cmd(ctx, SRC_XSCALE_REG, scale_x);
921 unsigned int scale_x, scale_y; local
927 scale_x = g2d_get_scaling(src_w, dst_w);
991 g2d_add_cmd(ctx, SRC_XSCALE_REG, scale_x);
  /external/ImageMagick/coders/
wmf.c 331 scale_x,
716 XC(bmp_draw->pt.x) * ddata->scale_x, YC(bmp_draw->pt.y) * ddata->scale_y,
717 width * ddata->scale_x, height * ddata->scale_y, magick_wand);
847 DrawScale(WmfDrawingWand, ddata->scale_x, ddata->scale_y);
329 scale_x, member in struct:_wmf_magick_t
    [all...]
  /external/opencv/cv/src/
cvimgwarp.cpp 293 int scale_x = ssize.width/dsize.width; \
295 int area = scale_x*scale_y; \
296 float scale = 1.f/(scale_x*scale_y); \
637 float scale_x, scale_y; local
    [all...]
  /external/harfbuzz_ng/util/
options.cc 559 int scale_x = (int) scalbnf (font_size_x, subpixel_bits); local
561 hb_font_set_scale (font, scale_x, scale_y);
  /external/pdfium/core/src/fxge/ge/
fx_ge_text.cpp 276 FX_FLOAT scale_x = FXSYS_fabs(matrixCTM.a); local
278 deviceCtm.Concat(scale_x, 0, 0, scale_y, 0, 0);
279 text2Device.Concat(scale_x, 0, 0, scale_y, 0, 0);
310 if (scale_x > 1 && scale_y > 1) {
316 FX_RECT bmp_rect(FXSYS_round((FX_FLOAT)(bmp_rect1.left) / scale_x),
318 FXSYS_round((FX_FLOAT)bmp_rect1.right / scale_x),
325 int pixel_width = FXSYS_round(bmp_rect.Width() * scale_x);
327 int pixel_left = FXSYS_round(bmp_rect.left * scale_x);
    [all...]
  /external/webrtc/webrtc/base/
x11windowpicker.cc 511 double scale_x = static_cast<double>(dst_width) / local
515 double scale = std::min(scale_y, scale_x);
  /external/pdfium/core/src/fxge/apple/
fx_quartz_device.cpp 529 CGFloat scale_x = FXSYS_fabs(ctm.a); local
531 src_left /= scale_x;
533 src_width /= scale_x;
541 CGSizeMake(pBitmap->GetWidth() / scale_x, pBitmap->GetHeight() / scale_y);
    [all...]
  /external/pdfium/core/src/fxge/dib/
fx_dib_engine.cpp 273 double scale_x = FXSYS_Div((FX_FLOAT)(m_SrcWidth), (FX_FLOAT)(m_DestWidth)); local
277 double src_left = FXSYS_Mul(scale_x, (FX_FLOAT)(clip_rect.left) + base_x);
278 double src_right = FXSYS_Mul(scale_x, (FX_FLOAT)(clip_rect.right) + base_x);
    [all...]
  /hardware/qcom/display/msm8996/sdm/libs/core/fb/
hw_device.cpp 1184 float scale_x = FLOAT(display_attributes_.x_pixels) \/ FLOAT(mixer_attributes.width); local
    [all...]
  /external/opencv3/modules/imgproc/src/
imgwarp.cpp 2400 int scale_x, scale_y; member in struct:cv::ResizeAreaFastVec
2490 int scale_x, scale_y; member in class:cv::resizeAreaFast_Invoker
    [all...]
  /hardware/qcom/display/msmcobalt/sdm/libs/core/fb/
hw_device.cpp 1290 float scale_x = FLOAT(display_attributes_.x_pixels) \/ FLOAT(mixer_attributes.width); local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_fs_visitor.cpp 1182 fs_reg scale_x, scale_y; local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jar 

Completed in 5032 milliseconds