/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() 35 } else if (isArray(o1)) { 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 [all …]
|
/external/openssl/crypto/bn/asm/ |
D | sparcv9a-mont.pl | 149 sll $num,2,%o1 150 add %o1,$num,%o1 ! %o1=num*5 151 sub %o0,%o1,%o0 182 ld [%o4+0],%o1 185 or %g5,%o1,%o1 189 mulx %o1,%o0,%o0 ! ap[0]*bp[0] 289 ldx [%sp+$bias+$frame+8],%o1 299 add %o7,%o1,%o1 303 srlx %o1,16,%o7 312 add %o7,%o3,%o3 ! %o3.%o2[0..15].%o1[0..15].%o0[0..15] [all …]
|
D | sparcv8.S | 50 ld [%o1],%g2 61 ld [%o1+4],%g3 71 ld [%o1+8],%g2 82 ld [%o1+12],%g3 84 inc 16,%o1 103 ld [%o1],%g2 107 ld [%o1],%g2 125 ld [%o1+4],%g2 137 ld [%o1+8],%g2 163 ld [%o1],%g2 [all …]
|
D | sparcv8plus.S | 180 lduw [%o1],%g2 195 lduw [%o1+4],%g3 204 lduw [%o1+8],%g2 213 lduw [%o1+12],%g3 216 inc 16,%o1 230 lduw [%o1],%g2 233 lduw [%o1],%g2 248 lduw [%o1+4],%g2 258 lduw [%o1+8],%g2 282 lduw [%o1],%g2 [all …]
|
/external/openssl/crypto/ |
D | sparccpuid.S | 72 clr %o1 147 clr %o1 208 1: add %o1,%o2,%o3 213 add %o1,%o2,%o0 ! OpenSSL expects the new value 228 .word 0x93323020 !srlx %o0,32,%o1 231 xor %o1,%o1,%o1 239 add %sp,BIAS+2,%o1 241 .word 0xc19a5a40 !ldda [%o1]ASI_FP16_P,%f0 266 .word 0x93410000 !rd %tick,%o1 278 sub %o1,%o0,%o0 [all …]
|
/external/skia/third_party/glu/libtess/ |
D | geom.c | 210 void __gl_edgeIntersect( GLUvertex *o1, GLUvertex *d1, in __gl_edgeIntersect() argument 228 if( ! VertLeq( o1, d1 )) { Swap( o1, d1 ); } in __gl_edgeIntersect() 230 if( ! VertLeq( o1, o2 )) { Swap( o1, o2 ); Swap( d1, d2 ); } in __gl_edgeIntersect() 237 z1 = EdgeEval( o1, o2, d1 ); in __gl_edgeIntersect() 243 z1 = EdgeSign( o1, o2, d1 ); in __gl_edgeIntersect() 244 z2 = -EdgeSign( o1, d2, d1 ); in __gl_edgeIntersect() 251 if( ! TransLeq( o1, d1 )) { Swap( o1, d1 ); } in __gl_edgeIntersect() 253 if( ! TransLeq( o1, o2 )) { Swap( o1, o2 ); Swap( d1, d2 ); } in __gl_edgeIntersect() 260 z1 = TransEval( o1, o2, d1 ); in __gl_edgeIntersect() 266 z1 = TransSign( o1, o2, d1 ); in __gl_edgeIntersect() [all …]
|
/external/llvm/test/CodeGen/Generic/ |
D | negintconst.ll | 10 ; setx .G_fmtArg_1, %o1, %o0 11 ; setuw 1, %o1 ! i = 1 15 ; add %o1, %g0, %o1 17 ; mulx %o1, %o3, %o1 ! ERROR: 0xffffffff; should be -1 18 ; add %o1, 3, %o1 ! ERROR: 0x100000002; should be 0x2 19 ; mulx %o1, 12, %o3 !
|
/external/llvm/utils/TableGen/ |
D | X86DisassemblerTables.cpp | 296 void DisassemblerTables::emitModRMDecision(raw_ostream &o1, raw_ostream &o2, in emitModRMDecision() argument 316 o1 << "/* Table" << sTableNumber << " */\n"; in emitModRMDecision() 323 emitOneID(o1, i1, decision.instructionIDs[0], true); in emitModRMDecision() 326 emitOneID(o1, i1, decision.instructionIDs[0x00], true); // mod = 0b00 in emitModRMDecision() 327 emitOneID(o1, i1, decision.instructionIDs[0xc0], true); // mod = 0b11 in emitModRMDecision() 331 emitOneID(o1, i1, decision.instructionIDs[index], true); in emitModRMDecision() 333 emitOneID(o1, i1, decision.instructionIDs[index], true); in emitModRMDecision() 337 emitOneID(o1, i1, decision.instructionIDs[index], true); in emitModRMDecision() 372 void DisassemblerTables::emitOpcodeDecision(raw_ostream &o1, raw_ostream &o2, in emitOpcodeDecision() argument 385 emitModRMDecision(o1, o2, i1, i2, decision.modRMDecisions[index]); in emitOpcodeDecision() [all …]
|
D | X86DisassemblerTables.h | 98 void emitModRMDecision(raw_ostream &o1, 127 void emitOpcodeDecision(raw_ostream &o1, 163 void emitContextDecision(raw_ostream &o1, 225 void emitContextDecisions(raw_ostream &o1,
|
/external/v8/test/mjsunit/compiler/ |
D | inline-param.js | 45 var o1 = {}; variable 46 o1.f = function(o) { return o.x; }; 47 for (var i = 0; i < 5; i++) TestInlineOneParam(o1, obj); 49 TestInlineOneParam(o1, obj); 50 TestInlineOneParam({f: o1.f}, {x:42});
|
D | pic.js | 51 var o1 = { x: 0, y: 1 }; variable 54 o1.f = o2.f = o3.f = function() { return 99; } 59 Test(o1); 64 Test(o1);
|
D | simple-inlining.js | 44 var o1 = {}; variable 45 o1.f = function() { return 42; }; 46 for (var i = 0; i < 5; i++) TestInlineConstant(o1); 48 TestInlineConstant(o1); 49 TestInlineConstant({f: o1.f});
|
/external/kernel-headers/original/linux/sunrpc/ |
D | gss_asn1.h | 64 #define g_OID_equal(o1,o2) \ argument 65 (((o1)->len == (o2)->len) && \ 66 (memcmp((o1)->data,(o2)->data,(int) (o1)->len) == 0))
|
/external/clang/test/Index/ |
D | annotate-literals.m | 32 void test_literals(id k1, id o1, id k2, id o2, id k3) { 33 id objects = @[ o1, o2 ]; 34 id dict = @{ k1 : o1, 47 // CHECK-LITERALS: Identifier: "o1" [33:19 - 33:21] DeclRefExpr=o1:32:30 59 // CHECK-LITERALS: Identifier: "o1" [34:21 - 34:23] DeclRefExpr=o1:32:30
|
/external/v8/src/ |
D | uri.js | 111 var o1 = octets[1]; 114 if ((o1 < 0x80) || (o1 > 0xbf)) { 117 var b = o1 & 0x3f; 126 if ((o1 < 0x80) || (o1 > 0xbf)) { 129 var b = o1 & 0x3f; 142 if ((o1 < 0x80) || (o1 > 0xbf)) { 145 var b = (o1 & 0x3f);
|
/external/v8/test/mjsunit/regress/ |
D | regress-crbug-3867.js | 69 var o1 = {s1: 0, s2: 0, s3: 0} variable 70 o1.s0 = 0; 71 o1.s4 = 0; 72 assertArrayEquals(["s1", "s2", "s3", "s0", "s4"], props(o1));
|
D | regress-780423.js | 35 var o1 = Class.create(); variable 38 assertTrue(o1 !== o2, "different functions"); 39 assertTrue(o1.prototype !== o2.prototype, "different protos");
|
/external/clang/test/CodeGenObjCXX/ |
D | block-var-layout.mm | 9 id o1; field 87 x(s2.o1); 96 id o1; 104 id o1; 112 id o1; 124 x(s2.ui.o1); 125 x(u2.o1);
|
/external/junit/src/org/junit/runner/manipulation/ |
D | Sorter.java | 18 public int compare(Description o1, Description o2) { 43 public int compare(Description o1, Description o2) { in compare() argument 44 return fComparator.compare(o1, o2); in compare()
|
/external/v8/test/mjsunit/harmony/ |
D | proxies.js | 1014 TestComparison(function(o1, o2) { return o1 == o2 }) argument 1015 TestComparison(function(o1, o2) { return o1 === o2 }) argument 1016 TestComparison(function(o1, o2) { return !(o1 != o2) }) argument 1017 TestComparison(function(o1, o2) { return !(o1 !== o2) }) argument 1441 var o1 = {} 1443 var p2 = Proxy.create({}, o1) 1448 f0.prototype = o1 1456 assertTrue(o1 instanceof Object) 1457 assertFalse(o1 instanceof f0) 1458 assertFalse(o1 instanceof f1) [all …]
|
/external/clang/test/CodeGenObjC/ |
D | block-var-layout.m | 6 id o1; field 97 x(s2.o1); 106 id o1; 114 id o1; 122 id o1; 134 x(s2.ui.o1); 135 x(u2.o1);
|
/external/javassist/src/main/javassist/ |
D | SerialVersionUID.java | 109 public int compare(Object o1, Object o2) { in calculateDefault() 110 CtField field1 = (CtField)o1; in calculateDefault() 137 public int compare(Object o1, Object o2) { in calculateDefault() 138 CtConstructor c1 = (CtConstructor)o1; in calculateDefault() 158 public int compare(Object o1, Object o2) { in calculateDefault() 159 CtMethod m1 = (CtMethod)o1; in calculateDefault()
|
/external/v8/test/mjsunit/ |
D | object-toprimitive.js | 32 var o1 = { toString: function() { return 42; }, variable 34 var n1 = Number(o1); 35 var s1 = String(o1);
|
/external/jmonkeyengine/engine/src/core/com/jme3/renderer/queue/ |
D | OpaqueComparator.java | 73 public int compare(Geometry o1, Geometry o2) { in compare() argument 74 Material m1 = o1.getMaterial(); in compare() 82 float d1 = distanceToCam(o1); in compare()
|
/external/v8/test/message/regress/ |
D | regress-1527.js | 28 var o1 = {foo: 'bar'}; variable 31 2: o1.foo,
|