HomeSort by relevance Sort by last modified time
    Searched defs:Scale (Results 1 - 25 of 99) sorted by null

1 2 3 4

  /external/chromium_org/third_party/skia/include/core/
SkUnPreMultiply.h 20 typedef uint32_t Scale;
23 static const Scale* GetScaleTable() {
27 static Scale GetScale(U8CPU alpha) {
34 const Scale* table = SkUnPreMultiply::GetScaleTable();
38 SkUnPreMultiply::Scale scale = table[a];
40 red = SkUnPreMultiply::ApplyScale(scale, red);
45 static U8CPU ApplyScale(Scale scale, U8CPU component) {
47 return (scale * component + (1 << 23)) >> 24
    [all...]
  /external/chromium_org/third_party/webrtc/common_video/libyuv/
scaler.cc 48 int Scaler::Scale(const I420VideoFrame& src_frame,
  /external/chromium_org/ui/gfx/geometry/
insets.h 25 Insets Scale(float scale) const {
26 return Scale(scale, scale);
29 Insets Scale(float x_scale, float y_scale) const {
size_f.h 24 void Scale(float scale) {
25 Scale(scale, scale);
28 void Scale(float x_scale, float y_scale) {
45 inline SizeF ScaleSize(const SizeF& p, float scale) {
46 return ScaleSize(p, scale, scale);
box_f.h 44 // Scales all three axes by the given scale.
45 void Scale(float scale) {
46 Scale(scale, scale, scale);
49 // Scales each axis by the corresponding given scale.
50 void Scale(float x_scale, float y_scale, float z_scale) {
51 origin_.Scale(x_scale, y_scale, z_scale)
    [all...]
point_f.h 24 void Scale(float scale) {
25 Scale(scale, scale);
28 void Scale(float x_scale, float y_scale) {
66 inline PointF ScalePoint(const PointF& p, float scale) {
67 return ScalePoint(p, scale, scale);
rect_f.h 46 // Scales the rectangle by |scale|.
47 void Scale(float scale) {
48 Scale(scale, scale);
51 void Scale(float x_scale, float y_scale) {
96 inline RectF ScaleRect(const RectF& r, float scale) {
97 return ScaleRect(r, scale, scale);
    [all...]
vector2d_f.cc 39 void Vector2dF::Scale(float x_scale, float y_scale) {
56 scaled_v.Scale(x_scale, y_scale);
vector3d_f.cc 60 void Vector3dF::Scale(float x_scale, float y_scale, float z_scale) {
84 scaled_v.Scale(x_scale, y_scale, z_scale);
vector2d_f.h 57 // Scale the x and y components of the vector by |scale|.
58 void Scale(float scale) { Scale(scale, scale); }
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);
100 // Return a vector that is |v| scaled by the given scale factors along eac
    [all...]
point3_f.h 28 void Scale(float scale) {
29 Scale(scale, scale, scale);
32 void Scale(float x_scale, float y_scale, float z_scale) {
115 inline Point3F ScalePoint(const Point3F& p, float scale) {
116 return ScalePoint(p, scale, scale, scale)
    [all...]
quad_f.cc 90 void QuadF::Scale(float x_scale, float y_scale) {
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);
quad_f.h 76 // Scale each point in the quad by the |scale| factor.
77 void Scale(float scale) { Scale(scale, scale); }
79 // Scale each point in the quad by the scale factors along each axis.
80 void Scale(float x_scale, float y_scale)
    [all...]
vector3d_f.h 65 // Scale all components of the vector by |scale|.
66 void Scale(float scale) { Scale(scale, scale, scale); }
67 // Scale the each component of the vector by the given scale factors
    [all...]
  /external/skia/include/core/
SkUnPreMultiply.h 20 typedef uint32_t Scale;
23 static const Scale* GetScaleTable() {
27 static Scale GetScale(U8CPU alpha) {
34 const Scale* table = SkUnPreMultiply::GetScaleTable();
38 SkUnPreMultiply::Scale scale = table[a];
40 red = SkUnPreMultiply::ApplyScale(scale, red);
45 static U8CPU ApplyScale(Scale scale, U8CPU component) {
47 return (scale * component + (1 << 23)) >> 24
    [all...]
  /external/chromium_org/third_party/webrtc/modules/utility/source/
audio_frame_operations.cc 77 int AudioFrameOperations::Scale(float left, float right, AudioFrame& frame) {
91 int AudioFrameOperations::ScaleWithSat(float scale, AudioFrame& frame) {
97 temp_data = static_cast<int32_t>(scale * frame.data_[i]);
  /frameworks/av/media/libeffects/lvm/lib/Common/src/
Filters.h 44 LVM_UINT16 Scale;
57 LVM_UINT16 Scale;
  /external/chromium_org/ui/gfx/
shadow_value.cc 31 ShadowValue ShadowValue::Scale(float scale) const {
33 gfx::ToFlooredPoint(gfx::ScalePoint(offset_, scale));
34 return ShadowValue(scaled_offset, blur_ * scale, color_);
  /external/llvm/include/llvm/Transforms/Utils/
Local.h 224 Constant *Scale = ConstantInt::get(IntPtrTy, Size);
226 Scale = ConstantExpr::getMul(OC, Scale, isInBounds/*NUW*/);
228 Result = Builder->CreateAdd(Result, Scale, GEP->getName()+".offs");
  /external/llvm/lib/CodeGen/
MachineBranchProbabilityInfo.cpp 32 getSumForBlock(const MachineBasicBlock *MBB, uint32_t &Scale) const {
38 Scale = 1;
49 // Otherwise, compute the scale necessary to cause the weights to fit, and
50 // re-sum with that scale applied.
52 Scale = (Sum / UINT32_MAX) + 1;
57 Sum += Weight / Scale;
109 uint32_t Scale = 1;
110 uint32_t D = getSumForBlock(Src, Scale);
111 uint32_t N = getEdgeWeight(Src, Dst) / Scale;
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
omxVCM4P10_TransformDequantChromaDCFromPair.c 50 int Scale = armVCM4P10_VMatrix[QP%6][0];
57 Value = (pDst[i] * Scale) << Shift;
65 Value = (pDst[i] * Scale) >> 1;
omxVCM4P10_TransformDequantLumaDCFromPair.c 50 int Scale = armVCM4P10_VMatrix[QP%6][0];
57 Value = (pDst[i] * Scale) << Shift;
68 Value = (pDst[i] * Scale + Round) >> Shift;
  /external/ceres-solver/internal/ceres/
suitesparse.h 109 // vector scale. mode describes how scaling is applied. Possible
110 // values are CHOLMOD_ROW for row scaling - diag(scale) * A,
111 // CHOLMOD_COL for column scaling - A * diag(scale) and CHOLMOD_SYM
113 // - diag(scale) * A * diag(scale).
114 void Scale(cholmod_dense* scale, int mode, cholmod_sparse* A) {
115 cholmod_scale(scale, mode, A, &cc_);
  /external/chromium_org/native_client_sdk/src/examples/demo/flock/
vector2.h 44 Scale(1.0 / mag);
47 // Scale the vector in-place by |scale|.
48 void Scale(double scale) {
49 x_ *= scale;
50 y_ *= scale;
58 Scale(max_mag / mag); // Does Normalize() followed by Scale(max_mag).
  /frameworks/support/v17/leanback/kitkat/android/support/v17/leanback/transition/
Scale.java 28 class Scale extends Transition {
29 private static final String PROPNAME_SCALE = "android:leanback:scale";
31 public Scale() {
67 final float scale = (Float) animation.getAnimatedValue();
68 view.setScaleX(scale);
69 view.setScaleY(scale);

Completed in 612 milliseconds

1 2 3 4