HomeSort by relevance Sort by last modified time
    Searched full:double (Results 1676 - 1700 of 10768) sorted by null

<<61626364656667686970>>

  /external/blktrace/btt/
globals.h 39 #define BIT_TIME(t) ((double)SECONDS(t) + ((double)NANO_SECONDS(t) / 1.0e9))
46 #define TO_SEC(nanosec) ((double)(nanosec) / 1.0e9)
77 double avg;
120 double last_qu_change, last_dev_change, tot_qusz, idle_time;
125 double n;
126 double rqm_s[2], ios_s[2], sec_s[2];
127 double avgrq_sz, avgqu_sz, await, svctm, p_util;
148 double start_time, last_plug, plugged_time, end_time;
173 extern double range_delta, plat_freq
    [all...]
  /external/netperf/
netcpu_pstatnew.c 179 double fraction_idle;
180 double fraction_user;
181 double fraction_kernel;
182 double fraction_interrupt;
183 double estimated_fraction_interrupt;
244 sanity_cpu_cycles = (uint64_t) ((double)lib_elapsed *
245 (double) sysconf(_SC_CLK_TCK) * (double)lib_iticksperclktick);
292 fraction_idle = (double)delta_cpu_counters[i].idle /
293 (double)sanity_cpu_cycles
    [all...]
  /external/opencv/cv/src/
cvmatchcontours.cpp 57 CV_IMPL double
59 int method, double /*parameter*/ )
63 double ma[7], mb[7];
65 double eps = 1.e-5;
66 double mmm;
67 double result = 0;
111 double ama = fabs( ma[i] );
112 double amb = fabs( mb[i] );
141 double ama = fabs( ma[i] );
142 double amb = fabs( mb[i] )
    [all...]
  /bionic/libm/src/
s_fmal.c 43 long double
44 fmal(long double x, long double y, long double z)
47 static const long double split = 0x1p32L + 1.0;
49 static const long double split = 0x1p57L + 1.0;
51 long double xs, ys, zs;
52 long double c, cc, hx, hy, p, q, tx, ty;
53 long double r, rr, s;
172 * avoid double rounding
    [all...]
  /external/chromium/chrome/browser/sync/notifier/
registration_manager.h 37 static const double kRegistrationDelayMaxJitter;
90 static double CalculateBackoff(double retry_interval,
91 double initial_retry_interval,
92 double min_retry_interval,
93 double max_retry_interval,
94 double backoff_exponent,
95 double jitter,
96 double max_jitter);
100 virtual double GetJitter()
    [all...]
  /external/chromium/third_party/libjingle/source/talk/base/
network.h 117 double quality() { return quality_; }
131 double uniform_numerator_;
132 double uniform_denominator_;
133 double exponential_numerator_;
134 double exponential_denominator_;
136 double quality_;
139 void AddDataPoint(uint32 time, double quality);
164 const double QUALITY_BAD = 3.0;
165 const double QUALITY_FAIR = 3.35;
166 const double QUALITY_GOOD = 3.7
    [all...]
  /external/clang/test/CodeGen/
