HomeSort by relevance Sort by last modified time
    Searched full:scale (Results 151 - 175 of 1224) sorted by null

1 2 3 4 5 67 8 91011>>

  /sdk/traceview/src/com/android/traceview/
TickScaler.java 114 double scale = Math.pow(10, logTickIncrement); local
115 double scaledTickIncr = mTickIncrement / scale;
124 mTickIncrement = scaledTickIncr * scale;
  /external/skia/src/views/
SkWidget.cpp 37 SkScalar scale;
39 if (fInterp.timeToValues(SkTime::GetMSecs(), &scale) == SkInterpolator::kFreezeEnd_Result)
50 SkScalar dy = SkScalarMul(height, scale);
51 if (scale < 0)
55 paint.setAlpha((U8)SkScalarMul(alpha, SK_Scalar1 - SkScalarAbs(scale)));
58 paint.setAlpha((U8)SkScalarMul(alpha, SkScalarAbs(scale)));
  /cts/tests/tests/util/src/android/util/cts/
DisplayMetricsTest.java 64 // according to Android enmulator doc UI -scale confine density should between 0.1 to 3
76 // according to Android enmulator doc UI -scale confine density should between 0.1 to 3
  /external/opencore/fileformats/mp4/composer/src/
trackatom.cpp 128 // which is supposed to be in movie time scale
141 //Edit durations are sposed to be movie time scale
174 // which is supposed to be in movie time scale
187 //Edit durations are sposed to be movie time scale
219 // which is supposed to be in movie time scale
232 //Edit durations are sposed to be movie time scale
266 // which is supposed to be in movie time scale
279 //Edit durations are sposed to be movie time scale
  /external/proguard/src/proguard/gui/splash/
ImageSprite.java 44 * @param scaleX the variable x-scale of the image.
45 * @param scaleY the variable y-scale of the image.
  /external/skia/gm/
shapes.cpp 105 cv->scale(SK_ScalarHalf, SK_ScalarHalf);
108 cv->scale(-SK_Scalar1, SK_Scalar1);
  /external/skia/src/core/
SkBlitRow_D32.cpp 101 unsigned scale = 256 - SkAlpha255To256(colorA); local
103 *dst = color + SkAlphaMulQ(*src, scale);
  /external/webkit/WebCore/platform/graphics/cg/
GraphicsContextPlatformPrivateCG.h 60 void scale(const FloatSize&) {} function in class:WebCore::GraphicsContextPlatformPrivate
75 void scale(const FloatSize&);
  /frameworks/base/libs/rs/scriptc/
rs_graphics.rsh 11 extern float3 float3Scale(float3 v, float scale);
17 extern float4 float4Scale(float4 v, float scale);
  /frameworks/base/opengl/libagl/
fixed_asm.S 41 mov r0, r2, lsr r1 /* scale to 16.16 */
58 movs r0, r2, lsr r1 /* scale to 16.16 */
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/voice/
WaveformImage.java 71 final float scale = 3.5f / 65536.0f; local
79 final float y = (h / 2) - (s * h * scale);
  /hardware/ti/omap3/omx/system/src/openmax_il/perf/tests/
