HomeSort by relevance Sort by last modified time
    Searched full:double (Results 701 - 725 of 10424) sorted by null

<<21222324252627282930>>

  /external/webkit/Source/WebCore/platform/
Timer.h 44 void start(double nextFireInterval, double repeatInterval);
46 void startRepeating(double repeatInterval) { start(repeatInterval, repeatInterval); }
47 void startOneShot(double interval) { start(interval, 0); }
52 double nextFireInterval() const;
53 double repeatInterval() const { return m_repeatInterval; }
55 void augmentFireInterval(double delta) { setNextFireTime(m_nextFireTime + delta); }
56 void augmentRepeatInterval(double delta) { augmentFireInterval(delta); m_repeatInterval += delta; }
66 void setNextFireTime(double);
78 double m_nextFireTime; // 0 if inactiv
    [all...]
  /external/libvpx/vp8/encoder/
onyx_int.h 95 double frame;
96 double intra_error;
97 double coded_error;
98 double ssim_weighted_pred_err;
99 double pcnt_inter;
100 double pcnt_motion;
101 double pcnt_second_ref;
102 double pcnt_neutral;
103 double MVr;
104 double mvr_abs
    [all...]
  /dalvik/vm/compiler/template/armv5te-vfp/
funopNarrower.S 5 * For: double-to-int, double-to-float
funopWider.S 5 * For: int-to-double, float-to-double
  /dalvik/vm/mterp/arm-vfp/
README.txt 5 and later. It assumes that word alignment is sufficient for double-word
7 to transfer double-precision values in two steps.
  /dalvik/vm/mterp/x86-atom/
OP_REM_DOUBLE.S 21 * For: rem-double
35 movl %eax, -16(%esp) # push parameter double lo
37 movl %eax, -12(%esp) # push parameter double hi
39 movl %eax, -8(%esp) # push parameter double lo
41 movl %eax, -4(%esp) # push parameter double hi
47 call fmod # call: (long double x, long double y)
48 # return: double
  /external/clang/test/Index/
initializer-memory.cpp 5 double data[1000000] = {0};
6 double data_empty_init[1000000] = {};
  /external/clang/test/Lexer/
11-27-2007-FloatLiterals.c 10 double D = 2e32;
12 double D2 = 02e32;
  /external/clang/test/PCH/
attrs.c 15 double f(double); // expected-error{{overloadable}}
method_pool.h 17 - (double)instMethod:(int)foo;
27 - (double)instMethod:(int)foo {
  /external/llvm/test/CodeGen/ARM/
fmdrr-fmrrd.ll 10 define i64 @test(double %X) {
11 %Y = bitcast double %X to i64
  /external/llvm/test/CodeGen/Generic/
2003-05-27-useboolinotherbb.ll 3 define void @QRiterate(double %tmp.212) {
4 %tmp.213 = fcmp une double %tmp.212, 0.000000e+00 ; <i1> [#uses=1]
2003-05-27-usefsubasbool.ll 3 define void @QRiterate(double %tmp.212) {
8 %tmp.213 = fcmp une double %tmp.212, 0.000000e+00 ; <i1> [#uses=1]
  /external/llvm/test/CodeGen/X86/
2006-08-07-CycleInDAG.ll 12 %tmp13.i12.i = tail call double @ldexp( double 0.000000e+00, i32 0 ) ; <double> [#uses=1]
13 %tmp13.i13.i = fptrunc double %tmp13.i12.i to float ; <float> [#uses=1]
25 %tmp165.i = fpext float %tmp13.i13.i to double ; <double> [#uses=0]
31 declare double @ldexp(double, i32)
2008-05-01-InvalidOrdCompare.ll 6 define i32 @test(double %p) nounwind {
7 %tmp5 = fcmp uno double %p, 0.000000e+00
fastcc-2.ll 6 tail call fastcc void @bar( double 1.000000e+00 ) nounwind
10 declare fastcc void @bar(double)
isnan2.ll 5 define i32 @test(double %X) nounwind {
7 %tmp6 = fcmp uno double %X, 0.000000e+00 ; <i1> [#uses=1]
vec_return.ll 6 define <2 x double> @test() {
7 ret <2 x double> zeroinitializer
  /external/llvm/test/FrontendC/
2008-01-21-PackedStructField.c 3 struct X { long double b; unsigned char c; double __attribute__((packed)) d; };
  /external/llvm/test/Linker/
2004-12-03-DisagreeingType.ll 1 ; RUN: echo {@G = weak global \{\{\{\{double\}\}\}\} zeroinitializer } | \
9 @G = global double 1.0
  /external/llvm/test/Transforms/InstCombine/
fold-vector-zero.ll 11 %r3 = inttoptr i64 %r2 to <2 x double>*
12 %r4 = load <2 x double>* %r3, align 8
13 %r6 = bitcast <2 x double> %r4 to <2 x i64>
14 %r7 = bitcast <2 x double> zeroinitializer to <2 x i64>
22 %r15 = bitcast <2 x i64> %r14 to <2 x double>
24 %r19 = inttoptr i64 %r18 to <2 x double>*
25 store <2 x double> %r15, <2 x double>* %r19, align 8
  /external/proguard/src/proguard/classfile/constant/
DoubleConstant.java 27 * This Constant represents a double constant in the constant pool.
33 public double f8value;
45 * Creates a new DoubleConstant with the given double value.
47 public DoubleConstant(double value)
54 * Returns the double value of this DoubleConstant.
56 public double getValue()
63 * Sets the double value of this DoubleConstant.
65 public void setValue(double value)
  /external/skia/bench/
BenchSysTimer_c.cpp 13 double BenchSysTimer::endCpu() {
17 double BenchSysTimer::endWall() {
  /external/webkit/Source/WebCore/webaudio/
DelayDSPKernel.h 39 DelayDSPKernel(double maxDelayTime, double sampleRate);
44 double maxDelayTime() const { return m_maxDelayTime; }
46 void setDelayFrames(double numberOfFrames) { m_desiredDelayFrames = numberOfFrames; }
50 double m_maxDelayTime;
52 double m_currentDelayTime;
53 double m_smoothingRate;
55 double m_desiredDelayFrames;
  /external/webkit/Source/WebKit/chromium/src/
WebGeolocationPosition.cpp 35 void WebGeolocationPosition::assign(double timestamp, double latitude, double longitude, double accuracy, bool providesAltitude, double altitude, bool providesAltitudeAccuracy, double altitudeAccuracy, bool providesHeading, double heading, bool providesSpeed, double speed)

Completed in 1051 milliseconds

<<21222324252627282930>>