HomeSort by relevance Sort by last modified time
    Searched refs:fraction (Results 76 - 100 of 171) sorted by null

1 2 34 5 6 7

  /external/chromium_org/third_party/tcmalloc/chromium/src/gperftools/
malloc_extension.h 394 double fraction; // Fraction of range that is being used (0 if !INUSE) member in struct:base::MallocRange
  /external/chromium_org/third_party/tcmalloc/vendor/src/gperftools/
malloc_extension.h 410 double fraction; // Fraction of range that is being used (0 if !INUSE) member in struct:base::MallocRange
  /external/ceres-solver/internal/ceres/
jet_quaternion_integration_test.cc 88 const J fraction(0.1);
89 Quaternion<J> c = Quaternion<J>::Slerp(a, b, fraction);
91 Quaternion<double>::Slerp(double_a, double_b, fraction.a);
  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimatableNumber.cpp 105 PassRefPtr<AnimatableValue> AnimatableNumber::interpolateTo(const AnimatableValue* value, double fraction) const
108 return AnimatableNumber::create(scale(1 - fraction).get(), number->scale(fraction).get());
  /external/smack/src/org/xbill/DNS/
LOCRecord.java 84 double fraction = Integer.parseInt(parts[1]); local
86 fraction *= -1;
88 return value + (fraction / Math.pow(10, digits));
  /external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
pitch_filter.c 216 double fraction; local
222 fraction = parameters->lag_offset - (parameters->lag + PITCH_FILTDELAY);
223 fraction_index = WebRtcIsac_lrint(PITCH_FRACS * fraction - 0.5);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_strtod.py 39 fraction = m.group('frac') or ''
40 intpart = int(m.group('int') + fraction)
41 exp = int(m.group('exp') or '0') - len(fraction)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_strtod.py 39 fraction = m.group('frac') or ''
40 intpart = int(m.group('int') + fraction)
41 exp = int(m.group('exp') or '0') - len(fraction)
  /frameworks/base/core/java/android/animation/
PropertyValuesHolder.java 657 * @param fraction The elapsed, interpolated fraction of the animation.
659 void calculateValue(float fraction) {
660 mAnimatedValue = mKeyframeSet.getValue(fraction);
    [all...]
  /development/samples/devbytes/animation/ListViewItemAnimations/src/com/example/android/listviewitemanimations/
ListViewItemAnimations.java 239 float fraction = Math.abs(deltaX) / view.getWidth(); local
242 view.setAlpha(1 - fraction);
247 mCurrentAlpha = (1 - fraction);
  /external/chromium_org/third_party/skia/src/animator/
SkDrawColor.cpp 71 //SkScalar fraction = SkScalarMod(hue, 60 * SK_Scalar1);
73 SkScalar fraction = hue / 60 - SkIntToScalar(sextant); local
75 SkScalar q = SkScalarMul(value, SK_Scalar1 - SkScalarMul(saturation, fraction));
77 SkScalarMul(saturation, SK_Scalar1 - fraction));
  /external/chromium_org/third_party/skia/src/utils/
SkInterpolator.cpp 82 SkScalar fraction = SkScalarFraction(fRepeat); local
83 offsetTime = fraction == 0 && fRepeat > 0 ? totalTime :
84 (SkMSec) SkScalarMulFloor(fraction, totalTime);
  /external/qemu/
cutils.c 331 double val, mul, integral, fraction; local
338 fraction = modf(val, &integral);
339 if (fraction != 0) {
  /external/skia/src/animator/
SkDrawColor.cpp 71 //SkScalar fraction = SkScalarMod(hue, 60 * SK_Scalar1);
73 SkScalar fraction = hue / 60 - SkIntToScalar(sextant); local
75 SkScalar q = SkScalarMul(value, SK_Scalar1 - SkScalarMul(saturation, fraction));
77 SkScalarMul(saturation, SK_Scalar1 - fraction));
  /external/skia/src/utils/
