/bionic/libm/src/ |
e_scalb.c | 28 double 29 __ieee754_scalb(double x, int fn) 31 double 32 __ieee754_scalb(double x, double fn)
|
s_logb.c | 18 * double logb(x) 26 static const double 29 double 30 logb(double x) 43 return (double) ((ix>>20)-1023);
|
/dalvik/vm/mterp/armv5te/ |
binopWide.S | 12 * xor-long, add-double, sub-double, mul-double, div-double, 13 * rem-double
|
binopWide2addr.S | 12 * and-long/2addr, or-long/2addr, xor-long/2addr, add-double/2addr, 13 * sub-double/2addr, mul-double/2addr, div-double/2addr, 14 * rem-double/2addr
|
/dalvik/vm/mterp/armv6t2/ |
binopWide2addr.S | 12 * and-long/2addr, or-long/2addr, xor-long/2addr, add-double/2addr, 13 * sub-double/2addr, mul-double/2addr, div-double/2addr, 14 * rem-double/2addr
|
/external/chromium/chrome/browser/chromeos/ |
audio_mixer.h | 17 static const double kSilenceDb = -200.0; 39 virtual double GetVolumeDb() const = 0; 43 virtual bool GetVolumeLimits(double* vol_min, double* vol_max) = 0; 46 virtual void SetVolumeDb(double vol_db) = 0;
|
/external/chromium/webkit/glue/media/ |
audio_decoder.cc | 24 const char* data, size_t data_size, double sample_rate) { 37 double file_sample_rate = reader.sample_rate(); 38 double duration = reader.duration().InSecondsF(); 44 // double destination_sample_rate = 46 double destination_sample_rate = file_sample_rate;
|
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.type/ |
p9-0x.cpp | 27 int tuple_same_with_int_1[tuple_same_with_int<tuple<int, float, double>, 28 tuple<int, float, double, int> 50 int check1[is_same<split_arrays<int[1], float[2], double[3]>::element_types, 51 tuple<int, float, double>>::value? 1 : -1]; 52 int check2[is_same<split_arrays<int[1], float[2], double[3]>::bounds_types,
|
/external/clang/test/Sema/ |
block-call.c | 29 int (^IPCC4) (int, char (^CArg) (double)); 31 int (^IPCC5) (int, char (^CArg) (double)) = IPCC4; 33 int (^IPCC6) (int, char (^CArg) (float)) = IPCC4; // expected-error {{incompatible block pointer types initializing 'int (^)(int, char (^)(float))' with an expression of type 'int (^)(int, char (^)(double))'}} 45 char (^PCP)(double, double, char);
|
/external/clang/test/SemaTemplate/ |
function-template-specialization.cpp | 29 template<int N> void f2(double (&array)[N]); 32 template<> void f2<double>(double (&array)[42]); 33 template<> void f2<42>(double (&array)[42]); 35 void f2<25>(double (&array)[25]); // expected-error{{specialization}}
|
/external/llvm/test/CodeGen/PTX/ |
mov.ll | 27 define ptx_device double @t1_f64() { 30 ret double 0.0 57 define ptx_device double @t3_f64(double %x) { 60 ret double %x
|
/external/llvm/test/CodeGen/X86/ |
2010-07-11-FPStackLoneUse.ll | 11 define void @_ZN7QVectorIdE4fillERKdi(double* nocapture %t) nounwind ssp align 2 { 13 %tmp2 = load double* %t ; <double> [#uses=1] 20 store double %tmp2, double* undef
|
/external/llvm/test/Transforms/IndVarSimplify/ |
2011-09-27-hoistsext.ll | 6 define internal double @fourn(double* %data, i32 %x, i32 %y, i32 %n) nounwind { 20 %arrayidx179 = getelementptr inbounds double* %data, i64 %idxprom177 21 %tmp180 = load double* %arrayidx179, align 8 27 ret double %tmp180
|
/external/llvm/test/Transforms/InstCombine/ |
and2.ll | 4 define i1 @test1(double %X, double %Y) { 5 %tmp9 = fcmp ord double %X, 0.000000e+00 6 %tmp13 = fcmp ord double %Y, 0.000000e+00 9 ; CHECK: fcmp ord double %Y, %X
|
/external/proguard/src/proguard/gui/splash/ |
LinearDouble.java | 30 private final double fromValue; 31 private final double toValue; 41 public LinearDouble(double fromValue, double toValue, Timing timing) 51 public double getDouble(long time)
|
/external/webkit/Source/JavaScriptCore/wtf/ |
dtoa.h | 33 double strtod(const char* s00, char** se); 37 void dtoa(DtoaBuffer result, double dd, bool& sign, int& exponent, unsigned& precision); 38 void dtoaRoundSF(DtoaBuffer result, double dd, int ndigits, bool& sign, int& exponent, unsigned& precision); 39 void dtoaRoundDP(DtoaBuffer result, double dd, int ndigits, bool& sign, int& exponent, unsigned& precision); 44 unsigned numberToString(double, NumberToStringBuffer);
|
/external/webkit/Source/WebCore/dom/ |
WebKitAnimationEvent.h | 39 static PassRefPtr<WebKitAnimationEvent> create(const AtomicString& type, const String& animationName, double elapsedTime) 50 double elapsedTime); 53 double elapsedTime() const; 59 WebKitAnimationEvent(const AtomicString& type, const String& animationName, double elapsedTime); 62 double m_elapsedTime;
|
WebKitTransitionEvent.h | 39 static PassRefPtr<WebKitTransitionEvent> create(const AtomicString& type, const String& animationName, double elapsedTime) 50 double elapsedTime); 53 double elapsedTime() const; 59 WebKitTransitionEvent(const AtomicString& type, const String& propertyName, double elapsedTime); 62 double m_elapsedTime;
|
/external/webkit/Source/WebCore/html/ |
DateInputType.h | 45 virtual double minimum() const; 46 virtual double maximum() const; 47 virtual double defaultStep() const; 48 virtual double stepScaleFactor() const; 51 virtual bool setMillisecondToDateComponents(double, DateComponents*) const;
|
/external/webkit/Source/WebCore/platform/graphics/android/ |
AndroidAnimation.cpp | 64 double beginTime) 87 void AndroidAnimation::suggestBeginTime(double time) 93 double AndroidAnimation::elapsedTime(double time) 95 double elapsedTime = (m_beginTime < 0.000001) ? 0 : time - m_beginTime; 106 bool AndroidAnimation::checkIterationsAndProgress(double time, float* finalProgress) 108 double progress = elapsedTime(time); 109 double dur = m_duration; 129 double fractionalTime = progress / m_duration; 141 double AndroidAnimation::applyTimingFunction(float from, float to, double progress [all...] |
/external/webkit/Source/WebCore/webaudio/ |
RealtimeAnalyser.cpp | 50 const double RealtimeAnalyser::DefaultSmoothingTimeConstant = 0.8; 51 const double RealtimeAnalyser::DefaultMinDecibels = -100.0; 52 const double RealtimeAnalyser::DefaultMaxDecibels = -30.0; 134 double alpha = 0.16; 135 double a0 = 0.5 * (1.0 - alpha); 136 double a1 = 0.5; 137 double a2 = 0.5 * alpha; 140 double x = static_cast<double>(i) / static_cast<double>(n) [all...] |
/external/webkit/Tools/WebKitTestRunner/InjectedBundle/ |
EventSendingController.h | 56 void scalePageBy(double scale, double x, double y); 63 double m_time; 67 double m_clickTime;
|
/frameworks/compile/libbcc/runtime/test/Unit/ |
negdf2vfp_test.c | 19 extern double __negdf2vfp(double a); 22 int test__negdf2vfp(double a) 24 double actual = __negdf2vfp(a); 25 double expected = -a;
|
/libcore/luni/src/test/java/libcore/java/lang/ |
ArrayIndexOutOfBoundsExceptionTest.java | 43 double[] ds = new double[1]; 53 double[] ds = new double[1]; 55 double d = ds[2];
|
/system/extras/tests/include/ |
testUtil.h | 28 struct timespec double2ts(double amt); 29 struct timeval double2tv(double amt); 30 double ts2double(const struct timespec *val); 31 double tv2double(const struct timeval *val); 44 double testRandFract(void);
|