/bionic/libm/upstream-freebsd/lib/msun/src/ |
e_pow.c | 19 * 1. Compute and return log2(x) in two pieces: 69 two = 2.0, variable 299 r = (z*t1)/(t1-two)-(w+z*w);
|
e_powf.c | 28 two = 2.0, variable 242 r = (z*t1)/(t1-two)-(w+z*w);
|
s_erf.c | 118 two = 2.00000000000000000000e+00, /* 0x40000000, 0x00000000 */ variable 287 if(hx<0&&ix>=0x40180000) return two-tiny;/* x < -6 */ 297 if(hx>0) return r/x; else return two-r/x; 299 if(hx>0) return tiny*tiny; else return two-tiny;
|
s_erff.c | 26 two = 2.0000000000e+00, /* 0x40000000 */ variable 196 if(hx<0&&ix>=0x40c00000) return two-tiny;/* x < -6 */ 206 if(hx>0) return r/x; else return two-r/x; 208 if(hx>0) return tiny*tiny; else return two-tiny;
|
/external/chromium_org/tools/site_compare/commands/ |
compare2.py | 5 """SiteCompare command to invoke the same page in two versions of a browser. 7 Does the easiest compatibility test: equality comparison between two different 18 import operators # Functions that, given two bitmaps as input, produce namespace 28 "Compares the output of two browsers on the same URL or list of URLs",
|
/external/clang/test/Sema/ |
MicrosoftExtensions.c | 93 __declspec(deprecated("This is deprecated")) enum DE1 { one, two } e1; // expected-note {{'e1' declared here}} enumerator in enum:DE1
|
/external/clang/test/SemaCXX/ |
cxx0x-initializer-aggregates.cpp | 4 struct two { char c[2]; }; struct 64 two overloaded(B); 67 static_assert(sizeof(overloaded({1, "two"})) == sizeof(two),
|
cxx0x-initializer-stdinitializerlist.cpp | 46 struct two { char c[2]; }; struct 84 two overloaded(std::initializer_list<B>); 87 static_assert(sizeof(overloaded({ {1, 2}, {2, 3}, {} })) == sizeof(two), "bad overload"); 94 two ov2(std::initializer_list<C>); // expected-note {{candidate}}
|
undefined-internal.cpp | 92 static const int two = 2; member in struct:test6::A 105 a.value = A<Internal>::two;
|
class-layout.cpp | 203 pod_in_11_only2 two; member in struct:PR16537::test5::second_base 230 pod_in_11_only2 two; member in struct:PR16537::test6::second_base
|
cxx0x-initializer-constructor.cpp | 4 struct two { char c[2]; }; struct 76 // Narrowing conversions don't affect viability. The next two choose 135 two ov1(C); // expected-note {{not viable: cannot convert initializer list}} 137 static_assert(sizeof(ov1({})) == sizeof(two), "bad overload"); 138 static_assert(sizeof(ov1({1, 2})) == sizeof(two), "bad overload"); 144 two ov2(F<3>); 146 static_assert(sizeof(ov2({1, 2, 3})) == sizeof(two), "bad overload"); // list -> F only viable
|
/external/valgrind/main/exp-bbv/tests/amd64-linux/ |
ll.S | 562 two: .ascii "Two\0\0\0" label
|
/external/valgrind/main/exp-bbv/tests/x86-linux/ |
ll.S | 224 inc %ebx # times two for future magic 276 # now we grab the first two words in the name field and use that 562 two: .ascii "Two\0\0\0" label
|
/libcore/luni/src/test/java/tests/api/java/math/ |
OldBigIntegerTest.java | 27 BigInteger two = new BigInteger("2", 10); field in class:OldBigIntegerTest 53 assertTrue("Random number is too big", bi.compareTo(two.pow(70)) < 0); 55 "Two random numbers in a row are the same (might not be a bug but it very likely is)", 105 // final BigInteger TWO = BigInteger.valueOf(2); 109 // q = p.subtract(BigInteger.ONE).divide(TWO); 180 assertFalse("isProbablePrime failed for product of two large primes" + 206 assertFalse("isProbablePrime failed for product of two large primes" + 299 assertTrue("1+1", BigInteger.ONE.add(BigInteger.ONE).equals(two));
|
/libcore/luni/src/test/java/tests/api/java/util/ |
ConcurrentModTest.java | 37 Double two = new Double(2.0); local 41 al.add(two); 81 Double two = new Double(2.0); local 85 al.add(two); 98 sub.set(1, two); 111 Double two = new Double(2.0); local 115 al.add(two); 128 sub.add(1, two); 141 Double two = new Double(2.0); local 145 al.add(two); 207 Double two = new Double(2.0); local [all...] |
/external/chromium_org/third_party/icu/source/test/cintltst/ |
cmsgtst.c | 191 int32_t two=0; local 237 umsg_parse(formatter,result,resultLength,&count,&ec,one,two,d2); 249 umsg_parse(formatter,result,resultLength,&count,&ec,&one,&two,&d2); [all...] |
/external/chromium_org/tools/site_compare/ |
site_compare.py | 23 import operators # Functions that, given two bitmaps as input, produce namespace 28 import commands.compare2 # compare one page in two versions of same browser namespace 165 # The below two commands are currently unstable so have been disabled
|
/external/clang/test/Parser/ |
cxx0x-attributes.cpp | 260 one, /* rest are deprecated */ two, three member in class:SecretKeepers
|
/external/fdlibm/ |
e_pow.c | 20 * 1. Compute and return log2(x) in two pieces: 73 two = 2.0, variable 302 r = (z*t1)/(t1-two)-(w+z*w);
|
s_erf.c | 119 two = 2.00000000000000000000e+00, /* 0x40000000, 0x00000000 */ variable 296 if(hx<0&&ix>=0x40180000) return two-tiny;/* x < -6 */ 306 if(hx>0) return r/x; else return two-r/x; 308 if(hx>0) return tiny*tiny; else return two-tiny;
|
/external/guava/guava-tests/test/com/google/common/cache/ |
LocalLoadingCacheTest.java | 113 Object two = new Object(); local 114 cache.getUnchecked(two); 154 Object two = new Object(); local 155 assertSame(one, map.replace(one, two)); 159 assertTrue(map.replace(one, two, three)); 163 assertNull(map.putIfAbsent(two, three)); 164 assertSame(three, map.remove(two)); 166 assertNull(map.put(one, two)); 170 Maps.immutableEntry(three, one), Maps.immutableEntry(one, two)); 174 ASSERT.that(values).hasContentsAnyOrder(one, two); 196 Object two = new Object(); local 213 Object two = new Object(); local [all...] |
/external/icu4c/test/cintltst/ |
cmsgtst.c | 197 int32_t two=0; local 243 umsg_parse(formatter,result,resultLength,&count,&ec,one,two,d2); 255 umsg_parse(formatter,result,resultLength,&count,&ec,&one,&two,&d2); [all...] |
/external/libogg/src/ |
bitwise.c | 614 static int two[6]={61,255,255,251,231,29}; local 656 cliptest(testbuffer3,test3size,0,two,twosize);
|
/external/tremolo/Tremolo/ |
bitwise.c | 562 static int two[6]={61,255,255,251,231,29}; local 592 cliptest(testbuffer3,test3size,0,two,twosize);
|
/external/valgrind/main/memcheck/tests/ |
str_tester.c | 58 /* Complain if first two args don't strcmp as equal. */ 66 char two[50]; variable 143 (void) strcpy (two, "hi there"); 144 (void) strcpy (one, two); 146 equal (two, "hi there", 6); /* Stomped on source? */ 155 (void) strcpy (two, one + i); /* Unaligned source. */ 156 equal (two, "hi there", 9 + (i * 2)); 299 (void) strcpy (two, "ef"); 300 (void) strcat (one, two); 302 equal (two, "ef", 6); /* Stomped on source? * [all...] |