SkInterpolator.cpp 82 SkScalar fraction = SkScalarFraction(fRepeat); local
83 offsetTime = fraction == 0 && fRepeat > 0 ? totalTime :
84 (SkMSec) SkScalarMulFloor(fraction, totalTime);
  /external/sonivox/arm-fm-22k/lib_src/
eas_chorus.c 127 //convert depth from steps of .05 ms, to samples, with 16 bit whole part, discard fraction
151 //16 bit whole part, 16 bit fraction
189 * indexDesired: the fractional index we are looking up (16 bits index + 16 bits fraction)
200 EAS_I16 fraction; local
208 fraction = (EAS_I16)((indexDesired>>1) & 0x07FFF); //just use 15 bits of fractional part
231 //compute linear interpolation as (val1 + ((val2-val1)*fraction))
232 return(val1 + (EAS_I16)MULT_EG1_EG1(val2-val1,fraction));
  /external/sonivox/arm-hybrid-22k/lib_src/
eas_chorus.c 127 //convert depth from steps of .05 ms, to samples, with 16 bit whole part, discard fraction
151 //16 bit whole part, 16 bit fraction
189 * indexDesired: the fractional index we are looking up (16 bits index + 16 bits fraction)
200 EAS_I16 fraction; local
208 fraction = (EAS_I16)((indexDesired>>1) & 0x07FFF); //just use 15 bits of fractional part
231 //compute linear interpolation as (val1 + ((val2-val1)*fraction))
232 return(val1 + (EAS_I16)MULT_EG1_EG1(val2-val1,fraction));
  /external/sonivox/arm-wt-22k/lib_src/
eas_chorus.c 127 //convert depth from steps of .05 ms, to samples, with 16 bit whole part, discard fraction
151 //16 bit whole part, 16 bit fraction
189 * indexDesired: the fractional index we are looking up (16 bits index + 16 bits fraction)
200 EAS_I16 fraction; local
208 fraction = (EAS_I16)((indexDesired>>1) & 0x07FFF); //just use 15 bits of fractional part
231 //compute linear interpolation as (val1 + ((val2-val1)*fraction))
232 return(val1 + (EAS_I16)MULT_EG1_EG1(val2-val1,fraction));
  /hardware/invensense/60xx/mlsdk/mllite/
mldl_cfg_mpu.c 97 MPL_LOGD("slave_accel->range.fraction= %02x\n", (int)mldl_cfg->accel->range.fraction);
113 MPL_LOGD("slave_compass->range.fraction= %02x\n", (int)mldl_cfg->compass->range.fraction);
129 MPL_LOGD("slave_pressure->range.fraction= %02x\n", (int)mldl_cfg->pressure->range.fraction);
  /external/chromium_org/media/base/
yuv_convert.cc 404 // fraction to avoid degenerating to point-sampling - we should really just
405 // fix the fraction at 50% for all pixels in that case.
487 int fraction = (source_top & kFractionMask) >> 8; local
489 y_temp + source_y_left, y0_ptr, y1_ptr, source_y_width, fraction);
491 u_temp + source_uv_left, u0_ptr, u1_ptr, source_uv_width, fraction);
493 v_temp + source_uv_left, v0_ptr, v1_ptr, source_uv_width, fraction);
  /libcore/luni/src/main/java/java/math/
BigDecimal.java 2714 long fraction = unscaledVal % sizeOfFraction; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/
DragImage.cpp 252 void DragImage::dissolveToFraction(float fraction)
261 SkColorGetA(*pixel) * fraction,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
TreeWidget.py 150 fraction = top + height - visible_height
152 fraction = top
153 fraction = float(fraction) / y1
154 self.canvas.yview_moveto(fraction)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
TreeWidget.py 150 fraction = top + height - visible_height
152 fraction = top
153 fraction = float(fraction) / y1
154 self.canvas.yview_moveto(fraction)
  /external/chromium_org/third_party/libxml/src/
trionan.c 409 double integral, fraction;
423 (fraction = modf(number, &integral),
424 integral == fraction)));

Completed in 727 milliseconds

1 2 34 5 6 7