HomeSort by relevance Sort by last modified time
    Searched refs:two (Results 1 - 25 of 1170) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/mesa3d/src/glsl/glcpp/tests/
100-macro-with-colon.c 2 #define two 2 macro
5 case one + two:
054-if-with-macros.c 2 #define two 2 macro
5 #if five < two
10 #if three >= two
15 #if two + three <= five
20 #if five - two == three
057-empty-arguments.c 5 #define two(x,y) success macro
6 two(,)
039-func-arg-obj-macro-with-comma.c 2 #define bar two,words
  /toolchain/binutils/binutils-2.25/gas/config/
tc-m68851.h 115 {"pdbac", two(0xf048, 0x0007), two(0xfff8, 0xffff), "DsBw"},
116 {"pdbas", two(0xf048, 0x0006), two(0xfff8, 0xffff), "DsBw"},
117 {"pdbbc", two(0xf048, 0x0001), two(0xfff8, 0xffff), "DsBw"},
118 {"pdbbs", two(0xf048, 0x0000), two(0xfff8, 0xffff), "DsBw"},
119 {"pdbcc", two(0xf048, 0x000f), two(0xfff8, 0xffff), "DsBw"}
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/all/
eval.s 3 .equ two, 2
8 .if two > one
11 .byte two
17 .byte two
20 .if one < two
23 .byte two
26 .if one <> two
29 .byte two
32 .if one != two
35 .byte two
    [all...]
  /external/clang/test/SemaCXX/
gnu-case-ranges.cpp 6 two, enumerator in enum:E
18 case two ... two + 1:
  /build/kati/testcase/
append_self_reference.mk 2 x += two $(x)
7 #y += two $(y)
  /external/clang/test/CodeGenCXX/
powerpc-byval.cpp 8 void byval(S one, S two) {
9 one = two;
12 // CHECK: define void @_Z5byval1SS_(%struct.S* %one, %struct.S* %two)
ms-integer-static-data-members-exported.cpp 3 enum Enum { zero, one, two }; enumerator in enum:Enum
11 static const Enum y = two;
  /frameworks/compile/libbcc/tests/debuginfo/host-tests/
jit.cpp 10 // CHECK: in two
21 int two() function
28 return two();
  /toolchain/binutils/binutils-2.25/opcodes/
m68k-opc.c 25 #define two(x, y) (((unsigned int) (x) << 16) + (y)) macro
189 {"bfchg", 4, two(0165300, 0), two(0177700, 0170000), "?sO2O3", m68020up },
190 {"bfclr", 4, two(0166300, 0), two(0177700, 0170000), "?sO2O3", m68020up },
191 {"bfexts", 4, two(0165700, 0), two(0177700, 0100000), "/sO2O3D1", m68020up },
192 {"bfextu", 4, two(0164700, 0), two(0177700, 0100000), "/sO2O3D1", m68020up },
193 {"bfffo", 4, two(0166700, 0), two(0177700, 0100000), "/sO2O3D1", m68020up }
    [all...]
v850-opc.c 42 /* Two-word opcodes. */
43 #define two(x,y) ((unsigned int) (x) | ((unsigned int) (y) << 16)) macro
    [all...]
  /external/clang/test/Preprocessor/
macro_fn.c 6 #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/valgrind/none/tests/amd64/
ssse3_misaligned.stderr.exp 3 two
  /external/valgrind/none/tests/x86/
ssse3_misaligned.stderr.exp 3 two
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-arm/
cortex-a8-far-1.s 3 .globl two
4 two: label
  /external/toybox/tests/
cp.test 12 testing "cp -missing source [fail]" "cp missing two 2>/dev/null || echo yes" \
14 testing "cp file->file" "cp random two && cmp random two && echo yes" \
16 rm two
18 mkdir two
19 testing "cp file->dir" "cp random two && cmp random two/random && echo yes" \
21 rm two/random
23 "cp random two/random && cmp random two/random && echo yes"
    [all...]
  /external/elfutils/src/
sectionhash.c 31 scnhead_compare (struct scnhead *one, struct scnhead *two)
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/clang/test/PCH/
chain-decls.c 21 struct two y;
22 two();
  /system/core/libbacktrace/
backtrace_testlib.c 19 int test_level_four(int one, int two, int three, int four,
27 return one + two + three + four;
30 int test_level_three(int one, int two, int three, int four,
32 return test_level_four(one+3, two+6, three+9, four+12, callback_func, data) + 3;
35 int test_level_two(int one, int two, int three, int four,
37 return test_level_three(one+2, two+4, three+6, four+8, callback_func, data) + 2;
40 int test_level_one(int one, int two, int three, int four,
42 return test_level_two(one+1, two+2, three+3, four+4, callback_func, data) + 1;
  /external/clang/test/PCH/Inputs/
chain-decls1.h 4 void two();
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mri/
empty.s 6 SBT arg3 - one two three
7 SBT arg4 - one two three four
8 SBT arg5 - one two three four five
9 SBT arg6 - one two (three)
  /ndk/tests/device/test-stlport_shared-exception/jni/
label3.cpp 15 __label__ one, two, done; local
16 void *labs[] = { &&one, &&two, &&done };
28 two:
29 printf ("two!\n");
  /ndk/tests/device/test-stlport_static-exception/jni/
label3.cpp 15 __label__ one, two, done; local
16 void *labs[] = { &&one, &&two, &&done };
28 two:
29 printf ("two!\n");

Completed in 1680 milliseconds

1 2 3 4 5 6 7 8 91011>>