vla.c 89 // CHECK: define double @test_PR8567
90 double test_PR8567(int n, double (*p)[n][5]) {
92 // CHECK-NEXT: [[PV:%.*]] = alloca [5 x double]*, align 4
96 // CHECK-NEXT: [[P:%.*]] = load [5 x double]** [[PV]], align 4
98 // CHECK-NEXT: [[T1:%.*]] = getelementptr inbounds [5 x double]* [[P]], i32 [[T0]]
99 // CHECK-NEXT: [[T2:%.*]] = getelementptr inbounds [5 x double]* [[T1]], i32 2
100 // CHECK-NEXT: [[T3:%.*]] = getelementptr inbounds [5 x double]* [[T2]], i32 0, i32 3
101 // CHECK-NEXT: [[T4:%.*]] = load double* [[T3]]
102 // CHECK-NEXT: ret double [[T4]
    [all...]
  /external/skia/tests/
Sk64Test.cpp 167 int32_t ck = (int32_t)sqrt((double)wide.getLongLong());
175 double dnumer = (double)wide.getLongLong();
176 double ddenom = (double)dwide.getLongLong();
177 double ddiv = dnumer / ddenom;
179 if (ddiv >= (double)SK_MaxS32 / (double)SK_Fixed1)
181 else if (ddiv <= -(double)SK_MaxS32 / (double)SK_Fixed1
    [all...]
  /external/webkit/Source/JavaScriptCore/bytecode/
Opcode.cpp 129 printf("%s:%s %lld - %.2f%%\n", opcodeNames[index], padOpcodeName((OpcodeID)index, 28), opcodeCounts[index], ((double) opcodeCounts[index]) / ((double) totalInstructions) * 100.0);
142 printf("%s%s %s:%s %lld %.2f%%\n", opcodeNames[indexPair.first], padOpcodeName((OpcodeID)indexPair.first, 28), opcodeNames[indexPair.second], padOpcodeName((OpcodeID)indexPair.second, 28), count, ((double) count) / ((double) totalInstructionPairs) * 100.0);
151 double opcodeProportion = ((double) opcodeCount) / ((double) totalInstructions);
159 double pairProportion = ((double) pairCount) / ((double) totalInstructionPairs)
    [all...]
  /external/webkit/Source/WebCore/platform/network/
ResourceResponseBase.h 101 double cacheControlMaxAge() const;
102 double date() const;
103 double age() const;
104 double expires() const;
105 double lastModified() const;
179 mutable double m_cacheControlMaxAge;
181 mutable double m_age;
182 mutable double m_date;
183 mutable double m_expires;
184 mutable double m_lastModified
    [all...]
  /external/webkit/Source/WebKit/android/jni/
DeviceMotionAndOrientationManager.cpp 132 static void onMotionChange(JNIEnv* env, jobject, jobject webViewCoreObject, bool canProvideX, double x, bool canProvideY, double y, bool canProvideZ, double z, double interval)
141 static void setMockOrientation(JNIEnv* env, jobject, jobject webViewCoreObject, bool canProvideAlpha, double alpha, bool canProvideBeta, double beta, bool canProvideGamma, double gamma)
147 static void onOrientationChange(JNIEnv* env, jobject, jobject webViewCoreObject, bool canProvideAlpha, double alpha, bool canProvideBeta, double beta, bool canProvideGamma, double gamma
    [all...]
  /frameworks/base/core/java/android/webkit/
DeviceOrientationService.java 41 private Double mAlpha;
42 private Double mBeta;
43 private Double mGamma;
46 private static final double DELTA_DEGRESS = 1.0;
126 double alpha = Math.toDegrees(-rotationAngles[0]) - 90.0;
128 double beta = Math.toDegrees(-rotationAngles[1]);
130 double gamma = Math.toDegrees(rotationAngles[2]);
168 private void maybeSendChange(double alpha, double beta, double gamma)
    [all...]
  /frameworks/compile/libbcc/runtime/lib/
floatundidf.c 18 /* Returns: convert a to a double, rounding toward even. */
20 /* Assumption: double is a IEEE 64 bit floating point type
33 double
36 static const double twop52 = 0x1.0p52;
37 static const double twop84 = 0x1.0p84;
38 static const double twop84_plus_twop52 = 0x1.00000001p84;
40 union { uint64_t x; double d; } high = { .d = twop84 };
41 union { uint64_t x; double d; } low = { .d = twop52 };
46 const double result = (high.d - twop84_plus_twop52) + low.d;
55 double
    [all...]
  /frameworks/ex/variablespeed/jni/
sola_time_scaler.h 89 void Init(double sample_rate, int num_channels, double initial_speed,
90 double window_duration, double overlap_duration);
96 void set_speed(double speed);
134 double sample_rate_; // sample rate of audio stream
135 double window_duration_; // the nominal time quantum for processing
136 double overlap_duration_; // the maximum slip for correlating windows
137 double speed_; // varispeed rate
140 double ratio_; // inverse of spee
    [all...]
  /external/icu4c/i18n/
nfsubs.cpp 56 virtual double transformNumber(double number) const { return number; }
57 virtual double composeRuleValue(double newRuleValue, double /*oldRuleValue*/) const { return newRuleValue; }
58 virtual double calcUpperBound(double oldUpperBound) const { return oldUpperBound; }
67 double divisor;
72 double _divisor,
100 virtual double transformNumber(double number) const
    [all...]
  /external/libffi/src/alpha/
ffi.c 65 /* 128-bit long double is returned in memory, like a struct. */
140 *(double *) argp = *(float *)(* avalue);
147 *(double *) argp = *(double *)(* avalue);
151 /* 128-bit long double is passed by reference. */
152 *(long double **) argp = (long double *)(* avalue);
153 size = sizeof (long double *);
252 /* Floats coming from registers need conversion from double
254 *(float *)&argp[argn - 6] = *(double *)&argp[argn - 6]
    [all...]
  /external/llvm/test/CodeGen/ARM/
2007-01-19-InfiniteLoop.ll 42 %tmp629a = sitofp i32 %tmp629 to double ; <double> [#uses=1]
43 %tmp631 = fmul double %tmp629a, 0.000000e+00 ; <double> [#uses=1]
44 %tmp632 = fadd double 0.000000e+00, %tmp631 ; <double> [#uses=1]
52 %tmp667 = sitofp i32 %tmp666 to double ; <double> [#uses=2]
54 %tmp671 = fmul double %tmp667, %tmp667 ; <double> [#uses=1
    [all...]
  /external/v8/test/cctest/
test-assembler-arm.cc 227 double a;
228 double b;
229 double c;
230 double d;
231 double e;
232 double f;
233 double g;
234 double h;
236 double m;
237 double n
    [all...]
test-fast-dtoa.cc 10 #include "double.h"
38 double min_double = 5e-324;
45 double max_double = 1.7976931348623157e308;
84 double v = Double(smallest_normal64).value();
92 v = Double(largest_denormal64).value();
123 double min_double = 5e-324;
130 double max_double = 1.7976931348623157e308;
173 double v = Double(smallest_normal64).value()
    [all...]
  /prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/libexec/gcc/i686-unknown-linux-gnu/4.2.1/install-tools/
fixincl 
  /prebuilt/linux-x86/toolchain/arm-eabi-4.3.1/libexec/gcc/arm-eabi/4.3.1/install-tools/
fixincl 
  /external/llvm/test/Transforms/InstCombine/
vec_demanded_elts.ll 39 define i64 @test3(float %f, double %d) {
64 %v40 = insertelement <2 x double> undef, double %d, i32 0
65 %v41 = insertelement <2 x double> %v40, double 0.000000e+00, i32 1
66 %tmp4 = tail call i32 @llvm.x86.sse2.cvtsd2si(<2 x double> %v41)
67 %v50 = insertelement <2 x double> undef, double %d, i32 0
68 %v51 = insertelement <2 x double> %v50, double 0.000000e+00, i32
    [all...]
  /packages/apps/Camera/src/com/android/camera/ui/
IndicatorControlWheel.java 47 private static final double HIGHLIGHT_RADIANS = Math.toRadians(HIGHLIGHT_DEGREES);
78 private double mShutterButtonRadius;
79 private double mWheelRadius;
80 private double mChildRadians[];
111 private double mStartVisibleRadians[] = new double[2];
112 private double mEndVisibleRadians[] = new double[2];
113 private double mSectorRadians[] = new double[2]
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
tgmath.h 56 __typeof__ (*(0 ? (__typeof__ (0 ? (double *) 0 : (void *) (E))) 0 \
69 (__extension__ ((sizeof (Val) == sizeof (double) \
77 (__extension__ ((sizeof (Val) == sizeof (double) \
85 (__extension__ ((sizeof (Val1) == sizeof (double) \
93 (__extension__ (((sizeof (Val1) > sizeof (double) \
94 || sizeof (Val2) > sizeof (double)) \
99 : (sizeof (Val1) == sizeof (double) \
100 || sizeof (Val2) == sizeof (double) \
111 (__extension__ (((sizeof (Val1) > sizeof (double) \
112 || sizeof (Val2) > sizeof (double)) \
    [all...]
  /external/llvm/test/CodeGen/X86/
scev-interchange.ll 8 %"struct.PolynomialSpace<1>" = type { %"struct.std::vector<Polynomials::Polynomial<double>,std::allocator<Polynomials::Polynomial<double> > >", i32, %"struct.std::vector<int,std::allocator<int> >", %"struct.std::vector<int,std::allocator<int> >" }
9 %"struct.Polynomials::Polynomial<double>" = type { %struct.Subscriptor, %"struct.std::vector<double,std::allocator<double> >" }
11 %"struct.TableBase<2,double>" = type { %struct.Subscriptor, double*, i32, %"struct.TableIndices<2>" }
17 %"struct.std::_Vector_base<Polynomials::Polynomial<double>,std::allocator<Polynomials::Polynomial<double> > >" = type { %"struct.std::_Vector_base<Polynomials::Polynomial<double>,std::allocator<Polynomials::Polynomial<double> > >::_Vector_impl"
    [all...]

Completed in 1400 milliseconds

<<61626364656667686970>>