Searched defs:one (Results 51 - 75 of 260) sorted by relevance

1234567891011

/external/clang/test/Modules/Inputs/
H A Dredecl-merge-right.h83 const int one = ONE; variable
/external/clang/test/Sema/
H A Dinline-asm-validate-aarch64.c41 // CHECK: asm ("%w0 %w1 %2" : "+r" (one) : "r" (wide_two));
45 void read_write_modifier0(int one, int two) { argument
47 asm ("%w0 %w1 %2" : "+r" (one) : "r" (wide_two));
51 void read_write_modifier1(int one, int two) { argument
53 asm ("%w0 %1" : "+r" (one), "+r" (wide_two));
H A Dno-documentation-warn-tagdecl-specifier.c66 enum e4 { one }; enumerator in enum:e4
H A Dtypeof-use-deprecated.c11 enum E{ one} __attribute__((deprecated)) e; // expected-warning {{'E' is deprecated}} expected-note 2 {{'E' has been explicitly marked deprecated here}} enumerator in enum:E
/external/clang/test/SemaTemplate/
H A Dresolve-single-template-id.cpp7 void one() { } function
31 one; // expected-warning {{expression result unused}}
40 *one; // expected-warning {{expression result unused}}
57 (false ? one : oneT<int>); // expected-warning {{expression result unused}}
69 one < one; //expected-warning {{self-comparison always evaluates to false}} \
/external/compiler-rt/test/BlocksRuntime/
H A Dcopyconstructor.C66 TestObject one; local
68 void (^b)(void) = ^{ printf("my const copy of one is %d\n", one.version()); };
H A Dreference.C79 TestObject one; local
82 one.test();
/external/fdlibm/
H A De_fmod.c23 static const double one = 1.0, Zero[] = {0.0, -0.0,}; variable
25 static double one = 1.0, Zero[] = {0.0, -0.0,}; variable
137 x *= one; /* create necessary signal */
H A Dk_cos.c56 one = 1.00000000000000000000e+00, /* 0x3FF00000, 0x00000000 */ variable
75 if(((int)x)==0) return one; /* generate inexact */
80 return one - (0.5*z - (z*r - x*y));
89 a = one-qx;
H A Ds_atan.c19 * is further reduced to one of the following intervals and the
82 one = 1.0, variable
105 if(huge+x>one) return x; /* raise inexact */
112 id = 0; x = (2.0*x-one)/(2.0+x);
114 id = 1; x = (x-one)/(x+one);
118 id = 2; x = (x-1.5)/(one+1.5*x);
H A De_sqrt.c16 * | Use the hardware sqrt if you have one |
31 * To compute q from q , one checks whether
65 * After generating the 53 bits result, we compute one more bit.
86 static const double one = 1.0, tiny=1.0e-300; variable
88 static double one = 1.0, tiny=1.0e-300; variable
174 z = one-tiny; /* trigger inexact flag */
175 if (z>=one) {
176 z = one+tiny;
178 else if (z>one) {
204 The second one use
[all...]
H A Dk_tan.c63 /* one */ 1.00000000000000000000e+00, /* 3FF00000, 00000000 */
67 #define one xxx[13] macro
83 return one / ieee_fabs(x);
93 t = a = -one / w;
95 s = one + t * z;
/external/libcxx/test/std/utilities/utility/forward/
H A Dforward.pass.cpp22 typedef char one; typedef
23 struct two {one _[2];};
24 struct four {one _[4];};
25 struct eight {one _[8];};
27 one test(A&);
/external/libcxxabi/test/
H A Dtest_guard.pass.cpp69 int one() { function in namespace:test3
75 static int a = one();
110 int one() { function in namespace:test5
116 static int a = one();
120 static int a = one();
/external/libvpx/libvpx/vp9/encoder/mips/msa/
H A Dvp9_fdct4x4_msa.c58 v16i8 one = __msa_ldi_b(1); local
60 mask = (v8i16)__msa_sldi_b(zero, one, 15);
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/
H A DBTree.java31 private BTree one; field in class:BTree
52 if (one == null)
53 one = new BTree();
54 branch = one;
63 return one;
/external/noto-fonts/
H A DAndroid.mk28 define build-one-font-module
51 $(foreach f, $(font_src_files), $(call build-one-font-module, $(f)))
211 $(foreach f, $(font_src_files), $(call build-one-font-module, $(f)))
212 build-one-font-module :=
/external/strace/tests/
H A Dmmsg.c17 char one[] = "one"; local
23 .iov_base = one,
24 .iov_len = sizeof(one) - 1
H A Dscm_rights.c25 int one = 1; local
26 assert(setsockopt(sv[0], SOL_SOCKET, SO_PASSCRED, &one, sizeof(one)) == 0);
/external/v8/test/webkit/
H A Dcomparison-operators-greater.js143 var one = 1; variable
187 shouldBeTrue("one >= zero");
188 shouldBeTrue("one >= one");
189 shouldBeTrue("one > zero");
190 shouldBeFalse("zero >= one");
191 shouldBeFalse("one >= two");
192 shouldBeFalse("one > one");
193 shouldBeFalse("one > tw
[all...]
H A Dcomparison-operators-less.js141 var one = 1; variable
185 shouldBeTrue("zero <= one");
186 shouldBeTrue("one <= one");
187 shouldBeTrue("zero < one");
188 shouldBeFalse("one <= zero");
189 shouldBeFalse("two <= one");
190 shouldBeFalse("one < one");
191 shouldBeFalse("two < one");
[all...]
/external/valgrind/none/tests/
H A Dfdleak_ipv4.c19 int one = 1; local
23 (void) DO( setsockopt(s, SOL_SOCKET, SO_REUSEADDR, &one, sizeof(int)) );
/external/valgrind/none/tests/x86/
H A Dbug126147-x86.c137 char one[50]; variable
146 check (mystrncpy (one, "abc", 4) == one, 1); /* Returned value. */
147 equal (one, "abc", 2); /* Did the copy go right? */
149 (void) strcpy (one, "abcdefgh");
150 (void) mystrncpy (one, "xyz", 2);
151 equal (one, "xycdefgh", 3); /* Copy cut by count. */
153 (void) strcpy (one, "abcdefgh");
154 (void) mystrncpy (one, "xyz", 3); /* Copy cut just before NUL. */
155 equal (one, "xyzdefg
[all...]
/external/clang/test/CXX/over/over.match/over.match.funcs/over.match.oper/
H A Dp3.cpp31 enum E1 { one }; enumerator in enum:bullet3::E1
/external/boringssl/src/crypto/bn/
H A Drsaz_exp.c67 # pragma align 64(one,two80)
72 ALIGN64 static const BN_ULONG one[40] = variable
107 rsaz_1024_mul_avx2(result, R2, one, m, k0);
255 rsaz_1024_mul_avx2(result, result, one, m, k0);

Completed in 1615 milliseconds

1234567891011