/toolchain/binutils/binutils-2.25/ld/testsuite/ld-mmix/ |
bpo-3.d | 8 # Just two BPO relocs merged as one linker-allocated GREG.
|
bpo-4.d | 9 # Three GREGs: one explicit, two linker-allocated.
|
/bionic/tests/ |
search_test.cpp | 150 q_node two(2); 156 insque(&two, &one); 165 for (q_node* q = &two; q != NULL; q = q->prev) { 178 remque(&two); 190 insque(&two, &one); 205 remque(&two);
|
/external/caliper/examples/src/main/java/examples/ |
VarargsBenchmark.java | 38 @Override long two(long a, long b) { method 62 @Override long two(long a, long b) { method 63 return VarargsBenchmark.two(a, b); 85 abstract long two(long a, long b); method in class:VarargsBenchmark.Strategy 108 private static long two(long a, long b) { method in class:VarargsBenchmark 174 dummy += strategy.two(data[i % dataLength], data[(i + 1) % dataLength]);
|
/external/clang/test/SemaCXX/ |
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>); 147 static_assert(sizeof(ov2({1, 2, 3})) == sizeof(two), "bad overload"); // list -> F only viable
|
/external/mesa3d/docs/ |
MESA_texture_array.spec | 44 blend two textures out of a larger set of textures. Moreover, in some 56 in a different texture map, and dynamically select which two 174 TEXTURE_2D_ARRAY_EXT for an two-dimensional array texture. 177 two-dimensional proxy array texture." 199 is used to specify a two-dimensional texture image. target must be one 200 of TEXTURE_2D for a two-dimensional texture, TEXTURE_1D_ARRAY_EXT for a 205 target may be either PROXY_TEXTURE_2D for a two-dimensional proxy 237 defines a two-dimensional texture image in exactly the manner of 286 w(x,y) = 0; for a two-dimensional texture or a two-dimensional arra [all...] |
/libcore/jsr166-tests/src/test/java/jsr166/ |
ConcurrentSkipListMapTest.java | 45 map.put(two, "B"); 172 assertTrue(s.contains(two)); 296 (e.getKey().equals(two) && e.getValue().equals("B")) || 315 (e.getKey().equals(two) && e.getValue().equals("B")) || 359 assertTrue(empty.containsKey(two)); 451 assertEquals(two, e1.getKey()); 524 assertEquals(two, e.getKey()); 555 assertEquals(two, e1); 630 assertEquals(two, e.getKey()); 664 map.remove(two); [all...] |
TreeMapTest.java | 44 map.put(two, "B"); 171 assertTrue(s.contains(two)); 279 (e.getKey().equals(two) && e.getValue().equals("B")) || 298 (e.getKey().equals(two) && e.getValue().equals("B")) || 342 assertTrue(empty.containsKey(two)); 364 assertEquals(two, e1.getKey()); 436 assertEquals(two, e1); 511 assertEquals(two, e.getKey()); 545 map.remove(two); 632 NavigableMap sm = map.subMap(two, true, four, false) [all...] |
TreeSubMapTest.java | 43 map.put(two, "B"); 164 assertTrue(s.contains(two)); 212 (e.getKey().equals(two) && e.getValue().equals("B")) || 228 assertTrue(empty.containsKey(two)); 250 assertEquals(two, e1.getKey()); 325 assertEquals(two, e.getKey()); 362 map.remove(two); 459 SortedMap sm = map.subMap(two, four); 460 assertEquals(two, sm.firstKey()); 464 assertTrue(sm.containsKey(two)); [all...] |
/external/libvpx/libvpx/vpx_dsp/arm/ |
variance_media.asm | 61 uxtb16 r5, r6 ; byte (two pixels) to halfwords 62 uxtb16 r10, r6, ror #8 ; another two pixels to halfwords 85 uxtb16 r5, r6 ; byte (two pixels) to halfwords 86 uxtb16 r10, r6, ror #8 ; another two pixels to halfwords 109 uxtb16 r5, r6 ; byte (two pixels) to halfwords 110 uxtb16 r10, r6, ror #8 ; another two pixels to halfwords 135 uxtb16 r5, r6 ; byte (two pixels) to halfwords 136 uxtb16 r10, r6, ror #8 ; another two pixels to halfwords 194 uxtb16 r7, r8 ; byte (two pixels) to halfwords 195 uxtb16 r10, r8, ror #8 ; another two pixels to halfword [all...] |
/external/v8/test/mjsunit/ |
string-externalize.js | 43 externalizeString(twoByteExternalWithOneByteData, true /* force two-byte */); 53 // Appending a two-byte string that contains only ascii chars should 75 // Appending a real two-byte string should produce a two-byte cons. 88 // Flattened string should still be two-byte.
|
keyed-call-ic.js | 55 F.prototype.two = function() {return 'two'; } method in class:F 59 ['one', 'one', 'one', 'one', 'two', 'two', 'one', 'three', 'one', 'two']; 116 key = 'two'; // the name change should case a miss 126 key = 'two'; // the name change should case a miss 190 if (i == 5) { obj = "TWO"; }
|
/frameworks/data-binding/compiler/src/test/java/android/databinding/ |
BindingExpressionParserTest.java | 226 DotOpContext expression = parseExpression("one.two.three"); 231 assertEquals("two", left.Identifier().getText()); 238 QuestionQuestionOpContext expression = parseExpression("one ?? two"); 241 assertEquals("two", ((PrimaryContext) expression.right).identifier().getText()); 292 String two = ((PrimaryContext) expression.right).literal().javaLiteral().getText(); local 293 assertEquals("2", two); 304 String two = ((PrimaryContext) expression.right).literal().javaLiteral().getText(); local 305 assertEquals("2", two); 316 String two = ((PrimaryContext) expression.right).literal().javaLiteral().getText(); local 317 assertEquals("2", two); 328 String two = ((PrimaryContext) expression.right).literal().javaLiteral().getText(); local 340 String two = ((PrimaryContext) expression.right).literal().javaLiteral().getText(); local [all...] |
/prebuilts/go/darwin-x86/src/math/big/ |
example_test.go | 57 // Initialize two big ints with the first two numbers in the sequence. 99 two := new(big.Float).SetPrec(prec).SetInt64(2) 113 t.Quo(two, x) // t = 2.0 / x_n 123 fmt.Printf("error = %e\n", t.Sub(two, t))
|
/prebuilts/go/linux-x86/src/math/big/ |
example_test.go | 57 // Initialize two big ints with the first two numbers in the sequence. 99 two := new(big.Float).SetPrec(prec).SetInt64(2) 113 t.Quo(two, x) // t = 2.0 / x_n 123 fmt.Printf("error = %e\n", t.Sub(two, t))
|
/external/skia/src/pathops/ |
SkIntersections.h | 110 int insertSwap(double one, double two, const SkDPoint& pt) { 112 return insert(two, one, pt); 114 return insert(one, two, pt); 231 void cubicInsert(double one, double two, const SkDPoint& pt, const SkDCubic& c1, 245 int insert(double one, double two, const SkDPoint& pt); 246 void insertNear(double one, double two, const SkDPoint& pt1, const SkDPoint& pt2); 248 int insertCoincident(double one, double two, const SkDPoint& pt);
|
/external/v8/tools/ |
generate-ten-powers.scm | 99 ;; We shift by multiplying with two^e. -> We encode two^e*(1/ten^i) == 100 ;; two^e/ten^i. 103 (two^e #z1) 106 (if (>bx (/bx (*bx #z2 two^e) ten^i) max-container) 112 (v (rounded-/bx two^e ten^i)) 115 (loop (+fx i 1) (*bx ten^i #z10) two^e e)) 116 (loop i ten^i (bit-lshbx two^e 1) (+fx e 1)))))
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/emitter/ |
EmitterMultiLineTest.java | 43 String two = "one\ntwo\nthree\n"; local 47 list.add(two); 54 String etalon = "- |-\n first\n second\n third\n- |\n one\n two\n three\n- !!binary |-\n CA4PCn4gQUFB\n"; 60 assertEquals(two, parsed.get(1));
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/numeric/conversion/ |
converter_policies.hpp | 111 S const two(2.0); 119 bool is_prev_even = two * floor(prev / two) == prev ;
|
/external/v8/test/mjsunit/compiler/ |
regress-stacktrace-methods.js | 34 Svin.prototype.two = function() { /* xxxxxxx */ o.three(); } method in class:Svin 36 Hest.prototype.one = function(x) { x.two(); } 58 var p2 = stack.indexOf("at Svin.two");
|
regress-stacktrace.js | 29 eval("function two() { /* xxxxxxx */ three(); }"); 32 two(); 44 var p2 = stack.indexOf("at two");
|
/external/v8/test/mjsunit/regress/ |
regress-crbug-229923.js | 33 var parent = "external string turned into two byte"; 36 // Turn the string to a two-byte external string, so that the sliced 37 // string looks like one-byte, but its parent is actually two-byte.
|
/prebuilts/go/darwin-x86/test/chan/ |
doubleselect.go | 7 // Test the situation in which two cases of a select can 19 // sender sends a counter to one of four different channels. If two 21 // to two different channels.
|
/prebuilts/go/linux-x86/test/chan/ |
doubleselect.go | 7 // Test the situation in which two cases of a select can 19 // sender sends a counter to one of four different channels. If two 21 // to two different channels.
|
/external/boringssl/src/ssl/test/runner/poly1305/ |
sum_amd64.go | 16 // 16-byte result into out. Authenticating two different messages with the same
|