perf 34 # scale factor size => scale a size by factor percent
35 scale() {
91 VPsize=$(scale $18 $(scale $19 $VDsize)) ;;
93 VPsize=$(scale $16 $(scale $17 $VDsize)) ;;
95 VPsize=$(scale $12 $(scale $13 $VDsize)) ;;
190 VPsize=$(scale $12 $(scale $13 $VDsize)) ;
    [all...]
  /external/skia/include/core/
SkMatrix.h 39 kScale_Mask = 0x02, //!< set if the matrix has X or Y scale
64 true if the matrix is identity, scale-only, or rotates a multiple of
133 /** Set the matrix to scale by sx and sy, with a pivot point at (px, py).
138 /** Set the matrix to scale by sx and sy.
176 /** Preconcats the matrix with the specified scale.
180 /** Preconcats the matrix with the specified scale.
209 /** Postconcats the matrix with the specified scale.
213 /** Postconcats the matrix with the specified scale.
244 * Scale in X and Y independently, so that src matches dst exactly.
249 * Compute a scale that will maintain the original src aspect ratio
    [all...]
  /external/freetype/src/pshinter/
pshalgo.c 400 FT_Fixed scale,
412 hint->cur_pos = FT_MulFix( hint->org_pos, scale ) + delta;
413 hint->cur_len = FT_MulFix( hint->org_len, scale );
445 FT_Fixed scale = dim->scale_mult; local
451 FT_Pos pos = FT_MulFix( hint->org_pos, scale ) + delta;
452 FT_Pos len = FT_MulFix( hint->org_len, scale );
528 cur_delta = FT_MulFix( cur_org_center - par_org_center, scale );
673 FT_Fixed scale = dim->scale_mult;
679 FT_Pos pos = FT_MulFix( hint->org_pos, scale ) + delta;
680 FT_Pos len = FT_MulFix( hint->org_len, scale );
859 FT_Fixed scale = dim->scale_mult; local
1682 FT_Fixed scale = dim->scale_mult; local
1826 FT_Fixed scale = dim->scale_mult; local
1883 FT_Fixed scale = dim->scale_mult; local
2033 FT_Fixed scale = dim->scale_mult; local
    [all...]
  /external/opencore/codecs_v2/audio/aac/dec/src/
esc_iquant_scaling.cpp 51 scale = scaling factor after separating power of 2 factor out from
176 mult_low = ( (UInt32) b_low * scale );
177 mult_high = ( (Int32) b_high * scale );
212 mult_low = ( (UInt32) b_low * scale );
213 mult_high = ( (Int32) b_high * scale );
440 UInt16 scale,
494 if (scale != 0)
507 coef[i] = fxp_mul32_by_16(mult_high, scale) << 1;
514 coef[i-1] = fxp_mul32_by_16(mult_high, scale) << 1;
523 coef[i-2] = fxp_mul32_by_16(mult_high, scale) << 1
    [all...]
  /frameworks/base/media/libstagefright/codecs/aacdec/
esc_iquant_scaling.cpp 51 scale = scaling factor after separating power of 2 factor out from
176 mult_low = ( (UInt32) b_low * scale );
177 mult_high = ( (Int32) b_high * scale );
212 mult_low = ( (UInt32) b_low * scale );
213 mult_high = ( (Int32) b_high * scale );
440 UInt16 scale,
494 if (scale != 0)
507 coef[i] = fxp_mul32_by_16(mult_high, scale) << 1;
514 coef[i-1] = fxp_mul32_by_16(mult_high, scale) << 1;
523 coef[i-2] = fxp_mul32_by_16(mult_high, scale) << 1
    [all...]
  /cts/tests/res/anim/
anim_scale.xml 18 <scale xmlns:android="http://schemas.android.com/apk/res/android"
  /development/samples/ApiDemos/res/anim/
zoom_enter.xml 24 <scale android:fromXScale="2.0" android:toXScale="1.0"
zoom_exit.xml 27 <scale android:fromXScale="1.0" android:toXScale=".5"
  /development/samples/Home/res/anim/
grid_entry.xml 23 <scale android:fromXScale="0.8" android:toXScale="1.0"
  /development/samples/MultiResolution/
_index.html 10 such as scale-independent pixels (<code>sp</code>) and density-independent pixels (<code>dip</code>)</li>
  /external/kernel-headers/original/linux/netfilter/
nf_conntrack_tcp.h 36 u_int8_t td_scale; /* window scale factor */
  /external/webkit/WebCore/manual-tests/
svg-crash-hovering-use.svg 8 <text x="30" y="30" transform="scale(0.2 0.2)">Hover over the rectangle - it should not crash</text>
  /external/webkit/WebCore/page/
PrintContext.cpp 139 float scale = width / pageRect.width(); local
142 ctx.scale(FloatSize(scale, scale));
  /external/webkit/WebCore/platform/graphics/
IntSize.h 84 void scale(float scale) function in class:WebCore::IntSize
86 m_width = static_cast<int>(static_cast<float>(m_width) * scale);
87 m_height = static_cast<int>(static_cast<float>(m_height) * scale);

Completed in 191 milliseconds

1 2 3 4 5 67 8 91011>>