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

1 2 3 4 5 6 7 8 9

  /external/elfutils/src/
sectionhash.c 27 scnhead_compare (struct scnhead *one, struct scnhead *two)
29 int result = strcmp (one->name, two->name);
33 result = one->type - two->type;
38 - SH_FLAGS_IMPORTANT (two->flags));
43 result = one->entsize - two->entsize;
48 ? (two->grp_signature == NULL ? 0 : -1)
49 : (two->grp_signature == NULL
51 two->grp_signature)));
54 result = one->kind - two->kind;
  /external/fdlibm/
s_tanh.c 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
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);
  /bionic/libm/src/
s_tanh.c 44 static const double one=1.0, two=2.0, tiny = 1.0e-300; variable
67 t = expm1(two*fabs(x));
68 z = one - two/(t+two);
70 t = expm1(-two*fabs(x));
71 z= -t/(t+two);
s_tanhf.c 23 static const float one=1.0, two=2.0, tiny = 1.0e-30, huge = 1.0e30; variable
45 t = expm1f(two*fabsf(x));
46 z = one - two/(t+two);
48 t = expm1f(-two*fabsf(x));
49 z= -t/(t+two);
  /dalvik/tests/068-classloader/src-ex/
DoubledImplement.java 15 public void two() { method in class:DoubledImplement
16 System.out.println("DoubledImplement two");
DoubledImplement2.java 29 public void two() { method in class:DoubledImplement2
30 System.out.println("DoubledImplement2 two");
  /external/srec/config/en.us/tcp/
change_sample_rate2.tcp 12 recognize_nist dallas/0000/S072.nwf 0 0 oh eight four zero nine two five one eight five
13 recognize_nist dallas/0000/S074.nwf 0 0 eight six one oh five six six two six two
14 recognize_nist dallas/0000/S075.nwf 0 0 zero seven six five nine oh zero two five two
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
19 recognize_nist dallas/0000/S083.nwf 0 0 zero nine nine five seven two oh one zero six
20 recognize_nist dallas/0000/S086.nwf 0 0 six eight seven two one oh eight five zero seven
21 recognize_nist dallas/0000/S088.nwf 0 0 four two zero eight five nine oh nine four zer
    [all...]
  /development/tools/
make_key 44 two=${tmpdir}/two
46 mknod ${two} p
47 chmod 0600 ${one} ${two}
52 ( openssl genrsa -3 2048 | tee ${one} > ${two} ) &
54 openssl req -new -x509 -sha1 -key ${two} -out $1.x509.pem \
  /libcore/luni/src/test/java/tests/api/java/util/concurrent/
AtomicMarkableReferenceTest.java 41 ai.set(two, false);
42 assertSame(two,ai.getReference());
44 assertSame(two, ai.get(mark));
77 assertTrue(ai.compareAndSet(one, two, false, false));
78 assertSame(two, ai.get(mark));
81 assertTrue(ai.compareAndSet(two, m3, false, true));
85 assertFalse(ai.compareAndSet(two, m3, true, true));
98 while (!ai.compareAndSet(two, three, false, false))
103 assertTrue(ai.compareAndSet(one, two, false, false));
141 while (!ai.weakCompareAndSet(one, two, false, false))
    [all...]
AtomicReferenceTest.java 42 ai.set(two);
43 assertSame(two,ai.get());
54 ai.lazySet(two);
55 assertSame(two,ai.get());
65 assertTrue(ai.compareAndSet(one,two));
66 assertTrue(ai.compareAndSet(two,m4));
82 while (!ai.compareAndSet(two, three))
87 assertTrue(ai.compareAndSet(one, two));
99 while (!ai.weakCompareAndSet(one,two));
100 while (!ai.weakCompareAndSet(two,m4))
    [all...]
AtomicStampedReferenceTest.java 41 ai.set(two, 0);
42 assertSame(two,ai.getReference());
44 assertSame(two, ai.get(mark));
77 assertTrue(ai.compareAndSet(one, two, 0, 0));
78 assertSame(two, ai.get(mark));
81 assertTrue(ai.compareAndSet(two, m3, 0, 1));
85 assertFalse(ai.compareAndSet(two, m3, 1, 1));
98 while (!ai.compareAndSet(two, three, 0, 0))
103 assertTrue(ai.compareAndSet(one, two, 0, 0));
141 while (!ai.weakCompareAndSet(one, two, 0, 0))
    [all...]
ExchangerTest.java 22 * exchange exchanges objects across two threads
28 assertSame(one, e.exchange(two));
29 assertSame(two, e.exchange(one));
33 assertSame(two, e.exchange(one));
34 assertSame(one, e.exchange(two));
44 * timed exchange exchanges objects across two threads
50 assertSame(one, e.exchange(two, SHORT_DELAY_MS, MILLISECONDS));
51 assertSame(two, e.exchange(one, SHORT_DELAY_MS, MILLISECONDS));
55 assertSame(two, e.exchange(one, SHORT_DELAY_MS, MILLISECONDS));
56 assertSame(one, e.exchange(two, SHORT_DELAY_MS, MILLISECONDS))
    [all...]
AtomicReferenceFieldUpdaterTest.java 73 a.set(this,two);
74 assertSame(two,a.get(this));
91 a.lazySet(this,two);
92 assertSame(two,a.get(this));
108 assertTrue(a.compareAndSet(this,one,two));
109 assertTrue(a.compareAndSet(this,two,m4));
132 while (!a.compareAndSet(AtomicReferenceFieldUpdaterTest.this, two, three))
137 assertTrue(a.compareAndSet(this, one, two));
155 while (!a.weakCompareAndSet(this,one,two));
156 while (!a.weakCompareAndSet(this,two,m4))
    [all...]
ThreadLocalTest.java 41 tl.set(two);
42 assertSame(tl.get(), two); local
53 itl.set(two);
54 assertSame(itl.get(), two); local
AtomicReferenceArrayTest.java 46 Integer[] a = { two, one, three, four, seven};
89 ai.set(i, two);
90 assertSame(two,ai.get(i));
104 ai.lazySet(i, two);
105 assertSame(two,ai.get(i));
118 assertTrue(ai.compareAndSet(i, one,two));
119 assertTrue(ai.compareAndSet(i, two,m4));
137 while (!a.compareAndSet(0, two, three))
142 assertTrue(a.compareAndSet(0, one, two));
156 while (!ai.weakCompareAndSet(i, one,two));
    [all...]
  /dalvik/tests/004-annotations/src/android/test/anno/
FullyNoted.java 21 @AnnoFancyParameter(factor=3.7879912899761) long two)
30 @AnnoFancyParameter(factor=3.7879912899761) long two)
  /dalvik/vm/mterp/x86/
