HomeSort by relevance Sort by last modified time
    Searched full:double (Results 476 - 500 of 11433) sorted by null

<<11121314151617181920>>

  /bionic/libc/bionic/
erand48.c 18 double
22 return ldexp((double) xseed[0], -48) +
23 ldexp((double) xseed[1], -32) +
24 ldexp((double) xseed[2], -16);
  /bionic/libm/src/
w_cabs.c 16 double
18 double complex z;
23 double
25 double complex *z;
  /cts/tools/dasm/src/java_cup/runtime/
double_token.java 5 * double value as an attribute. It maintains that value in the public
16 public double_token(int term_num, double v)
30 /** The stored double value. */
31 public double double_val;
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/shl_long/d/
T_shl_long_7.java 5 public long run(double a, int b) {
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/shl_long_2addr/d/
T_shl_long_2addr_7.java 5 public long run(double a, int b) {
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/shr_long/d/
T_shr_long_7.java 5 public long run(double a, int b) {
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/shr_long_2addr/d/
T_shr_long_2addr_7.java 5 public long run(double a, int b) {
  /dalvik/vm/mterp/armv5te/
OP_REM_DOUBLE.S 2 /* EABI doesn't define a double remainder function, but libm does */
OP_REM_DOUBLE_2ADDR.S 2 /* EABI doesn't define a double remainder function, but libm does */
  /dalvik/vm/mterp/armv6t2/
OP_REM_DOUBLE_2ADDR.S 2 /* EABI doesn't define a double remainder function, but libm does */
  /external/clang/test/ASTMerge/Inputs/
function2.c 3 void f1(Int, double);
  /external/clang/test/Analysis/
rdar-6442306-1.m 15 double __Foo_READSWAP__double(double*);
25 *(&((double *)(&In0P->size))[__i__]) =
26 __Foo_READSWAP__double(&((double *)(&In0P->size))[__i__]);
  /external/clang/test/CodeGen/
2003-03-03-DeferredType.c 10 double D;
2007-03-05-DataLayout.c 10 typedef double vector[NDIM];
12 // { i16, double, [3 x double], i32, i32, [3 x double], [3 x double], [3 x
13 // double], double, \2 *, \2 * }
16 double mass;
23 double phi;
2008-03-26-PackedBitFields.c 5 long double c;
2011-03-02-UnionInitializer.c 2 union { int :3; double f; } u17_017 = {17.17};
asm-variable.c 29 unsigned long long foo2(unsigned long long addr, double a0,
30 double a1, double a2,
31 double a3, double a4,
32 double a5, double a6, double a7) {
33 register double b0 asm("xmm0");
34 register double b1 asm("xmm1")
    [all...]
func-ptr-cast-decl.c 5 typedef int (*fptr)(double);
global-with-initialiser.c 12 double globalDouble = 1.0;
13 double globalDoubleArray[5] = { 1.0, 2.0 };
16 long double globalLongDouble = 1;
17 long double globalLongDoubleArray[5] = { 1.0, 2.0 };
mips64-padding-arg.c 4 double d;
5 long double ld;
10 // CHECK: define void @foo1(i32 %a0, i64, double %a1.coerce0, i64 %a1.coerce1, i64 %a1.coerce2, i64 %a1.coerce3, double %a2.coerce0, i64 %a2.coerce1, i64 %a2.coerce2, i64 %a2.coerce3, i32 %b, i64, double %a3.coerce0, i64 %a3.coerce1, i64 %a3.coerce2, i64 %a3.coerce3)
11 // CHECK: tail call void @foo2(i32 1, i32 2, i32 %a0, i64 undef, double %a1.coerce0, i64 %a1.coerce1, i64 %a1.coerce2, i64 %a1.coerce3, double %a2.coerce0, i64 %a2.coerce1, i64 %a2.coerce2, i64 %a2.coerce3, i32 3, i64 undef, double %a3.coerce0, i64 %a3.coerce1, i64 %a3.coerce2, i64 %a3.coerce3)
12 // CHECK: declare void @foo2(i32, i32, i32, i64, double, i64, i64, i64, double, i64, i64, i64, i32, i64, double, i64, i64, i64
    [all...]
  /external/clang/test/PCH/
cxx-implicit-moves.cpp 9 double width;
10 double height;
14 static inline NSSize NSMakeSize(double w, double h) {
  /external/clang/test/SemaCXX/
warn-implicit-conversion-floating-point-to-bool.cpp 4 double food(double x);
12 double e = 1.7;
19 b = food(e < 2); // expected-warning {{implicit conversion turns floating-point number into bool: 'double' to 'bool'}}
  /external/compiler-rt/lib/ppc/
floatditf.c 5 /* long double __floatditf(long long x); */
6 /* This file implements the PowerPC long long -> long double conversion */
10 long double __floatditf(int64_t a) {
12 static const double twop32 = 0x1.0p32;
13 static const double twop52 = 0x1.0p52;
18 const double high_addend = (double)((int32_t)(a >> 32))*twop32 - twop52;
20 /* At this point, we have two double precision numbers
22 * as a canonicalized long double:
floatunditf.c 5 /* long double __floatunditf(unsigned long long x); */
6 /* This file implements the PowerPC unsigned long long -> long double conversion */
10 long double __floatunditf(uint64_t a) {
14 static const double twop52 = 0x1.0p52;
15 static const double twop84 = 0x1.0p84;
16 static const double twop84_plus_twop52 = 0x1.00000001p84;
24 const double high_addend = high.d - twop84_plus_twop52;
26 /* At this point, we have two double precision numbers
28 * as a canonicalized long double:
  /external/libffi/testsuite/libffi.call/
float2.c 2 Purpose: Check return value long double.
12 static long double ldblit(float f)
14 return (long double) (((long double) f)/ (long double) 3.0);
23 long double ld;
35 /* This is ifdef'd out for now. long double support under SunOS/gcc
44 /* This is ifdef'd out for now. long double support under SunOS/gcc
52 puts("long double return value tests ok!");

Completed in 429 milliseconds

<<11121314151617181920>>