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

1 2 3 4 5

  /external/mesa3d/src/glsl/glcpp/tests/
054-if-with-macros.c 3 #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/
ssse3_misaligned.stderr.exp 4 three
  /external/valgrind/main/none/tests/x86/
ssse3_misaligned.stderr.exp 4 three
  /external/clang/test/PCH/Inputs/
chain-decls2.h 5 struct three {}; // for verification struct
  /external/clang/test/SemaCXX/
gnu-case-ranges.cpp 6 three, enumerator in enum:E
  /external/clang/test/PCH/
chain-decls.c 21 struct three z;
  /external/srec/config/en.us/tcp/
change_sample_rate2.tcp 15 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 three zero zero five oh oh si
    [all...]
  /dalvik/libdex/
DexUtf.h 42 unsigned int one, two, three; local
46 /* two- or three-byte encoding */
49 /* three-byte encoding */
50 three = *(*pUtf8Ptr)++;
53 (three & 0x3f);
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
CodeSignerTest.java 69 CodeSigner three = new CodeSigner(cpath, null); local
77 assertFalse(one.equals(three));
78 assertFalse(three.equals(one));
79 assertTrue(three.equals(three));
81 assertFalse( three.equals(four));
  /ndk/tests/device/multi-static-instances/jni/
Application.mk 3 # This is a trick to allow use to build three executables
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
ConcurrentModTest.java 38 Double three = new Double(3.0); local
42 al.add(three);
68 Double three = new Double(3.0); local
72 al.add(three);
98 Double three = new Double(3.0); local
102 al.add(three);
128 Double three = new Double(3.0); local
132 al.add(three);
158 Double three = new Double(3.0); local
162 al.add(three);
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
CodeSignerTest.java 86 CodeSigner three = new CodeSigner(cpath, null); local
94 assertFalse(one.equals(three));
95 assertFalse(three.equals(one));
96 assertTrue(three.equals(three));
98 assertFalse( three.equals(four));
TimestampTest.java 109 Timestamp three = new Timestamp(now, new MyCertPath(new byte[] { 10, local
114 assertTrue(one.hashCode() != three.hashCode());
115 assertTrue(two.hashCode() != three.hashCode());
  /external/e2fsprogs/lib/ext2fs/
sparse.c 51 unsigned int ext2fs_list_backups(ext2_filsys fs, unsigned int *three,
54 unsigned int *min = three;
  /external/skia/src/animator/
SkBase64.cpp 85 int two, three; local
91 three = bytes[2];
92 two |= three >> 2;
93 three = (uint8_t) (three << 6);
94 three |= bytes[3];
95 SkASSERT(one < 256 && two < 256 && three < 256);
107 *dst = (unsigned char) three;
  /external/collada/include/dae/
daeArray.h 440 * Sets the array to the contain the three values specified.
443 * @param three The third value.
445 void set3( const T &one, const T &two, const T &three )
450 set( 2, three );
456 * @param three The third value.
459 void set4( const T &one, const T &two, const T &three, const T &four )
464 set( 2, three );
481 * Sets the values in the array at the specified location to the contain the three
486 * @param three The third value.
488 void set3at( size_t index, const T &one, const T &two, const T &three )
    [all...]
  /external/v8/test/mjsunit/
smi-ops-inlined.js 443 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...]
smi-ops.js 450 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...]
  /frameworks/base/core/tests/coretests/src/android/view/
CreateViewTest.java 61 ViewOne three = new ViewOne(mContext); local
62 vert.addView(three, new LinearLayout.LayoutParams(MATCH_PARENT, MATCH_PARENT, 0));
101 TextView three = new TextView(mContext); local
102 three.setText("T");
103 vert.addView(three, new LinearLayout.LayoutParams(MATCH_PARENT, WRAP_CONTENT, 0));
  /libcore/luni/src/test/java/libcore/xml/
SimpleBuilderTest.java 73 Element three = (Element) list.item(2); local
80 assertEquals("Rent this space!", getTextContent(three));
85 assertEquals("drei", three.getAttribute("three"));
  /external/v8/test/mjsunit/compiler/
regress-stacktrace-methods.js 34 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");
  /libcore/luni/src/test/java/libcore/java/lang/
OldAndroidInstanceofTest.java 65 InterfaceThree three = mThree; local
67 assertFalse("m_three should not be a ChildOfAFive", three instanceof ChildOfAFive);
  /libcore/luni/src/test/java/tests/api/java/util/
ConcurrentModTest.java 38 Double three = new Double(3.0); local
42 al.add(three);
82 Double three = new Double(3.0); local
86 al.add(three);
112 Double three = new Double(3.0); local
116 al.add(three);
142 Double three = new Double(3.0); local
146 al.add(three);
208 Double three = new Double(3.0); local
212 al.add(three);
    [all...]
  /external/icu4c/test/cintltst/
chashtst.c 101 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/
string_test.cpp 640 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...]

Completed in 828 milliseconds

1 2 3 4 5