Searched defs:two (Results 1 - 25 of 211) sorted by relevance

123456789

/external/mesa3d/src/compiler/glsl/glcpp/tests/
H A D100-macro-with-colon.c2 #define two 2 macro
5 case one + two:
H A D054-if-with-macros.c2 #define two 2 macro
5 #if five < two
10 #if three >= two
15 #if two + three <= five
20 #if five - two == three
H A D057-empty-arguments.c5 #define two(x,y) success macro
6 two(,)
/external/clang/test/CodeGen/
H A DCFStrings.c18 const CFStringRef two = (CFStringRef)__builtin___CFStringMakeConstantString("\xef\xbf\xbd\x74\xef\xbf\xbd\x77\xef\xbf\xbd\x6f"); variable
/external/clang/test/CodeGenCXX/
H A Dpowerpc-byval.cpp8 void byval(S one, S two) { argument
9 one = two;
12 // CHECK: define void @_Z5byval1SS_(%struct.S* %one, %struct.S* %two)
H A Dms-integer-static-data-members-exported.cpp3 enum Enum { zero, one, two }; enumerator in enum:Enum
11 static const Enum y = two;
/external/clang/test/PCH/Inputs/
H A Dchain-decls2.h3 struct two {}; struct
/external/compiler-rt/lib/builtins/x86_64/
H A Dfloatundisf.S13 two: label
31 mulss REL_ADDR(two), %xmm0
/external/libcxx/test/std/language.support/support.limits/limits/denorm.style/
H A Dcheck_values.pass.cpp17 struct two {one _[2];}; struct
20 two test(int);
/external/libcxx/test/std/language.support/support.limits/limits/round.style/
H A Dcheck_values.pass.cpp17 struct two {one _[2];}; struct
20 two test(int);
/external/llvm/test/MC/ELF/
H A Ddot-symbol-assignment.s7 two: label
/external/skia/tests/
H A DPathOpsInverseTest.cpp10 SkPath one, two; local
22 two.reset();
23 two.setFillType((SkPath::FillType) twoFill);
24 two.addRect(3, 3, 9, 9, (SkPath::Direction) twoDir);
25 testPathOp(reporter, one, two, (SkPathOp) op, "inverseTest");
/external/skqp/tests/
H A DPathOpsInverseTest.cpp10 SkPath one, two; local
22 two.reset();
23 two.setFillType((SkPath::FillType) twoFill);
24 two.addRect(3, 3, 9, 9, (SkPath::Direction) twoDir);
25 testPathOp(reporter, one, two, (SkPathOp) op, "inverseTest");
/external/v8/tools/clang/plugins/tests/
H A Dmissing_ctor_ignored_base.cpp9 MissingCtorsWithIgnoredGrandBase two; local
H A Dmissing_ctor.cpp18 MissingCtorsArentOKInHeader two; local
H A Dmissing_ctor_dllexport.cpp18 MissingCtorsArentOKInHeader two; local
/external/clang/test/Sema/
H A Dstruct-cast.c6 int two; member in struct:S
/external/clang/test/SemaCXX/
H A Dgnu-case-ranges.cpp6 two, enumerator in enum:E
18 case two ... two + 1:
/external/libcxx/test/std/utilities/function.objects/arithmetic.operations/
H A Dtransparent.pass.cpp18 struct two {char lx; char lxx;}; struct in struct:is_transparent
19 template <class U> static two test(...);
/external/libcxx/test/std/utilities/function.objects/bitwise.operations/
H A Dtransparent.pass.cpp18 struct two {char lx; char lxx;}; struct in struct:is_transparent
19 template <class U> static two test(...);
/external/libcxx/test/std/utilities/function.objects/comparisons/
H A Dtransparent.pass.cpp18 struct two {char lx; char lxx;}; struct in struct:is_transparent
19 template <class U> static two test(...);
/external/libcxx/test/std/utilities/function.objects/logical.operations/
H A Dtransparent.pass.cpp18 struct two {char lx; char lxx;}; struct in struct:is_transparent
19 template <class U> static two test(...);
/external/clang/test/Preprocessor/
H A Dmacro_fn.c6 #define two(x, y) 0 /* expected-note 4 {{defined here}} */ macro
20 two() /* expected-error {{too few arguments provided to function-like macro invocation}} */
21 two(a) /* expected-error {{too few arguments provided to function-like macro invocation}} */
22 two(a,b)
23 two(a, ) /* expected-warning {{empty macro arguments are a C99 feature}} */
24 two(a,b,c) /* expected-error {{too many arguments provided to function-like macro invocation}} */
25 two(
30 two(,) /* expected-warning 2 {{empty macro arguments are a C99 feature}} */
/external/elfutils/src/
H A Dsectionhash.c31 scnhead_compare (struct scnhead *one, struct scnhead *two) argument
33 int result = strcmp (one->name, two->name);
37 result = one->type - two->type;
42 - SH_FLAGS_IMPORTANT (two->flags));
47 result = one->entsize - two->entsize;
52 ? (two->grp_signature == NULL ? 0 : -1)
53 : (two->grp_signature == NULL
55 two->grp_signature)));
58 result = one->kind - two->kind;
/external/fdlibm/
H A Ds_tanh.c41 static const double one=1.0, two=2.0, tiny = 1.0e-300; variable
43 static double one=1.0, two=2.0, tiny = 1.0e-300; variable
71 t = ieee_expm1(two*ieee_fabs(x));
72 z = one - two/(t+two);
74 t = ieee_expm1(-two*ieee_fabs(x));
75 z= -t/(t+two);

Completed in 4995 milliseconds

123456789