Home
last modified time | relevance | path

Searched refs:max_scale (Results 1 – 23 of 23) sorted by relevance

/external/speex/libspeex/
Dfilters_arm4.h36 int normalize16(const spx_sig_t *x, spx_word16_t *y, spx_sig_t max_scale, int len) in normalize16() argument
66 while (max_val>max_scale) in normalize16()
Dfilters_bfin.h36 int normalize16(const spx_sig_t *x, spx_word16_t *y, spx_sig_t max_scale, int len) in normalize16() argument
57 while (max_val>max_scale) in normalize16()
Dfilters.h47 int normalize16(const spx_sig_t *x, spx_word16_t *y, spx_sig_t max_scale, int len);
Dfilters.c269 int normalize16(const spx_sig_t *x, spx_word16_t *y, spx_sig_t max_scale, int len) in normalize16() argument
285 while (max_val>max_scale) in normalize16()
/external/chromium_org/ui/compositor/
Dtransform_animation_curve_adapter.h36 float* max_scale) const OVERRIDE;
66 float* max_scale) const OVERRIDE;
Dtransform_animation_curve_adapter.cc76 float* max_scale) const { in MaximumTargetScale()
140 float* max_scale) const { in MaximumTargetScale()
/external/chromium_org/ui/gfx/image/
Dimage_skia_util_ios.mm19 float max_scale = ImageSkia::GetSupportedScales().back();
21 image, max_scale);
/external/chromium_org/cc/animation/
Dlayer_animation_controller_unittest.cc1901 float max_scale = 0.f; in TEST() local
1902 EXPECT_TRUE(controller_impl->MaximumTargetScale(&max_scale)); in TEST()
1903 EXPECT_EQ(0.f, max_scale); in TEST()
1919 EXPECT_TRUE(controller_impl->MaximumTargetScale(&max_scale)); in TEST()
1920 EXPECT_EQ(4.f, max_scale); in TEST()
1936 EXPECT_TRUE(controller_impl->MaximumTargetScale(&max_scale)); in TEST()
1937 EXPECT_EQ(6.f, max_scale); in TEST()
1953 EXPECT_FALSE(controller_impl->MaximumTargetScale(&max_scale)); in TEST()
1962 EXPECT_TRUE(controller_impl->MaximumTargetScale(&max_scale)); in TEST()
1963 EXPECT_EQ(4.f, max_scale); in TEST()
[all …]
Dkeyframed_animation_curve.cc349 float* max_scale) const { in MaximumTargetScale()
351 *max_scale = 0.f; in MaximumTargetScale()
370 *max_scale = fmax(*max_scale, max_scale_for_segment); in MaximumTargetScale()
Danimation_curve.h90 float* max_scale) const = 0;
Dlayer_animation_controller.h139 bool MaximumTargetScale(float* max_scale) const;
Dlayer_animation_controller.cc499 bool LayerAnimationController::MaximumTargetScale(float* max_scale) const { in MaximumTargetScale()
500 *max_scale = 0.f; in MaximumTargetScale()
524 *max_scale = std::max(*max_scale, animation_scale); in MaximumTargetScale()
Dkeyframed_animation_curve.h189 float* max_scale) const OVERRIDE;
/external/chromium_org/chrome/browser/notifications/
Dnotification_conversion_helper.cc139 float max_scale, in NotificationBitmapToGfxImage() argument
146 const int max_device_pixel_width = target_size_dips.width() * max_scale; in NotificationBitmapToGfxImage()
147 const int max_device_pixel_height = target_size_dips.height() * max_scale; in NotificationBitmapToGfxImage()
Dnotification_conversion_helper.h43 float max_scale,
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/pshinter/
Dpshglob.c719 FT_Fixed max_scale; in psh_globals_new() local
737 max_scale = FT_DivFix( 1000, max_height ); in psh_globals_new()
738 globals->blues.blue_scale = priv->blue_scale < max_scale in psh_globals_new()
740 : max_scale; in psh_globals_new()
/external/freetype/src/pshinter/
Dpshglob.c711 FT_Fixed max_scale; in psh_globals_new() local
729 max_scale = FT_DivFix( 1000, max_height ); in psh_globals_new()
730 globals->blues.blue_scale = priv->blue_scale < max_scale in psh_globals_new()
732 : max_scale; in psh_globals_new()
/external/chromium_org/third_party/freetype/src/pshinter/
Dpshglob.c711 FT_Fixed max_scale; in psh_globals_new() local
729 max_scale = FT_DivFix( 1000, max_height ); in psh_globals_new()
730 globals->blues.blue_scale = priv->blue_scale < max_scale in psh_globals_new()
732 : max_scale; in psh_globals_new()
/external/chromium_org/cc/test/
Danimation_test_common.cc176 float* max_scale) const { in MaximumTargetScale()
177 *max_scale = 1.f; in MaximumTargetScale()
Danimation_test_common.h49 float* max_scale) const OVERRIDE;
/external/chromium_org/third_party/speex/libspeex/
Dfilters.h47 int normalize16(const spx_sig_t *x, spx_word16_t *y, spx_sig_t max_scale, int len);
Dfilters.c269 int normalize16(const spx_sig_t *x, spx_word16_t *y, spx_sig_t max_scale, int len) in normalize16() argument
285 while (max_val>max_scale) in normalize16()
/external/chromium_org/chrome/browser/android/provider/
Dchrome_browser_provider.cc676 float max_scale = ui::GetScaleForScaleFactor( in Run() local
678 int desired_size_in_pixel = std::ceil(gfx::kFaviconSize * max_scale); in Run()