/frameworks/av/media/libstagefright/codecs/amrwbenc/src/ |
pitch_f4.c | 62 Word32 frac /* (i) : fraction (-4..+3) */ 72 Word16 * pit_frac, /* (o) : chosen fraction (0, 1, 2 or 3). */ 79 Word32 fraction, i; local 122 fraction = -3; 126 fraction = -2; 130 fraction = 0; 132 max = Interpol_4(&corr[t0], fraction); 134 for (i = fraction + step; i <= 3; i += step) 140 fraction = i; 143 /* limit the fraction value in the interval [0,1,2,3] * [all...] |
math_op.c | 83 | 1- If exponant is odd then shift fraction right once. | 85 | 3- i = bit25-b30 of fraction, 16 <= i <= 63 ->because of normalization. | 88 | 6- fraction = table[i]<<16 - (table[i] - table[i+1]) * a * 2 | 136 | L_x = pow(2.0, exponant.fraction) (exponant = interger part) | 137 | = pow(2.0, 0.fraction) << exponant | 144 | 1- i = bit10-b15 of fraction, 0 <= i <= 31 | 145 | 2- a = bit0-b9 of fraction | 160 Word16 fraction /* (i) Q15 : Fractionnal part. (range: 0.0<=val<1.0) */ 166 L_x = vo_L_mult(fraction, 32); /* L_x = fraction<<6 * [all...] |
/external/chromium_org/third_party/WebKit/Source/core/animation/ |
AnimatableRepeatable.cpp | 55 bool AnimatableRepeatable::interpolateLists(const WillBeHeapVector<RefPtrWillBeMember<AnimatableValue> >& fromValues, const WillBeHeapVector<RefPtrWillBeMember<AnimatableValue> >& toValues, double fraction, WillBeHeapVector<RefPtrWillBeMember<AnimatableValue> >& interpolatedValues) 68 interpolatedValues.append(interpolate(from, to, fraction)); 73 PassRefPtrWillBeRawPtr<AnimatableValue> AnimatableRepeatable::interpolateTo(const AnimatableValue* value, double fraction) const 76 bool success = interpolateLists(m_values, toAnimatableRepeatable(value)->m_values, fraction, interpolatedValues); 79 return defaultInterpolateTo(this, value, fraction);
|
AnimatableClipPathOperation.cpp | 49 PassRefPtrWillBeRawPtr<AnimatableValue> AnimatableClipPathOperation::interpolateTo(const AnimatableValue* value, double fraction) const 52 return defaultInterpolateTo(this, value, fraction); 58 return AnimatableClipPathOperation::create(ShapeClipPathOperation::create(toShape->blend(fromShape, fraction)).get());
|
AnimatableDouble.cpp | 45 PassRefPtrWillBeRawPtr<AnimatableValue> AnimatableDouble::interpolateTo(const AnimatableValue* value, double fraction) const 50 return defaultInterpolateTo(this, value, fraction); 51 return AnimatableDouble::create(blend(m_number, other->m_number, fraction));
|
AnimatableFilterOperations.cpp | 44 PassRefPtrWillBeRawPtr<AnimatableValue> AnimatableFilterOperations::interpolateTo(const AnimatableValue* value, double fraction) const 47 return defaultInterpolateTo(this, value, fraction); 57 RefPtr<FilterOperation> blendedOp = FilterOperation::blend(from, to, fraction);
|
AnimatableLength.cpp | 70 PassRefPtrWillBeRawPtr<AnimatableValue> AnimatableLength::interpolateTo(const AnimatableValue* value, double fraction) const 73 return create(blend(m_pixels, length->m_pixels, fraction), blend(m_percent, length->m_percent, fraction),
|
AnimatableLengthBoxAndBool.cpp | 44 PassRefPtrWillBeRawPtr<AnimatableValue> AnimatableLengthBoxAndBool::interpolateTo(const AnimatableValue* value, double fraction) const 49 AnimatableValue::interpolate(box(), lengthBox->box(), fraction), 52 return defaultInterpolateTo(this, value, fraction);
|
AnimatableLengthPoint.cpp | 36 PassRefPtrWillBeRawPtr<AnimatableValue> AnimatableLengthPoint::interpolateTo(const AnimatableValue* value, double fraction) const 40 AnimatableValue::interpolate(this->x(), lengthPoint->x(), fraction), 41 AnimatableValue::interpolate(this->y(), lengthPoint->y(), fraction));
|
AnimatableLengthSize.cpp | 36 PassRefPtrWillBeRawPtr<AnimatableValue> AnimatableLengthSize::interpolateTo(const AnimatableValue* value, double fraction) const 40 AnimatableValue::interpolate(this->width(), lengthSize->width(), fraction), 41 AnimatableValue::interpolate(this->height(), lengthSize->height(), fraction));
|
AnimatableShapeValue.cpp | 51 PassRefPtrWillBeRawPtr<AnimatableValue> AnimatableShapeValue::interpolateTo(const AnimatableValue* value, double fraction) const 54 return defaultInterpolateTo(this, value, fraction); 59 return AnimatableShapeValue::create(ShapeValue::createShapeValue(toShape->blend(fromShape, fraction), shapeValue->m_shape->cssBox()).get());
|
/frameworks/base/packages/SystemUI/res/values-sw720dp/ |
dimens.xml | 68 <!-- The fraction of the screen height where the clock on the Keyguard has its center. The 71 <fraction name="keyguard_clock_y_fraction_max">35%</fraction> 72 <fraction name="keyguard_clock_y_fraction_min">25%</fraction>
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_fractions.py | 13 F = fractions.Fraction 57 """Test comparison of Fraction with a naive rational implementation.""" 65 if isinstance(other, fractions.Fraction): 92 class DummyFraction(fractions.Fraction): 93 """Dummy Fraction subclass for copy and deepcopy testing.""" 147 self.assertRaisesMessage(ZeroDivisionError, "Fraction(12, 0)", 197 ZeroDivisionError, "Fraction(3, 0)", 200 ValueError, "Invalid literal for Fraction: '3/'", 203 ValueError, "Invalid literal for Fraction: '/2'", 206 ValueError, "Invalid literal for Fraction: '3 /2'" [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_fractions.py | 13 F = fractions.Fraction 57 """Test comparison of Fraction with a naive rational implementation.""" 65 if isinstance(other, fractions.Fraction): 92 class DummyFraction(fractions.Fraction): 93 """Dummy Fraction subclass for copy and deepcopy testing.""" 147 self.assertRaisesMessage(ZeroDivisionError, "Fraction(12, 0)", 197 ZeroDivisionError, "Fraction(3, 0)", 200 ValueError, "Invalid literal for Fraction: '3/'", 203 ValueError, "Invalid literal for Fraction: '/2'", 206 ValueError, "Invalid literal for Fraction: '3 /2'" [all...] |
/frameworks/support/v17/leanback/res/values/ |
dimens.xml | 40 <item name="lb_browse_rows_scale" type="fraction">80%</item> 50 <item name="lb_browse_header_unselect_alpha" type="fraction">50%</item> 62 <item name="lb_focus_zoom_factor_small" type="fraction">110%</item> 63 <item name="lb_focus_zoom_factor_medium" type="fraction">114%</item> 64 <item name="lb_focus_zoom_factor_large" type="fraction">118%</item> 142 <item name="lb_view_active_level" type="fraction">0%</item> 143 <item name="lb_view_dimmed_level" type="fraction">60%</item> 170 <item name="lb_search_orb_focused_zoom" type="fraction">120%</item> 180 <item name="lb_search_bar_speech_orb_max_level_zoom" type="fraction">144%</item>
|
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/ |
PcQwerty.java | 197 // U+00BD: "½" VULGAR FRACTION ONE HALF 198 // U+2153: "?" VULGAR FRACTION ONE THIRD 199 // U+00BC: "¼" VULGAR FRACTION ONE QUARTER 200 // U+215B: "?" VULGAR FRACTION ONE EIGHTH 204 // U+2154: "?" VULGAR FRACTION TWO THIRDS 207 // U+00BE: "¾" VULGAR FRACTION THREE QUARTERS 208 // U+215C: "?" VULGAR FRACTION THREE EIGHTHS 212 // U+215D: "?" VULGAR FRACTION FIVE EIGHTHS 215 // U+215E: "?" VULGAR FRACTION SEVEN EIGHTHS
|
Symbols.java | 123 // U+00BD: "½" VULGAR FRACTION ONE HALF 124 // U+2153: "?" VULGAR FRACTION ONE THIRD 125 // U+00BC: "¼" VULGAR FRACTION ONE QUARTER 126 // U+215B: "?" VULGAR FRACTION ONE EIGHTH 129 // U+2154: "?" VULGAR FRACTION TWO THIRDS 132 // U+00BE: "¾" VULGAR FRACTION THREE QUARTERS 133 // U+215C: "?" VULGAR FRACTION THREE EIGHTHS 137 // U+215D: "?" VULGAR FRACTION FIVE EIGHTHS 140 // U+215E: "?" VULGAR FRACTION SEVEN EIGHTHS
|
/prebuilts/sdk/current/support/v17/leanback/res/values/ |
dimens.xml | 40 <item name="lb_browse_rows_scale" type="fraction">80%</item> 50 <item name="lb_browse_header_unselect_alpha" type="fraction">50%</item> 62 <item name="lb_focus_zoom_factor_small" type="fraction">110%</item> 63 <item name="lb_focus_zoom_factor_medium" type="fraction">114%</item> 64 <item name="lb_focus_zoom_factor_large" type="fraction">118%</item> 142 <item name="lb_view_active_level" type="fraction">0%</item> 143 <item name="lb_view_dimmed_level" type="fraction">60%</item> 170 <item name="lb_search_orb_focused_zoom" type="fraction">120%</item> 180 <item name="lb_search_bar_speech_orb_max_level_zoom" type="fraction">144%</item>
|
/bionic/libm/upstream-freebsd/lib/msun/src/ |
s_modf.c | 19 * return fraction part of x, and return x's integral part in *iptr. 56 } else if (j0>51) { /* no fraction part */ 66 } else { /* fraction part in low x */
|
/external/chromium_org/third_party/sqlite/src/test/ |
corruptA.test | 57 hexio_write test.db 21 41 ;# max embedded payload fraction 65 hexio_write test.db 22 1f ;# min embedded payload fraction 73 hexio_write test.db 23 21 ;# min leaf payload fraction
|
/external/fdlibm/ |
s_modf.c | 16 * return fraction part of x, and return x's integral part in *iptr. 62 } else if (j0>51) { /* no fraction part */ 67 } else { /* fraction part in low x */
|
/external/chromium_org/chrome/android/java/res/anim/ |
menu_exit.xml | 13 android:pivotX="@fraction/menu_animation_pivot_x"
|
/external/chromium_org/chrome/browser/ui/cocoa/ |
presentation_mode_controller.mm | 53 // Designated initializer. Asks |controller| for the current shown fraction, so 72 // Calculate the effective duration, based on the current shown fraction. 90 CGFloat fraction = 92 [controller_ changeFloatingBarShownFraction:fraction]; 112 // Change the overlay to the given fraction, with or without animation. Only 113 // guaranteed to work properly with |fraction == 0| or |fraction == 1|. This 115 - (void)changeOverlayToFraction:(CGFloat)fraction 350 - (void)changeFloatingBarShownFraction:(CGFloat)fraction { 351 [browserController_ setFloatingBarShownFraction:fraction]; [all...] |
/external/chromium_org/third_party/WebKit/Source/core/animation/interpolation/ |
Interpolation.h | 21 void interpolate(int iteration, double fraction) const;
|
/frameworks/support/v7/appcompat/res/values/ |
dimens.xml | 49 (the screen is in landscape). This may be either a fraction or a dimension.--> 52 (the screen is in portrait). This may be either a fraction or a dimension.--> 55 (the screen is in portrait). This may be either a fraction or a dimension.--> 58 (the screen is in landscape). This may be either a fraction or a dimension.-->
|