/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 | 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 …]
|
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 …]
|
/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/llvm/utils/TableGen/ |
D | X86DisassemblerTables.cpp | 286 void DisassemblerTables::emitModRMDecision(raw_ostream &o1, in emitModRMDecision() argument 310 o1.indent(i1) << "static const InstrUID modRMTable" << thisTableNumber; in emitModRMDecision() 316 o1 << "[1]"; in emitModRMDecision() 319 o1 << "[2]"; in emitModRMDecision() 322 o1 << "[256]"; in emitModRMDecision() 326 o1 << " = {" << "\n"; in emitModRMDecision() 333 emitOneID(o1, i1, decision.instructionIDs[0], false); in emitModRMDecision() 336 emitOneID(o1, i1, decision.instructionIDs[0x00], true); // mod = 0b00 in emitModRMDecision() 337 emitOneID(o1, i1, decision.instructionIDs[0xc0], false); // mod = 0b11 in emitModRMDecision() 341 emitOneID(o1, i1, decision.instructionIDs[index], index < 255); in emitModRMDecision() [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/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/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/v8/src/ |
D | uri.js | 111 var o1 = octets[1]; 114 if ((o1 < 0x80) || (o1 > 0xbf)) 116 var b = o1 & 0x3f; 124 if ((o1 < 0x80) || (o1 > 0xbf)) 126 var b = o1 & 0x3f; 137 if ((o1 < 0x80) || (o1 > 0xbf)) 139 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/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/clang/test/SemaCXX/ |
D | nullptr.cpp | 8 int o1(char*); 9 void o1(uintptr_t); 53 int t = o1(nullptr); in f() 54 t = o1(null); in f()
|
/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);
|
D | proto.js | 28 var o1 = { x: 12 }; variable 33 assertTrue(o1.__proto__ === o2.__proto__);
|
/external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/ |
D | crypto-aes.js | 293 var o1, o2, o3, h1, h2, h3, h4, bits, i=0, enc=''; 298 o1 = str.charCodeAt(i++); 302 bits = o1<<16 | o2<<8 | o3; 321 var o1, o2, o3, h1, h2, h3, h4, bits, i=0, enc=''; 331 o1 = bits>>16 & 0xff; 335 if (h3 == 64) enc += String.fromCharCode(o1); 336 else if (h4 == 64) enc += String.fromCharCode(o1, o2); 337 else enc += String.fromCharCode(o1, o2, o3);
|
/external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/ |
D | crypto-aes.js | 293 var o1, o2, o3, h1, h2, h3, h4, bits, i=0, enc=''; 298 o1 = str.charCodeAt(i++); 302 bits = o1<<16 | o2<<8 | o3; 321 var o1, o2, o3, h1, h2, h3, h4, bits, i=0, enc=''; 331 o1 = bits>>16 & 0xff; 335 if (h3 == 64) enc += String.fromCharCode(o1); 336 else if (h4 == 64) enc += String.fromCharCode(o1, o2); 337 else enc += String.fromCharCode(o1, o2, o3);
|
/external/openssl/crypto/aes/asm/ |
D | aes-sparcv9.pl | 41 $acc2="%o1"; 515 or %o0,%o1,%g1 521 ld [%i0+4],%o1 531 st %o1,[%i1+4] 563 or %l4,%l6,%o1 596 srl %o1,24,%l4 599 srl %o1,16,%l5 601 srl %o1,8,%l6 605 stb %o1,[%i1+7] 1061 or %o0,%o1,%g1 [all …]
|
/external/apache-http/src/org/apache/commons/codec/ |
D | StringEncoderComparator.java | 68 public int compare(Object o1, Object o2) { in compare() argument 73 Comparable s1 = (Comparable) ((Encoder) this.stringEncoder).encode(o1); in compare()
|
/external/v8/test/mjsunit/bugs/ |
D | bug-1344252.js | 69 var o1 = new Object(); variable 72 o1.z = 32;
|