HomeSort by relevance Sort by last modified time
    Searched defs:one (Results 1 - 25 of 387) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Modules/Inputs/normal-module-map/nested_umbrella/
1.h 1 int one; variable
  /external/clang/test/PCH/Inputs/
chain-decls1.h 3 struct one {}; struct
  /external/v8/test/mjsunit/regress/
regress-406.js 48 function one() { return 1; } function
50 assertFalse(typeof(0) == "zero" && one() < 0);
51 assertFalse(typeof(0) == "zero" && one() > 0);
52 assertFalse(typeof(0) != "zero" && one() < 0);
53 assertTrue(typeof(0) != "zero" && one() > 0);
55 assertFalse(typeof(0) == "zero" || one() < 0);
56 assertTrue(typeof(0) == "zero" || one() > 0);
57 assertTrue(typeof(0) != "zero" || one() < 0);
58 assertTrue(typeof(0) != "zero" || one() > 0);
61 assertFalse(one() < 0 && typeof(0) == "zero")
    [all...]
regress-996542.js 29 var one = 1; variable
33 assertEquals(-Infinity, one / (zero / minus_one));
35 assertEquals(Infinity, one / (zero / one));
38 assertEquals(-Infinity, one / (minus_one % one))
40 assertEquals(Infinity, one / (one % one));
  /external/v8/test/mjsunit/compiler/
recursive-deopt.js 34 if (n == 0) return 1 << one;
35 return f(n - 1) << one;
39 var one = 1; variable
44 var one = { valueOf: function() { return 1; } };
regress-stacktrace.js 31 function one() { function
40 one();
45 var p1 = stack.indexOf("at one");
  /dalvik/tests/068-classloader/src/
DoubledImplement.java 15 public void one() { method in class:DoubledImplement
16 System.out.println("DoubledImplement one");
DoubledImplement2.java 29 public void one() { method in class:DoubledImplement2
30 System.out.println("DoubledImplement2 one");
  /external/clang/test/CodeGen/
2004-01-01-UnknownInitSize.c 7 struct one struct
13 struct one hobbit = {5, {1, 2, 3}};
  /external/clang/test/CodeGenCXX/
copy-in-cplus-object.cpp 19 TestObject one; local
20 int (^V)() = ^{ return one.version(); };
  /external/compiler-rt/lib/asan/lit_tests/Helpers/
initialization-nobug-extra.cc 6 static int one = countCalls(); variable
  /frameworks/compile/libbcc/tests/debuginfo/host-tests/
jit.cpp 12 // CHECK: in one
26 int one() function
33 return one();
  /ndk/sources/cxx-stl/llvm-libc++/test/language.support/support.limits/limits/denorm.style/
check_values.pass.cpp 16 typedef char one; typedef
17 struct two {one _[2];};
19 one test(std::float_round_style);
  /ndk/sources/cxx-stl/llvm-libc++/test/language.support/support.limits/limits/round.style/
check_values.pass.cpp 16 typedef char one; typedef
17 struct two {one _[2];};
19 one test(std::float_denorm_style);
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_acoshf.c 23 one = 1.0, variable
43 return __ieee754_logf((float)2.0*x-one/(x+__ieee754_sqrtf(t-one)));
45 t = x-one;
e_acosh.c 36 one = 1.0, variable
57 return __ieee754_log(2.0*x-one/(x+sqrt(t-one)));
59 t = x-one;
e_atanhf.c 22 static const float one = 1.0, huge = 1e30; variable
41 t = (float)0.5*log1pf(t+t*x/(one-x));
43 t = (float)0.5*log1pf((x+x)/(one-x));
e_cosh.c 41 static const double one = 1.0, half=0.5, huge = 1.0e300; variable
59 w = one+t;
61 return one+(t*t)/(w+w);
e_coshf.c 22 static const float one = 1.0, half=0.5, huge = 1.0e30; variable
39 w = one+t;
40 if (ix<0x39800000) return one; /* cosh(tiny) = 1 */
41 return one+(t*t)/(w+w);
e_sinh.c 38 static const double one = 1.0, shuge = 1.0e307; variable
58 if(shuge+x>one) return x;/* sinh(tiny) = tiny with inexact */
60 if(ix<0x3ff00000) return h*(2.0*t-t*t/(t+one));
61 return h*(t+t/(t+one));
e_sinhf.c 22 static const float one = 1.0, shuge = 1.0e37; variable
41 if(shuge+x>one) return x;/* sinh(tiny) = tiny with inexact */
43 if(ix<0x3f800000) return h*((float)2.0*t-t*t/(t+one));
44 return h*(t+t/(t+one));
s_modff.c 22 static const float one = 1.0; variable
50 *iptr = x*one;
  /external/clang/test/Sema/
struct-cast.c 5 int one; member in struct:S
  /external/fdlibm/
e_acosh.c 36 one = 1.0, variable
60 return __ieee754_log(2.0*x-one/(x+ieee_sqrt(t-one)));
62 t = x-one;
  /external/valgrind/main/memcheck/tests/darwin/
scalar.c 491 size_t one = 1; local
496 SY(__NR_stat_extended, 0, 0, 0, &one); FAIL;
502 SY(__NR_lstat_extended, 0, 0, 0, &one); FAIL;
508 SY(__NR_fstat_extended, 0, 0, 0, &one); FAIL;
605 size_t one = 1; local
610 SY(__NR_stat64_extended, 0, 0, 0, &one); FAIL;
616 SY(__NR_lstat64_extended, 0, 0, 0, &one); FAIL;
622 SY(__NR_fstat64_extended, 0, 0, 0, &one); FAIL;
1126 // use the 6th one!
    [all...]

Completed in 1001 milliseconds

1 2 3 4 5 6 7 8 91011>>