Searched refs:one (Results 26 - 50 of 1174) sorted by relevance

1234567891011>>

/external/mesa3d/src/compiler/glsl/glcpp/tests/
H A D019-define-func-1-arg-multi.c2 foo(this is more than one word)
H A D054-if-with-macros.c1 #define one 1 macro
25 #if one > three
30 #if one != five
H A D020-define-func-2-arg-multi.c2 foo(one fish, blue fish)
H A D096-paste-twice.c2 paste_twice(just, one, token)
/external/libcxx/test/std/language.support/support.limits/limits/round.style/
H A Dcheck_values.pass.cpp16 typedef char one; typedef
17 struct two {one _[2];};
19 one test(std::float_denorm_style);
/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}} \
18 one(a, b) /* expected-error {{too many arguments provided to function-like macro invocation}} */
40 one_dot(x) /* empty ... argument: expected-warning {{must specify at least one argument for '...' parameter of variadic macro}} */
41 one_dot() /* empty first argument, elided ...: expected-warning {{must specify at least one argument for '...' parameter of variadic macro}} */
/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/webrtc/webrtc/base/
H A Dreferencecountedsingletonfactory_unittest.cc66 rcsf_ptr<MyExistenceWatcher> one(&factory), two(&factory);
68 EXPECT_EQ(one.get(), two.get());
74 rcsf_ptr<MyExistenceWatcher> one(&factory);
75 one.get();
78 one.release();
84 rcsf_ptr<MyExistenceWatcher> one(&factory);
85 one.get();
88 one.get();
94 rcsf_ptr<MyExistenceWatcher> one(&factory);
97 one
[all...]
/external/crcalc/tests/src/com/hp/creals/
H A DCRTest.java70 CR one = CR.valueOf(1);
72 check(one.signum() == 1, "signum(1) failed");
73 check(one.negate().signum() == -1, "signum(-1) failed");
75 check(one.compareTo(two, -10) == -1, "comparison failed");
77 check_eq(one.shiftLeft(1),two, "shiftLeft failed");
78 check_eq(two.shiftRight(1),one, "shiftRight failed");
79 check_eq(one.add(one),two, "add failed 1");
80 check_eq(one.max(two),two, "max failed");
81 check_eq(one
[all...]
/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/fdlibm/
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)));
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;
/external/libcxx/test/std/utilities/time/time.duration/time.duration.arithmetic/
H A Dop_-.pass.cpp41 D10 one(1);
42 static_assert( (std::is_same< decltype(-one), decltype(zero-one) >::value), "");
43 static_assert( (std::is_same< decltype(zero-one), D1>::value), "");
44 static_assert( (std::is_same< decltype(-one), D1>::value), "");
45 static_assert( (std::is_same< decltype(+one), D1>::value), "");
/external/libcxx/test/std/language.support/support.limits/limits/denorm.style/
H A Dcheck_values.pass.cpp16 typedef char one; typedef
17 struct two {one _[2];};
19 one test(std::float_round_style);
/external/tensorflow/tensorflow/compiler/xla/tests/
H A Dquery_inferred_shape_test.cc34 auto one = builder.ConstantR0<float>(1.0); local
35 auto result = builder.Add(one, one);
/external/v8/tools/foozzie/
H A Dv8_foozzie_test.py22 one = ''
25 self.assertEquals(diff, suppress.diff(one, two))
27 one = 'a \n b\nc();'
30 self.assertEquals(diff, suppress.diff(one, two))
34 one = """
53 self.assertEquals(diff, suppress.diff(one, two))
55 one = """
63 self.assertEquals(diff, suppress.diff(one, two))
65 one = """
73 self.assertEquals(diff, suppress.diff(one, tw
[all...]
/external/clang/test/CodeGen/
H A Dbitfield-init.c10 struct Token one = { 1 }; local
/external/clang/test/CodeGenCXX/
H A Dms-integer-static-data-members-exported.cpp3 enum Enum { zero, one, two }; enumerator in enum:Enum
/external/clang/test/PCH/Inputs/
H A Dchain-decls2.h4 void one();
/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 Dmissing-field-initializers.c30 struct One one; member in union:Three::__anon3230
36 { .one = { 1, 2 } }
43 { { .one = { 1, 2 } } },
44 { { .one = { 1 } } }, // expected-warning {{missing field 'b' initializer}}
H A Dstruct-cast.c5 int one; member in struct:S
/external/clang/tools/scan-build-py/tests/functional/src/
H A Dclean-one.c1 #include <clean-one.h>
H A Dclean-two.c1 #include <clean-one.h>
/external/llvm/test/MC/ELF/
H A Ddot-symbol-assignment.s3 one: label

Completed in 2706 milliseconds

1234567891011>>