Searched refs:three (Results 1 - 25 of 92) sorted by relevance

1234

/external/mesa3d/src/glsl/glcpp/tests/
H A D054-if-with-macros.c3 #define three 3 macro
10 #if three >= two
15 #if two + three <= five
20 #if five - two == three
25 #if one > three
/external/valgrind/main/none/tests/amd64/
H A Dssse3_misaligned.stderr.exp4 three
/external/valgrind/main/none/tests/x86/
H A Dssse3_misaligned.stderr.exp4 three
/external/clang/test/PCH/Inputs/
H A Dchain-decls2.h5 struct three {}; // for verification struct
/external/clang/test/SemaCXX/
H A Dgnu-case-ranges.cpp6 three, enumerator in enum:E
/external/clang/test/PCH/
H A Dchain-decls.c21 struct three z;
/external/srec/config/en.us/tcp/
H A Dchange_sample_rate2.tcp15 recognize_nist dallas/0000/S076.nwf 0 0 five zero two seven four nine three three zero zero
16 recognize_nist dallas/0000/S077.nwf 0 0 six nine five zero two eight seven seven three six
18 recognize_nist dallas/0000/S080.nwf 0 0 seven oh three seven nine zero six eight five seven
24 recognize_nist dallas/0300/S053.nwf 0 0 eight three five seven nine zero three five two oh
26 recognize_nist dallas/0300/S063.nwf 0 0 oh nine seven three one three zero five five zero
27 recognize_nist dallas/0300/S065.nwf 0 0 one three three thre
[all...]
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
H A DCodeSignerTest.java69 CodeSigner three = new CodeSigner(cpath, null);
77 assertFalse(one.equals(three));
78 assertFalse(three.equals(one));
79 assertTrue(three.equals(three));
81 assertFalse( three.equals(four));
/external/v8/test/mjsunit/regress/
H A Dregress-crbug-107996.js47 var three = 3;
53 fourteen = three + four + seven;
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DConcurrentModTest.java38 Double three = new Double(3.0);
42 al.add(three);
68 Double three = new Double(3.0);
72 al.add(three);
98 Double three = new Double(3.0);
102 al.add(three);
128 Double three = new Double(3.0);
132 al.add(three);
158 Double three = new Double(3.0);
162 al.add(three);
[all...]
/external/e2fsprogs/lib/ext2fs/
H A Dsparse.c51 unsigned int ext2fs_list_backups(ext2_filsys fs, unsigned int *three, argument
54 unsigned int *min = three;
H A Dres_gdt.c26 static unsigned int list_backups(ext2_filsys fs, unsigned int *three, argument
29 unsigned int *min = three;
125 unsigned int three = 1, five = 5, seven = 7; local
166 while ((grp = list_backups(fs, &three, &five, &seven)) <
/external/skia/src/utils/
H A DSkBase64.cpp78 int three = 0; local
84 three = bytes[2];
85 two |= three >> 2;
86 three = (uint8_t) (three << 6);
87 three |= bytes[3];
88 SkASSERT(one < 256 && two < 256 && three < 256);
100 *dst = (unsigned char) three;
/external/v8/test/mjsunit/compiler/
H A Dregress-stacktrace.js29 eval("function two() { /* xxxxxxx */ three(); }");
35 function three() { function
43 var p3 = stack.indexOf("at three");
H A Dregress-stacktrace-methods.js34 Svin.prototype.two = function() { /* xxxxxxx */ o.three(); }
38 Hest.prototype.three = function() { if (v == 42) throw new Error("urg"); }
48 %OptimizeFunctionOnNextCall(Hest.prototype.three);
57 var p3 = stack.indexOf("at Hest.three");
/external/v8/test/mjsunit/
H A Dsmi-ops-inlined.js443 var three = 3;
463 assertEquals(pos_non_smi / 8, (pos_non_smi) >> three);
464 assertEquals(pos_non_smi / 8, (pos_non_smi) >>> three);
465 assertEquals(-0x46536000, (pos_non_smi) << three);
473 assertEquals(pos_non_smi / 8, (pos_non_smi + 0.5) >> three);
474 assertEquals(pos_non_smi / 8, (pos_non_smi + 0.5) >>> three);
475 assertEquals(-0x46536000, (pos_non_smi + 0.5) << three);
481 assertEquals(neg_non_smi / 8, (neg_non_smi) >> three);
482 assertEquals(neg_non_smi / 8 + 0x100000000 / 8, (neg_non_smi) >>> three);
483 assertEquals(0x46536000, (neg_non_smi) << three);
[all...]
H A Dsmi-ops.js450 var three = 3;
470 assertEquals(pos_non_smi / 8, (pos_non_smi) >> three);
471 assertEquals(pos_non_smi / 8, (pos_non_smi) >>> three);
472 assertEquals(-0x46536000, (pos_non_smi) << three);
480 assertEquals(pos_non_smi / 8, (pos_non_smi + 0.5) >> three);
481 assertEquals(pos_non_smi / 8, (pos_non_smi + 0.5) >>> three);
482 assertEquals(-0x46536000, (pos_non_smi + 0.5) << three);
488 assertEquals(neg_non_smi / 8, (neg_non_smi) >> three);
489 assertEquals(neg_non_smi / 8 + 0x100000000 / 8, (neg_non_smi) >>> three);
490 assertEquals(0x46536000, (neg_non_smi) << three);
[all...]
H A Dstack-traces.js37 function three() {
40 three();
238 testTrace("testNested", testNested, ["at one", "at two", "at three"]);
/external/guava/guava-tests/test/com/google/common/cache/
H A DLocalLoadingCacheTest.java127 Object three = new Object();
128 cache.getUnchecked(three);
158 Object three = new Object();
159 assertTrue(map.replace(one, two, three));
160 assertTrue(map.remove(one, three));
163 assertNull(map.putIfAbsent(two, three));
164 assertSame(three, map.remove(two));
165 assertNull(map.put(three, one));
170 Maps.immutableEntry(three, one), Maps.immutableEntry(one, two));
172 ASSERT.that(keys).hasContentsAnyOrder(one, three);
[all...]
/external/icu4c/test/cintltst/
H A Dchashtst.c101 static const char three[6] = {0x74, 0x68, 0x72, 0x65, 0x65, 0}; /* "three" */ local
121 _put(hash, three, 3, 0);
126 _get(hash, three, 3);
134 if(_compareChars((void*)one, (void*)three) == TRUE ||
140 if(_compareIChars((void*)one, (void*)three) == TRUE ||
161 static const UChar three[6] = {0x0074, 0x0068, 0x0072, 0x0065, 0x0065, 0}; /* L"three" */ local
186 uhash_puti(hash, (void*)three, 3, &status);
/external/stlport/test/unit/
H A Dstring_test.cpp640 string s("one two three one two three");
763 string s("one two three one two three");
784 string s("one two three one two three");
802 string s("one two three one two three");
952 string one("one"), two("two"), three("three");
[all...]
/external/javassist/src/test/test/javassist/convert/
H A DArrayAccessReplaceTest.java275 public void setMultiFoo(int one, int two, int three, Foo foo); argument
276 public Foo getMultiFoo(int one, int two, int three); argument
337 public Foo getMultiFoo(int one, int two, int three) { argument
338 return multi[one][two][three];
381 public void setMultiFoo(int one, int two, int three, Foo foo) { argument
382 multi[one][two][three] = foo;
/external/llvm/
H A Dllvm-device-build.mk14 # The three inline options together reduce libbcc.so almost 1MB.
/external/icu4c/samples/ustring/
H A Dustring.cpp446 UnicodeString three(FALSE, readonly, LENGTHOF(readonly));
447 printUnicodeString("readonly-alias string: ", three);
450 three.setCharAt(1, 0x39);
451 printUnicodeString("readonly-aliasing string after modification: ", three);
453 for(i=0; i<three.length(); ++i) {
/external/libvpx/vpx_scale/generic/
H A Dbicubic_scaler.c73 unsigned short two, three; local
86 three = 3 << 13;
87 v3 = three - (2 * (a_i >> 3));
102 unsigned short two, three; local
108 three = 3 << 13;
109 v2 = three - (a_i >> 3);

Completed in 554 milliseconds

1234