Searched refs:one (Results 1 - 25 of 687) sorted by relevance

1234567891011>>

/external/clang/test/Modules/Inputs/normal-module-map/nested_umbrella/
H A D1.h1 int one; variable
/external/clang/test/CodeGen/
H A D2004-01-01-UnknownInitSize.c7 struct one struct
13 struct one hobbit = {5, {1, 2, 3}};
/external/mesa3d/src/glsl/glcpp/tests/
H A D100-macro-with-colon.c1 #define one 1 macro
5 case one + two:
H A D097-paste-with-non-function-macro.c1 #define PASTE_MACRO one ## token
H A D057-empty-arguments.c3 #define one(x) success macro
4 one()
H A D040-token-pasting.c2 paste(one , token)
/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/
H A Dsmi-negative-zero.js31 var one = 1; variable
40 assertEquals(-Infinity, one / (-zero), "one / -0 I");
42 assertEquals(-Infinity, one / (zero * minus_one), "one / -1");
43 assertEquals(-Infinity, one / (minus_one * zero), "one / -0 II");
44 assertEquals(Infinity, one / (zero * zero), "one / 0 I");
45 assertEquals(1, one / (minus_on
[all...]
/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...]
H A Dssse3_misaligned.stderr.exp1 you should see: "one\ntwo\nthree\n"
2 one
/external/valgrind/memcheck/tests/
H A Dstr_tester.c65 char one[50]; variable
123 for (__n = 0; __n < (int) sizeof (one); ++__n) \
124 one[__n] = 'Z'; \
125 fn (one, str); \
126 for (cp = one, __n = 0; __n < n; ++__n, ++cp) \
136 check (strcpy (one, "abcd") == one, 1); /* Returned value. */
137 equal (one, "abcd", 2); /* Basic test. */
139 (void) strcpy (one, "x");
140 equal (one, "
[all...]
/external/compiler-rt/test/asan/TestCases/
H A Dglobal-location.cc21 int one = argc - 1; local
23 case 'g': return global[one * 11];
24 case 'c': return C::array[one * 11];
29 return array[one * 11];
33 return str[one * 11];
/external/toybox/tests/
H A Dmkdir.test7 testing "mkdir" "mkdir one && [ -d one ] && echo yes" "yes\n" "" ""
8 rmdir one
15 testing "mkdir one two" \
16 "mkdir one two && [ -d one ] && [ -d two ] && echo yes" "yes\n" "" ""
17 rmdir one two
19 testing "mkdir missing/one" \
20 "mkdir missing/one 2> /dev/null || [ ! -d missing ] && echo yes" "yes\n" "" ""
23 "mkdir -p one/tw
[all...]
H A Dmkfifo.test7 testing "mkfifo" "mkfifo one && [ -p one ] && echo yes" "yes\n" "" ""
8 rm one
15 testing "mkfifo one two" \
16 "mkfifo one two && [ -p one ] && [ -p two ] && echo yes" "yes\n" "" ""
17 rm one two
21 "mkfifo one && stat -c %a one" "644\n" "" ""
22 rm one
[all...]
H A Drmdir.test7 mkdir one
8 testing "rmdir" "rmdir one && [ ! -d one ] && echo yes" "yes\n" "" ""
14 mkdir one two
15 testing "rmdir one two" \
16 "rmdir one two 2> /dev/null && [ ! -d one ] && [ ! -d two ] && echo yes" \
19 mkdir one two three
20 testing "rmdir one missing two file three" \
21 "rmdir one missin
[all...]
/external/clang/test/SemaCXX/
H A Dgnu-case-ranges.cpp5 one, enumerator in enum:E
16 case one:
/external/valgrind/none/tests/amd64/
H A Dssse3_misaligned.stderr.exp1 you should see: "one\ntwo\nthree\n"
2 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; } };
/external/fdlibm/
H A Ds_tanh.c24 * 2. 0 <= x <= 2**-55 : ieee_tanh(x) := x*(one+x)
41 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
62 if (jx>=0) return one/x+one; /* ieee_tanh(+-inf)=+-1 */
63 else return one/x-one; /* ieee_tanh(NaN) = NaN */
69 return x*(one+x); /* ieee_tanh(small) = small */
72 z = one - two/(t+two);
79 z = one
[all...]
/external/icu/icu4c/source/test/intltest/
H A Dlistformattertest.cpp22 one("Alice", -1, US_INV), two("Bob", -1, US_INV),
37 void ListFormatterTest::CheckFourCases(const char* locale_string, UnicodeString one, UnicodeString two, argument
45 UnicodeString input1[] = {one};
48 UnicodeString input2[] = {one, two};
51 UnicodeString input3[] = {one, two, three};
54 UnicodeString input4[] = {one, two, three, four};
58 UBool ListFormatterTest::RecordFourCases(const Locale& locale, UnicodeString one, UnicodeString two, argument
66 UnicodeString input1[] = {one};
68 UnicodeString input2[] = {one, two};
70 UnicodeString input3[] = {one, tw
[all...]
/external/clang/test/PCH/
H A Dchain-decls.c19 struct one x;
20 one();
/external/elfutils/src/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;
41 GElf_Sxword diff = (SH_FLAGS_IMPORTANT (one->flags)
47 result = one->entsize - two->entsize;
51 result = (one->grp_signature == NULL
54 ? 1 : strcmp (one->grp_signature,
58 result = one->kind - two->kind;
/external/clang/test/PCH/Inputs/
H A Dchain-decls1.h3 struct one {}; struct
/external/compiler-rt/test/asan/TestCases/Helpers/
H A Dinitialization-nobug-extra.cc6 static int one = countCalls(); variable

Completed in 665 milliseconds

1234567891011>>