stub.S 3 SAVE_PC_TO_GLUE(%ecx) # only need to export these two
4 SAVE_FP_TO_GLUE(%ecx) # only need to export these two
  /external/v8/test/mjsunit/
array-functions-prototype.js 35 var proto = { length:3, 0:'zero', 1:'one', 2:'two' }
42 Array.prototype[2] = 'two';
60 var array = ['zero', , 'two'];
76 assertEquals('two', array[1]);
77 assertEquals('two', nonArray[1]);
79 assertEquals('two', array[2]);
80 assertEquals('two', nonArray[2]);
91 var array = ['zero', , 'two'];
109 assertEquals('two', array[3]);
110 assertEquals('two', nonArray[3])
    [all...]
  /external/astl/tests/
test_vector.cpp 84 typedef enum { ONE = 10, TWO} TestEnum;
520 vector<B> two; local
521 two.push_back(B());
522 two.push_back(B());
524 vector<B>::iterator res = two.erase(two.begin());
526 EXPECT_TRUE(res == two.begin());
527 EXPECT_TRUE(res != two.end());
529 EXPECT_TRUE(two.begin() != two.end())
584 vector<B> two; local
598 vector<B> two; local
    [all...]
  /external/skia/src/animator/
SkBase64.cpp 40 #if defined _WIN32 && _MSC_VER >= 1300 // disable 'two', etc. may be used without having been initialized
85 int two, three; local
88 two = bytes[1];
89 one |= two >> 4;
90 two = (uint8_t) (two << 4);
92 two |= three >> 2;
95 SkASSERT(one < 256 && two < 256 && three < 256);
102 *dst = (unsigned char) two;
  /external/webkit/JavaScriptCore/tests/mozilla/js1_2/operator/
strictEquality.js 57 var anObject = { one:1 , two:2 };
62 testcases[count++] = new TestCase( SECTION, "(anObject === { one:1 , two:2 }) ",
63 false, (anObject === { one:1 , two:2 }));
65 testcases[count++] = new TestCase( SECTION, "({ one:1 , two:2 } === anObject) ",
66 false, ({ one:1 , two:2 } === anObject));
  /external/bluetooth/glib/gio/tests/
sleepy-stream.c 207 GString *two; local
210 two = g_string_new (NULL);
216 while (read_line (data, two, "\n", &error));
218 g_assert_cmpstr (one->str, ==, two->str);
220 g_string_free (two, TRUE);
226 static GString *one, *two; variable
252 g_string_append (two, str);
253 g_string_append (two, eol);
269 two = g_string_new (NULL);
276 g_assert_cmpstr (one->str, ==, two->str)
    [all...]
  /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");
765 CPPUNIT_ASSERT( s.rfind("two") == 18 );
766 CPPUNIT_ASSERT( s.rfind("two", 0) == string::npos );
767 CPPUNIT_ASSERT( s.rfind("two", 11) == 4 );
784 string s("one two three one two three");
802 string s("one two three one two three")
958 one == two; local
959 one != two; local
    [all...]
  /ndk/sources/android/stlport/test/unit/
string_test.cpp 640 string s("one two three one two three");
763 string s("one two three one two three");
765 CPPUNIT_ASSERT( s.rfind("two") == 18 );
766 CPPUNIT_ASSERT( s.rfind("two", 0) == string::npos );
767 CPPUNIT_ASSERT( s.rfind("two", 11) == 4 );
784 string s("one two three one two three");
802 string s("one two three one two three")
958 one == two; local
959 one != two; local
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
TimestampTest.java 86 Timestamp two = new Timestamp(now, cpath); local
89 assertTrue(one.equals(two));
90 assertTrue(two.equals(one));
149 Timestamp two = new Timestamp(now, cpath); local
154 assertTrue(one.hashCode() == two.hashCode());
156 assertTrue(two.hashCode() != three.hashCode());

Completed in 842 milliseconds

1 2 3 4 5 6 7 8 9