Searched defs:one (Results 1 - 25 of 182) sorted by relevance

12345678

/external/clang/test/Modules/Inputs/normal-module-map/nested_umbrella/
H A D1.h1 int one; variable
/external/clang/test/PCH/Inputs/
H A Dchain-decls1.h3 struct one {}; struct
/external/v8/test/mjsunit/regress/
H A Dregress-406.js48 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() <
[all...]
H A Dregress-996542.js29 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/
H A Drecursive-deopt.js34 if (n == 0) return 1 << one;
35 return f(n - 1) << one;
39 var one = 1; variable
44 var one = { valueOf: function() { return 1; } };
H A Dregress-stacktrace.js31 function one() { function
40 one();
45 var p1 = stack.indexOf("at one");
/external/clang/test/CodeGen/
H A D2004-01-01-UnknownInitSize.c7 struct one struct
13 struct one hobbit = {5, {1, 2, 3}};
H A Dbitfield-init.c10 struct Token one = { 1 }; local
/external/clang/test/CodeGenCXX/
H A Dcopy-in-cplus-object.cpp19 TestObject one; local
20 int (^V)() = ^{ return one.version(); };
/external/compiler-rt/lib/asan/lit_tests/Helpers/
H A Dinitialization-nobug-extra.cc6 static int one = countCalls(); variable
/external/clang/test/Sema/
H A Dstruct-cast.c5 int one; member in struct:S
/external/valgrind/main/memcheck/tests/darwin/
H A Dscalar.c491 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!
1681 // the only one use
[all...]
/external/chromium/chrome/browser/ui/views/
H A Ddom_view_browsertest.cc28 Widget* one = CreatePopupWindow(); local
31 one->GetRootView()->AddChildView(dom_view);
36 one->Show();
40 one->Hide();
46 Widget* one = CreatePopupWindow(); local
49 one->GetRootView()->AddChildView(dom_view);
54 one->Show();
58 one->GetRootView()->RemoveChildView(dom_view);
62 one->Hide();
68 Widget* one local
[all...]
/external/clang/test/CXX/over/over.match/over.match.funcs/over.match.oper/
H A Dp3.cpp9 enum E1 { one }; enumerator in enum:E1
/external/clang/test/SemaCXX/
H A Dgnu-case-ranges.cpp5 one, enumerator in enum:E
16 case one:
/external/fdlibm/
H A De_acosh.c36 one = 1.0, variable
60 return __ieee754_log(2.0*x-one/(x+ieee_sqrt(t-one)));
62 t = x-one;
H A De_atanh.c36 static const double one = 1.0, huge = 1e300; variable
38 static double one = 1.0, huge = 1e300; variable
64 t = 0.5*ieee_log1p(t+t*x/(one-x));
66 t = 0.5*ieee_log1p((x+x)/(one-x));
H A De_cosh.c38 static const double one = 1.0, half=0.5, huge = 1.0e300; variable
40 static double one = 1.0, half=0.5, huge = 1.0e300; variable
64 w = one+t;
66 return one+(t*t)/(w+w);
79 lx = *( (((*(unsigned*)&one)>>29)) + (unsigned*)&x);
H A De_sinh.c35 static const double one = 1.0, shuge = 1.0e307; variable
37 static double one = 1.0, shuge = 1.0e307; variable
63 if(shuge+x>one) return x;/* ieee_sinh(tiny) = tiny with inexact */
65 if(ix<0x3ff00000) return h*(2.0*t-t*t/(t+one));
66 return h*(t+t/(t+one));
73 lx = *( (((*(unsigned*)&one)>>29)) + (unsigned*)&x);
H A Ds_asinh.c32 one = 1.00000000000000000000e+00, /* 0x3FF00000, 0x00000000 */ variable
49 if(huge+x>one) return x; /* return x inexact except 0 */
55 w = __ieee754_log(2.0*t+one/(ieee_sqrt(x*x+one)+t));
58 w =ieee_log1p(ieee_fabs(x)+t/(one+ieee_sqrt(one+t)));
/external/clang/test/Preprocessor/
H A Dmacro_fn.c5 #define one(x) 0 /* expected-note 2 {{defined here}} */ macro
14 one() /* ok */
15 one(a)
16 one(a,) /* expected-error {{too many arguments provided to function-like macro invocation}} */
17 one(a, b) /* expected-error {{too many arguments provided to function-like macro invocation}} */
39 one_dot(x) /* empty ... argument: expected-warning {{must specify at least one argument for '...' parameter of variadic macro}} */
40 one_dot() /* empty first argument, elided ...: expected-warning {{must specify at least one argument for '...' parameter of variadic macro}} */
/external/compiler-rt/lib/arm/
H A Dudivmodsi4.S29 #define one lr define
46 mov one, #1
65 orrhs q, q,one, lsl i
H A Dudivsi3.S29 #define one lr define
57 mov one, #1
76 orrhs q, q,one, lsl i
/external/compiler-rt/lib/asan/lit_tests/Linux/
H A Doverflow-in-qsort.cc12 volatile int one = 1; variable
19 global_array[one * 10] = 0; // BOOM
/external/elfutils/src/
H A Dsectionhash.c39 scnhead_compare (struct scnhead *one, struct scnhead *two) argument
41 int result = strcmp (one->name, two->name);
45 result = one->type - two->type;
49 GElf_Sxword diff = (SH_FLAGS_IMPORTANT (one->flags)
55 result = one->entsize - two->entsize;
59 result = (one->grp_signature == NULL
62 ? 1 : strcmp (one->grp_signature,
66 result = one->kind - two->kind;

Completed in 318 milliseconds

12345678