/external/llvm/test/MC/Sparc/ |
D | sparc-mem-instructions.s | 4 ! CHECK: ldsb [%i0+%l6], %o2 ! encoding: [0xd4,0x4e,0x00,0x16] 5 ldsb [%i0 + %l6], %o2 6 ! CHECK: ldsb [%i0+32], %o2 ! encoding: [0xd4,0x4e,0x20,0x20] 7 ldsb [%i0 + 32], %o2 11 ! CHECK: ldsh [%i0+%l6], %o2 ! encoding: [0xd4,0x56,0x00,0x16] 12 ldsh [%i0 + %l6], %o2 13 ! CHECK: ldsh [%i0+32], %o2 ! encoding: [0xd4,0x56,0x20,0x20] 14 ldsh [%i0 + 32], %o2 18 ! CHECK: ldub [%i0+%l6], %o2 ! encoding: [0xd4,0x0e,0x00,0x16] 19 ldub [%i0 + %l6], %o2 [all …]
|
D | sparc-atomic-instructions.s | 9 ! CHECK: swap [%i0+%l6], %o2 ! encoding: [0xd4,0x7e,0x00,0x16] 10 swap [%i0+%l6], %o2 12 ! CHECK: swap [%i0+32], %o2 ! encoding: [0xd4,0x7e,0x20,0x20] 13 swap [%i0+32], %o2 15 ! CHECK: cas [%i0], %l6, %o2 ! encoding: [0xd5,0xe6,0x10,0x16] 16 cas [%i0], %l6, %o2 18 ! CHECK: casx [%i0], %l6, %o2 ! encoding: [0xd5,0xf6,0x10,0x16] 19 casx [%i0], %l6, %o2
|
/external/chromium_org/v8/test/webkit/ |
D | dfg-weak-js-constant-silent-fill-expected.txt | 30 PASS o2.f is false 33 PASS o2.f is false 36 PASS o2.f is false 39 PASS o2.f is false 42 PASS o2.f is false 45 PASS o2.f is false 48 PASS o2.f is false 51 PASS o2.f is false 54 PASS o2.f is false 57 PASS o2.f is false [all …]
|
/external/libexif/libexif/olympus/ |
D | exif-mnote-data-olympus.c | 103 size_t i, o, s, doff, base = 0, o2 = 6 + 2; in exif_mnote_data_olympus_save() local 146 o2 += 4; in exif_mnote_data_olympus_save() 179 o2 += 2 + 8; in exif_mnote_data_olympus_save() 183 exif_set_long (*buf + o2 + 2 + n->count * 12, n->order, 0); in exif_mnote_data_olympus_save() 190 exif_set_short (*buf + o2, n->order, (ExifShort) n->count); in exif_mnote_data_olympus_save() 191 o2 += 2; in exif_mnote_data_olympus_save() 195 o = o2 + i * 12; in exif_mnote_data_olympus_save() 242 size_t i, tcount, o, o2, datao = 6, base = 0; in exif_mnote_data_olympus_load() local 249 o2 = 6 + n->offset; /* Start of interesting data */ in exif_mnote_data_olympus_load() 250 if ((o2 + 10 < o2) || (o2 + 10 < 10) || (o2 + 10 > buf_size)) { in exif_mnote_data_olympus_load() [all …]
|
/external/llvm/test/MC/Disassembler/Sparc/ |
D | sparc-mem.txt | 3 # CHECK: ldsb [%i0+%l6], %o2 6 # CHECK: ldsb [%i0+32], %o2 12 # CHECK: ldsh [%i0+%l6], %o2 15 # CHECK: ldsh [%i0+32], %o2 21 # CHECK: ldub [%i0+%l6], %o2 24 # CHECK: ldub [%i0+32], %o2 27 # CHECK: ldub [%g1], %o2 30 # CHECK: lduh [%i0+%l6], %o2 33 # CHECK: lduh [%i0+32], %o2 36 # CHECK: lduh [%g1], %o2 [all …]
|
/external/chromium_org/third_party/cython/src/Cython/Includes/cpython/ |
D | number.pxd | 13 object PyNumber_Add(object o1, object o2) 15 # Returns the result of adding o1 and o2, or NULL on failure. This 16 # is the equivalent of the Python expression "o1 + o2". 18 object PyNumber_Subtract(object o1, object o2) 20 # Returns the result of subtracting o2 from o1, or NULL on 22 # o2". 24 object PyNumber_Multiply(object o1, object o2) 26 # Returns the result of multiplying o1 and o2, or NULL on 28 # o2". 30 object PyNumber_Divide(object o1, object o2) [all …]
|
/external/mockito/src/org/mockito/internal/matchers/ |
D | Equality.java | 12 public static boolean areEqual(Object o1, Object o2) { in areEqual() argument 13 if (o1 == null || o2 == null) { in areEqual() 14 return o1 == null && o2 == null; in areEqual() 16 return isArray(o2) && areArraysEqual(o1, o2); in areEqual() 18 return o1.equals(o2); in areEqual() 22 static boolean areArraysEqual(Object o1, Object o2) { in areArraysEqual() argument 23 return areArrayLengthsEqual(o1, o2) in areArraysEqual() 24 && areArrayElementsEqual(o1, o2); in areArraysEqual() 27 static boolean areArrayLengthsEqual(Object o1, Object o2) { in areArrayLengthsEqual() argument 28 return Array.getLength(o1) == Array.getLength(o2); in areArrayLengthsEqual() [all …]
|
/external/chromium_org/v8/test/mjsunit/regress/ |
D | poly_count_operation.js | 31 var o2 = {}; variable 45 Object.defineProperty(o2, "x", 63 assertEquals(6, f_mono(o2)); 66 assertEquals(7, f_mono(o2)); 71 assertEquals(8, f_mono(o2)); 84 assertEquals(6, f_poly(o2)); 87 assertEquals(7, f_poly(o2)); 92 assertEquals(8, f_poly(o2)); 98 assertEquals(NaN, f_poly(o2)); 111 assertEquals(7, f_pre(o2)); [all …]
|
D | regress-crbug-137689.js | 35 var o2 = {}; variable 38 Object.defineProperty(o2, "foo", { get: getter, configurable: true }); 39 assertTrue(%HaveSameMap(o, o2)); 42 Object.defineProperty(o2, "bar", { get: getter2 }); 43 assertTrue(%HaveSameMap(o, o2)); 46 Object.defineProperty(o2, "foo", { set: setter, configurable: true }); 47 assertTrue(%HaveSameMap(o, o2));
|
D | regress-polymorphic-load.js | 35 var o2 = {__proto__: {x:2}}; variable 37 f(o2); 38 f(o2); 39 f(o2); 43 assertEquals(2, f(o2));
|
/external/hamcrest/src/org/hamcrest/core/ |
D | IsEqual.java | 32 private static boolean areEqual(Object o1, Object o2) { in areEqual() argument 33 if (o1 == null || o2 == null) { in areEqual() 34 return o1 == null && o2 == null; in areEqual() 36 return isArray(o2) && areArraysEqual(o1, o2); in areEqual() 38 return o1.equals(o2); in areEqual() 42 private static boolean areArraysEqual(Object o1, Object o2) { in areArraysEqual() argument 43 return areArrayLengthsEqual(o1, o2) in areArraysEqual() 44 && areArrayElementsEqual(o1, o2); in areArraysEqual() 47 private static boolean areArrayLengthsEqual(Object o1, Object o2) { in areArrayLengthsEqual() argument 48 return Array.getLength(o1) == Array.getLength(o2); in areArrayLengthsEqual() [all …]
|
/external/chromium_org/v8/test/mjsunit/ |
D | load_poly_effect.js | 34 function load(o, o2) { argument 35 return 1 + (o.x, o2.x_tagged); 39 var o2 = {x_tagged:{}}; variable 40 o2.x_tagged = 1; 42 load({x:1}, o2); 43 load({x:1}, o2); 44 print(load(o, o2)); 46 o2.x_tagged = true; 47 print(load(o, o2));
|
/external/openssl/crypto/bn/asm/ |
D | sparcv9a-mont.pl | 291 ldx [%sp+$bias+$frame+16],%o2 306 add %o7,%o2,%o2 310 srlx %o2,16,%o7 312 add %o7,%o3,%o3 ! %o3.%o2[0..15].%o1[0..15].%o0[0..15] 317 !and %o2,$mask,%o2 319 !sllx %o2,32,%o2 322 !or %o2,%o0,%o0 378 ldx [%sp+$bias+$frame+16],%o2 393 add %o7,%o2,%o2 397 srlx %o2,16,%o7 [all …]
|
/external/libcxx/test/utilities/optional/optional.relops/ |
D | equal.pass.cpp | 42 constexpr O o2; // disengaged in main() local 48 static_assert ( o1 == o2 , "" ); in main() 53 static_assert ( o2 == o1 , "" ); in main() 54 static_assert ( o2 == o2 , "" ); in main() 55 static_assert ( !(o2 == o3), "" ); in main() 56 static_assert ( !(o2 == o4), "" ); in main() 57 static_assert ( !(o2 == o5), "" ); in main() 60 static_assert ( !(o3 == o2), "" ); in main() 66 static_assert ( !(o4 == o2), "" ); in main() 72 static_assert ( !(o5 == o2), "" ); in main()
|
D | less_than.pass.cpp | 39 constexpr O o2; // disengaged in main() local 45 static_assert ( !(o1 < o2), "" ); in main() 50 static_assert ( !(o2 < o1), "" ); in main() 51 static_assert ( !(o2 < o2), "" ); in main() 52 static_assert ( o2 < o3 , "" ); in main() 53 static_assert ( o2 < o4 , "" ); in main() 54 static_assert ( o2 < o5 , "" ); in main() 57 static_assert ( !(o3 < o2), "" ); in main() 63 static_assert ( !(o4 < o2), "" ); in main() 69 static_assert ( !(o5 < o2), "" ); in main()
|
/external/stlport/src/ |
D | sparc_atomic.s | 16 ld [%o0], %o2 ! Set the current value 19 cas [%o0], %o2, %o3 20 cmp %o2, %o3 ! Check whether successful 23 mov %o2, %o0 ! Set the new value 35 ld [%o0], %o2 ! set the current 36 add %o2, 0x1, %o3 ! Increment and store current 38 cas [%o0], %o2, %o3 39 cmp %o3, %o2 ! Check whether successful 57 ld [%o0], %o2 ! set the current 58 sub %o2, 0x1, %o3 ! decrement and store current [all …]
|
D | sparc_atomic64.s | 14 ldx [%o0], %o2 ! Set the current value 16 casx [%o0], %o2, %o3 ! Do the compare and swap 17 cmp %o2, %o3 ! Check whether successful 22 mov %o2, %o0 ! Set the new value 33 ldx [%o0], %o2 ! set the current 34 addx %o2, 0x1, %o3 ! Increment and store current 35 casx [%o0], %o2, %o3 ! Do the compare and swap 36 cmp %o3, %o2 ! Check whether successful 53 ldx [%o0], %o2 ! set the current 54 subx %o2, 0x1, %o3 ! decrement and store current [all …]
|
/external/chromium_org/third_party/boringssl/src/crypto/perlasm/ |
D | sparcv9_modes.pl | 84 ldx [$inp + 16], %o2 89 srlx %o2, $iright, %o2 90 or %o2, %o1, %o1 193 ldx [$inp + 16], %o2 198 srlx %o2, $iright, %o2 199 or %o2, %o1, %o1 299 ldx [$inp + 16], %o2 304 srlx %o2, $iright, %o2 305 or %o2, %o1, %o1 307 xor %g4, %o0, %o2 ! ^= rk[0] [all …]
|
/external/chromium_org/v8/test/webkit/fast/js/kde/ |
D | operators.js | 25 function nonSpeculativeNotInner(argument, o1, o2) argument 28 o1 + o2; 36 function nonSpeculativeLessInner(a, b, o1, o2) argument 39 o1 + o2; 47 function nonSpeculativeLessEqInner(a, b, o1, o2) argument 50 o1 + o2; 58 function nonSpeculativeGreaterInner(a, b, o1, o2) argument 61 o1 + o2; 69 function nonSpeculativeGreaterEqInner(a, b, o1, o2) argument 72 o1 + o2; [all …]
|
/external/llvm/utils/TableGen/ |
D | X86DisassemblerTables.cpp | 385 void DisassemblerTables::emitModRMDecision(raw_ostream &o1, raw_ostream &o2, in emitModRMDecision() argument 395 o2.indent(i2) << "{ /* ModRMDecision */" << "\n"; in emitModRMDecision() 398 o2.indent(i2) << stringForDecisionType(dt) << "," << "\n"; in emitModRMDecision() 399 o2.indent(i2) << 0 << " /* EmptyTable */\n"; in emitModRMDecision() 402 o2.indent(i2) << "}"; in emitModRMDecision() 451 o2.indent(i2) << "{ /* struct ModRMDecision */" << "\n"; in emitModRMDecision() 454 o2.indent(i2) << stringForDecisionType(dt) << "," << "\n"; in emitModRMDecision() 455 o2.indent(i2) << EntryNumber << " /* Table" << EntryNumber << " */\n"; in emitModRMDecision() 458 o2.indent(i2) << "}"; in emitModRMDecision() 487 void DisassemblerTables::emitOpcodeDecision(raw_ostream &o1, raw_ostream &o2, in emitOpcodeDecision() argument [all …]
|
/external/libcxx/test/utilities/optional/optional.comp_with_t/ |
D | less_than.pass.cpp | 43 constexpr O o2{1}; // engaged in main() local 47 static_assert ( !(o2 < T(1)), "" ); in main() 49 static_assert ( o2 < T(2) , "" ); in main() 50 static_assert ( o2 < T(val), "" ); in main() 54 static_assert ( !(T(1) < o2), "" ); in main() 56 static_assert ( !(T(2) < o2), "" ); in main() 57 static_assert (!(T(val) < o2), "" ); in main()
|
/external/chromium_org/third_party/mesa/src/src/mesa/sparc/ |
D | xform.S | 62 ld [%o2 + V4F_STRIDE], %o5 63 LDPTR [%o2 + V4F_START], %g1 65 ld [%o2 + V4F_COUNT], %g3 75 andn %g3, 1, %o2 106 cmp %o1, %o2 ! IEU1 134 cmp %o0, %o2 136 ld [%o2 + V4F_STRIDE], %o5 137 LDPTR [%o2 + V4F_START], %g1 139 ld [%o2 + V4F_COUNT], %g3 147 andn %g3, 1, %o2 [all …]
|
/external/mesa3d/src/mesa/sparc/ |
D | xform.S | 62 ld [%o2 + V4F_STRIDE], %o5 63 LDPTR [%o2 + V4F_START], %g1 65 ld [%o2 + V4F_COUNT], %g3 75 andn %g3, 1, %o2 106 cmp %o1, %o2 ! IEU1 134 cmp %o0, %o2 136 ld [%o2 + V4F_STRIDE], %o5 137 LDPTR [%o2 + V4F_START], %g1 139 ld [%o2 + V4F_COUNT], %g3 147 andn %g3, 1, %o2 [all …]
|
/external/chromium_org/v8/test/mjsunit/compiler/ |
D | inline-two.js | 44 var o2 = {}; variable 45 o2.size = function() { return 42; } 46 o2.g = function() { return this.size(); }; 47 for (var i = 0; i < 5; i++) TestInlineX(o2); 49 TestInlineX(o2); 50 TestInlineX({g: o2.g, size:o2.size});
|
/external/linux-tools-perf/perf-3.12.0/arch/sparc/lib/ |
D | memset.S | 74 mov %o2, %o1 76 cmp %o2, 3 80 cmp %o2, 2 86 sub %o2, 4, %o2 87 add %o1, %o2, %o1 89 sub %o0, %o2, %o0 96 andcc %o0, 3, %o2 111 andcc %o1, 0x78, %o2 121 orcc %o2, %g0, %g0 126 srl %o2, 1, %o3 [all …]
|