Searched defs:Scale (Results 1 - 25 of 80) sorted by relevance

1234

/external/chromium_org/third_party/skia/include/core/
H A DSkUnPreMultiply.h20 typedef uint32_t Scale; typedef in class:SkUnPreMultiply
23 static const Scale* GetScaleTable() {
27 static Scale GetScale(U8CPU alpha) {
34 const Scale* table = SkUnPreMultiply::GetScaleTable();
38 SkUnPreMultiply::Scale scale = table[a];
45 static U8CPU ApplyScale(Scale scale, U8CPU component) {
/external/chromium_org/ui/gfx/geometry/
H A Dinsets.h25 Insets Scale(float scale) const { function in class:gfx::Insets
26 return Scale(scale, scale);
29 Insets Scale(float x_scale, float y_scale) const { function in class:gfx::Insets
H A Dsize_f.h24 void Scale(float scale) { function in class:gfx::SizeF
25 Scale(scale, scale);
28 void Scale(float x_scale, float y_scale) { function in class:gfx::SizeF
H A Dvector2d_f.cc39 void Vector2dF::Scale(float x_scale, float y_scale) { function in class:gfx::Vector2dF
56 scaled_v.Scale(x_scale, y_scale);
H A Dbox_f.h45 void Scale(float scale) { function in class:gfx::BoxF
46 Scale(scale, scale, scale);
50 void Scale(float x_scale, float y_scale, float z_scale) { function in class:gfx::BoxF
51 origin_.Scale(x_scale, y_scale, z_scale);
H A Dpoint_f.h24 void Scale(float scale) { function in class:gfx::PointF
25 Scale(scale, scale);
28 void Scale(float x_scale, float y_scale) { function in class:gfx::PointF
H A Drect_f.h47 void Scale(float scale) { function in class:gfx::RectF
48 Scale(scale, scale);
51 void Scale(float x_scale, float y_scale) { function in class:gfx::RectF
H A Dvector2d_f.h57 // Scale the x and y components of the vector by |scale|.
58 void Scale(float scale) { Scale(scale, scale); } function in class:gfx::Vector2dF
59 // Scale the x and y components of the vector by |x_scale| and |y_scale|
61 void Scale(float x_scale, float y_scale);
H A Dvector3d_f.cc60 void Vector3dF::Scale(float x_scale, float y_scale, float z_scale) { function in class:gfx::Vector3dF
84 scaled_v.Scale(x_scale, y_scale, z_scale);
H A Dpoint3_f.h28 void Scale(float scale) { function in class:gfx::Point3F
29 Scale(scale, scale, scale);
32 void Scale(float x_scale, float y_scale, float z_scale) { function in class:gfx::Point3F
H A Dquad_f.cc90 void QuadF::Scale(float x_scale, float y_scale) { function in class:gfx::QuadF
91 p1_.Scale(x_scale, y_scale);
92 p2_.Scale(x_scale, y_scale);
93 p3_.Scale(x_scale, y_scale);
94 p4_.Scale(x_scale, y_scale);
H A Dquad_f.h76 // Scale each point in the quad by the |scale| factor.
77 void Scale(float scale) { Scale(scale, scale); } function in class:gfx::QuadF
79 // Scale each point in the quad by the scale factors along each axis.
80 void Scale(float x_scale, float y_scale);
H A Dvector3d_f.h65 // Scale all components of the vector by |scale|.
66 void Scale(float scale) { Scale(scale, scale, scale); } function in class:gfx::Vector3dF
67 // Scale the each component of the vector by the given scale factors.
68 void Scale(float x_scale, float y_scale, float z_scale);
/external/skia/include/core/
H A DSkUnPreMultiply.h20 typedef uint32_t Scale; typedef in class:SkUnPreMultiply
23 static const Scale* GetScaleTable() {
27 static Scale GetScale(U8CPU alpha) {
34 const Scale* table = SkUnPreMultiply::GetScaleTable();
38 SkUnPreMultiply::Scale scale = table[a];
45 static U8CPU ApplyScale(Scale scale, U8CPU component) {
/external/chromium_org/third_party/webrtc/common_video/libyuv/
H A Dscaler.cc48 int Scaler::Scale(const I420VideoFrame& src_frame, function in class:webrtc::Scaler
/external/chromium_org/third_party/webrtc/modules/utility/source/
H A Daudio_frame_operations.cc77 int AudioFrameOperations::Scale(float left, float right, AudioFrame& frame) { function in class:webrtc::AudioFrameOperations
/external/chromium_org/ui/gfx/
H A Dshadow_value.cc31 ShadowValue ShadowValue::Scale(float scale) const { function in class:gfx::ShadowValue
/external/llvm/lib/CodeGen/
H A DMachineBranchProbabilityInfo.cpp32 getSumForBlock(const MachineBasicBlock *MBB, uint32_t &Scale) const {
38 Scale = 1;
52 Scale = (Sum / UINT32_MAX) + 1;
57 Sum += Weight / Scale;
109 uint32_t Scale = 1; local
110 uint32_t D = getSumForBlock(Src, Scale);
111 uint32_t N = getEdgeWeight(Src, Dst) / Scale;
/external/ceres-solver/internal/ceres/
H A Dsuitesparse.h114 void Scale(cholmod_dense* scale, int mode, cholmod_sparse* A) { function in class:ceres::internal::SuiteSparse
/external/chromium_org/native_client_sdk/src/examples/demo/flock/
H A Dvector2.h44 Scale(1.0 / mag);
47 // Scale the vector in-place by |scale|.
48 void Scale(double scale) { function in class:Vector2
58 Scale(max_mag / mag); // Does Normalize() followed by Scale(max_mag).
/external/llvm/include/llvm/Transforms/Utils/
H A DLocal.h224 Constant *Scale = ConstantInt::get(IntPtrTy, Size); local
226 Scale = ConstantExpr::getMul(OC, Scale, isInBounds/*NUW*/);
228 Result = Builder->CreateAdd(Result, Scale, GEP->getName()+".offs");
/external/chromium_org/third_party/WebKit/Source/platform/transforms/
H A DTransformOperation.h40 ScaleX, ScaleY, Scale, enumerator in enum:blink::TransformOperation::OperationType
/external/fonttools/Lib/fontTools/misc/
H A Dtransform.py16 Scale -- Convenience function that returns a scaling transformation
23 >>> t = Scale(2, 3)
51 __all__ = ["Transform", "Identity", "Offset", "Scale"]
118 >>> t = Scale(2, 3)
300 >>> d = {Scale(12, 13): None}
340 def Scale(x, y=None): function
345 >>> Scale(2, 3)
/external/fonttools/Tools/fontTools/misc/
H A Dtransform.py16 Scale -- Convenience function that returns a scaling transformation
23 >>> t = Scale(2, 3)
51 __all__ = ["Transform", "Identity", "Offset", "Scale"]
118 >>> t = Scale(2, 3)
300 >>> d = {Scale(12, 13): None}
340 def Scale(x, y=None): function
345 >>> Scale(2, 3)
/external/chromium_org/media/base/
H A Daudio_bus.cc327 void AudioBus::Scale(float volume) { function in class:media::AudioBus

Completed in 688 milliseconds

1234