Searched defs:scale (Results 201 - 225 of 1038) sorted by relevance

1234567891011>>

/external/aac/libFDK/include/
H A DFDK_trigFcts.h124 FIXP_DBL fixp_cos(FIXP_DBL x, int scale);
125 FIXP_DBL fixp_sin(FIXP_DBL x, int scale);
144 static inline FIXP_DBL fixp_sin_cos_residual_inline(FIXP_DBL x, int scale, FIXP_DBL *sine, FIXP_DBL *cosine) argument
148 int shift = (31-scale-LD-1);
157 residual <<= scale; local
209 * \param scale exponent of x1 and x2
213 static inline void inline_fixp_cos_sin (FIXP_DBL x1, FIXP_DBL x2, const int scale, FIXP_DBL *out) argument
216 residual = fixp_sin_cos_residual_inline(x1, scale, &sine, &cosine);
222 residual = fixp_sin_cos_residual_inline(x2, scale, &sine, &cosine);
/external/aac/libFDK/src/
H A DFDK_trigFcts.cpp115 * at=atan(0.5 *(2^scl)); % 0.5 because get in 'middle' area of current scale level 'scl'
203 // ==> set q on fixed scale level as desired from fixp_atan()
296 FIXP_DBL fixp_cos(FIXP_DBL x, int scale) argument
300 residual = fixp_sin_cos_residual_inline(x, scale, &sine, &cosine);
306 FIXP_DBL fixp_sin(FIXP_DBL x, int scale) argument
310 residual = fixp_sin_cos_residual_inline(x, scale, &sine, &cosine);
316 void fixp_cos_sin (FIXP_DBL x, int scale, FIXP_DBL *cos, FIXP_DBL *sin) argument
320 residual = fixp_sin_cos_residual_inline(x, scale, &sine, &cosine);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
H A DSimpleBigDecimal.java10 * point is called the <code>scale</code> of the <code>SimpleBigDecimal</code>.
11 * Unlike in {@link java.math.BigDecimal BigDecimal}, the scale is not adjusted
13 * taking part in the same arithmetic operation must have equal scale. The
15 * <code>SimpleBigDecimal</code> with double scale.
23 private final int scale; field in class:SimpleBigDecimal
30 * @param scale The scale of the <code>SimpleBigDecimal</code> to be
34 public static SimpleBigDecimal getInstance(BigInteger value, int scale) argument
36 return new SimpleBigDecimal(value.shiftLeft(scale), scale);
46 SimpleBigDecimal(BigInteger bigInt, int scale) argument
[all...]
/external/chromium-trace/trace-viewer/third_party/gl-matrix/src/gl-matrix/
H A Dmat3.js333 * @param {vec2} v the vec2 to scale the matrix by
336 mat3.scale = function(out, a, v) {
358 * @param {vec2} v the vec2 to scale the matrix by
/external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
H A DAwZoomTest.java38 private String getZoomableHtml(float scale) { argument
39 final int divWidthPercent = (int) (100.0f / scale);
41 "width=device-width, minimum-scale=%f, maximum-scale=%f, initial-scale=%f" +
45 scale, MAXIMUM_SCALE, scale, divWidthPercent);
54 "initial-scale=1,maximum-scale=1,user-scalable=no\">" +
/external/chromium_org/ash/
H A Ddefault_accessibility_delegate.cc97 void DefaultAccessibilityDelegate::SaveScreenMagnifierScale(double scale) { argument
/external/chromium_org/ash/magnifier/
H A Dpartial_magnification_controller.cc54 void PartialMagnificationController::SetScale(float scale) { argument
58 scale_ = scale;
197 // Recreate the magnifier window by updating the scale factor.
/external/chromium_org/cc/layers/
H A Dpicture_layer_impl_perftest.cc26 void AddTiling(float scale, argument
29 PictureLayerTiling* tiling = layer->AddTiling(scale);
/external/chromium_org/chrome/browser/history/
H A Dselect_favicon_frames_unittest.cc50 SkColor GetColor(const gfx::ImageSkia& image, float scale, argument
53 image.GetRepresentation(scale).sk_bitmap();
107 EXPECT_EQ(1.5f, rep.scale());
190 EXPECT_EQ(1.5f, rep.scale());
/external/chromium_org/chrome/browser/
H A Dprocess_info_snapshot_mac.cc85 // Converts a byte unit such as 'K' or 'M' into the scale for the unit.
86 // The scale can then be used to calculate the number of bytes in a value.
118 uint64_t scale = 1; local
120 scale *= 1024;
121 *out_scale = scale;
255 uint64_t scale; local
256 if (!ConvertByteUnitToScale(unit[0], &scale))
258 values[i] *= scale;
/external/chromium_org/chrome/browser/ui/views/
H A Dtab_icon_view.cc115 // For source images smaller than the favicon square, scale them as if they
129 float scale = std::min(static_cast<float>(width()) / scalable_w, local
131 int dest_w = static_cast<int>(float_src_w * scale);
132 int dest_h = static_cast<int>(float_src_h * scale);
/external/chromium_org/chrome/browser/ui/webui/
H A Dchrome_web_ui_controller_factory.cc623 float scale = ui::GetScaleForScaleFactor(resource_scale_factors[i]); local
627 static_cast<int>(gfx::kFaviconSize * scale + 0.5f);
H A Dfavicon_source.cc37 float scale)
41 device_scale_factor(scale) {
33 IconRequest( const content::URLDataSource::GotDataCallback& cb, const GURL& path, int size, float scale) argument
/external/chromium_org/chrome/common/
H A Dbadge_util.cc119 float scale = canvas->image_scale(); local
122 // scale factor (e.g. when hinting is applied), so we need to use the font
124 text_paint->setTextSize(SkFloatToScalar(kTextSize) * scale);
130 // pixel (as a result of scale multiplier), so convert sk_text_width_in_pixel
135 std::ceil(SkScalarToFloat(sk_text_width_in_pixel) / scale)));
/external/chromium_org/content/browser/android/
H A Dcontent_readback_handler.cc56 jfloat scale,
74 scale, sk_color_type, gfx::Rect(x, y, width, height), result_callback);
53 GetContentBitmap(JNIEnv* env, jobject obj, jint readback_id, jfloat scale, jobject color_type, jfloat x, jfloat y, jfloat width, jfloat height, jobject content_view_core) argument
/external/chromium_org/content/common/cursors/
H A Dwebcursor.cc85 float scale; local
94 !iter->ReadFloat(&scale) ||
103 // Ensure scale isn't ridiculous, and the scaled image size is still sane.
104 if (scale < 0.01 || scale > 100 ||
105 size_x / scale > kMaxCursorDimension ||
106 size_y / scale > kMaxCursorDimension)
122 custom_scale_ = scale;
/external/chromium_org/content/common/input/
H A Dsynthetic_web_input_event_builders.cc123 float scale,
130 result.data.pinchUpdate.scale = scale;
122 BuildPinchUpdate( float scale, float anchor_x, float anchor_y, int modifiers, blink::WebGestureDevice source_device) argument
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
H A DContentReadbackHandler.java77 * @param scale The scale that should be applied to the content.
83 public void getContentBitmapAsync(float scale, Rect srcRect, ContentViewCore view, argument
93 nativeGetContentBitmap(mNativeContentReadbackHandler, readbackId, scale,
126 float scale, Bitmap.Config config, float x, float y, float width, float height,
125 nativeGetContentBitmap(long nativeContentReadbackHandler, int readbackId, float scale, Bitmap.Config config, float x, float y, float width, float height, Object contentViewCore) argument
/external/chromium_org/content/renderer/
H A Ddisambiguation_popup_helper.cc24 // This value is used to determine the minimum amount we need to scale to
67 float scale) {
71 max_size = ToCeiledSize(ScaleSize(max_size, 1.0 / scale));
64 CropZoomArea(const gfx::Rect& zoom_rect, const gfx::Size& viewport_size, const gfx::Point& touch_point, float scale) argument
/external/chromium_org/ppapi/proxy/
H A Dgraphics_2d_resource.cc103 PP_Bool Graphics2DResource::SetScale(float scale) { argument
104 if (scale <= 0.0f)
106 Post(RENDERER, PpapiHostMsg_Graphics2D_SetScale(scale));
107 scale_ = scale;
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9/
H A D3d-raytrace.js52 function scaleVector(self, scale) {
53 self[0] *= scale;
54 self[1] *= scale;
55 self[2] *= scale;
83 function scale(v, scale) { function
84 return [v[0] * scale, v[1] * scale, v[2] * scale];
204 var hit = add(origin, scale(di
[all...]
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
H A D3d-raytrace.js52 function scaleVector(self, scale) {
53 self[0] *= scale;
54 self[1] *= scale;
55 self[2] *= scale;
83 function scale(v, scale) { function
84 return [v[0] * scale, v[1] * scale, v[2] * scale];
204 var hit = add(origin, scale(di
[all...]
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-1.0/
H A D3d-raytrace.js52 function scaleVector(self, scale) {
53 self[0] *= scale;
54 self[1] *= scale;
55 self[2] *= scale;
83 function scale(v, scale) { function
84 return [v[0] * scale, v[1] * scale, v[2] * scale];
204 var hit = add(origin, scale(di
[all...]
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DSmartClip.cpp46 static IntRect applyScaleWithoutCollapsingToZero(const IntRect& rect, float scale) argument
49 result.scale(scale);
236 result.scale(pageScaleFactor());
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DSVGTextChunkBuilder.cpp148 static void buildSpacingAndGlyphsTransform(bool isVerticalText, float scale, const SVGTextFragment& fragment, AffineTransform& spacingAndGlyphsTransform) argument
153 spacingAndGlyphsTransform.scaleNonUniform(1, scale);
155 spacingAndGlyphsTransform.scaleNonUniform(scale, 1);

Completed in 5404 milliseconds

1234567891011>>