/external/llvm/test/MC/AArch64/ |
D | arm64-arithmetic-encoding.s | 8 adc w1, w2, w3 10 adcs w5, w4, w3 13 ; CHECK: adc w1, w2, w3 ; encoding: [0x41,0x00,0x03,0x1a] 15 ; CHECK: adcs w5, w4, w3 ; encoding: [0x85,0x00,0x03,0x3a] 18 sbc w1, w2, w3 20 sbcs w1, w2, w3 23 ; CHECK: sbc w1, w2, w3 ; encoding: [0x41,0x00,0x03,0x5a] 25 ; CHECK: sbcs w1, w2, w3 ; encoding: [0x41,0x00,0x03,0x7a] 32 add w3, w4, #1024 33 add w3, w4, #1024, lsl #0 [all …]
|
D | arm64-logical-encoding.s | 50 and w1, w2, w3 52 and w1, w2, w3, lsl #2 54 and w1, w2, w3, lsr #2 56 and w1, w2, w3, asr #2 58 and w1, w2, w3, ror #2 61 ; CHECK: and w1, w2, w3 ; encoding: [0x41,0x00,0x03,0x0a] 63 ; CHECK: and w1, w2, w3, lsl #2 ; encoding: [0x41,0x08,0x03,0x0a] 65 ; CHECK: and w1, w2, w3, lsr #2 ; encoding: [0x41,0x08,0x43,0x0a] 67 ; CHECK: and w1, w2, w3, asr #2 ; encoding: [0x41,0x08,0x83,0x0a] 69 ; CHECK: and w1, w2, w3, ror #2 ; encoding: [0x41,0x08,0xc3,0x0a] [all …]
|
D | basic-a64-diagnostics.s | 97 add w2, w3, #0x1, lsl #1 197 add w1, w2, w3, lsl #-1 198 add w1, w2, w3, lsl #32 199 add w1, w2, w3, lsr #-1 200 add w1, w2, w3, lsr #32 201 add w1, w2, w3, asr #-1 202 add w1, w2, w3, asr #32 246 adds w1, w2, w3, lsl #-1 247 adds w1, w2, w3, lsl #32 248 adds w1, w2, w3, lsr #-1 [all …]
|
D | arm64-memory.s | 19 ldrb w3, [x2, "+[Test method].var"@PAGEOFF] 23 ldrsh w3, [sp, #32] 54 ; CHECK: ldrb w3, [x2, "+[Test method].var"@PAGEOFF] ; encoding: [0x43,0bAAAAAA00,0b01AAAAAA,0x39] 58 ; CHECK: ldrsh w3, [sp, #32] ; encoding: [0xe3,0x43,0xc0,0x79] 120 ldursh w3, [sp, #32] 135 ; CHECK: ldursh w3, [sp, #32] ; encoding: [0xe3,0x03,0xc2,0x78] 173 ldtr w3, [x4, #16] 175 ldtrb w3, [x4, #16] 178 ldtrh w3, [x4, #16] 179 ldtrsh w3, [sp, #32] [all …]
|
D | cyclone-crc.s | 4 crc32h w3, w5, w6 6 crc32x w3, w5, x20 10 CHECK: crc32h w3, w5, w6 14 CHECK: crc32x w3, w5, x20 17 crc32ch w3, w5, w7 23 CHECK: crc32ch w3, w5, w7
|
D | basic-a64-instructions.s | 24 add sp, x2, w3, sxtw 42 add w0, w2, w3, sxtw 43 add w2, w3, w5, sxtx 70 sub sp, x2, w3, sxtw 87 sub wsp, w2, w3, sxtw 88 sub w2, w3, w5, sxtx 105 adds xzr, x2, w3, sxtw 122 adds wzr, w2, w3, sxtw 123 adds w2, w3, w5, sxtx 140 subs xzr, x2, w3, sxtw [all …]
|
/external/libxaac/decoder/armv8/ |
D | ixheaacd_fft32x32_ld2_armv8.s | 42 LDR w3, [x0, #32] //x_2 = x[8 ] 43 sxtw x3, w3 50 ADD w8, w3, w5 //xh0_1 = x_2 + x_6 51 SUB w9, w3, w5 //xl0_1 = x_2 - x_6 55 LDR w3, [x0, #36] //x_3 = x[8 +1] 56 sxtw x3, w3 63 ADD w12, w3, w5 //xh1_1 = x_3 + x_7 64 SUB w14, w3, w5 //xl1_1 = x_3 - x_7 67 ADD w3, w7, w14 //n10 = xl0_0 + xl1_1 71 STR w3, [x0, #32] //x[8 ] = n10 [all …]
|
/external/llvm/test/MC/Disassembler/AArch64/ |
D | arm64-arithmetic.txt | 12 # CHECK: adc w1, w2, w3 14 # CHECK: adcs w5, w4, w3 22 # CHECK: sbc w1, w2, w3 24 # CHECK: sbcs w1, w2, w3 34 # CHECK: add w3, w4, #1024 43 # CHECK: add w3, w4, #1024, lsl #12 54 # CHECK: adds w3, w4, #1024 55 # CHECK: adds w3, w4, #1024, lsl #12 66 # CHECK: sub w3, w4, #1024 67 # CHECK: sub w3, w4, #1024, lsl #12 [all …]
|
D | arm64-logical.txt | 60 # CHECK: and w1, w2, w3 62 # CHECK: and w1, w2, w3, lsl #2 64 # CHECK: and w1, w2, w3, lsr #2 66 # CHECK: and w1, w2, w3, asr #2 68 # CHECK: and w1, w2, w3, ror #2 82 # CHECK: ands w1, w2, w3 84 # CHECK: ands w1, w2, w3, lsl #2 86 # CHECK: ands w1, w2, w3, lsr #2 88 # CHECK: ands w1, w2, w3, asr #2 90 # CHECK: ands w1, w2, w3, ror #2 [all …]
|
/external/libxml2/result/schemas/ |
D | element-err_0_0.err | 1 ./test/schemas/element-err_0.xsd:8: element element: Schemas parser error : Element '{http://www.w3… 2 …err_0.xsd:14: element element: Schemas parser error : Element '{http://www.w3.org/2001/XMLSchema}e… 3 …err_0.xsd:14: element element: Schemas parser error : Element '{http://www.w3.org/2001/XMLSchema}e… 4 …err_0.xsd:14: element element: Schemas parser error : Element '{http://www.w3.org/2001/XMLSchema}e… 5 …err_0.xsd:14: element element: Schemas parser error : Element '{http://www.w3.org/2001/XMLSchema}e… 6 …err_0.xsd:14: element element: Schemas parser error : Element '{http://www.w3.org/2001/XMLSchema}e… 7 …err_0.xsd:14: element element: Schemas parser error : Element '{http://www.w3.org/2001/XMLSchema}e… 8 …err_0.xsd:14: element element: Schemas parser error : Element '{http://www.w3.org/2001/XMLSchema}e… 9 …err_0.xsd:22: element element: Schemas parser error : Element '{http://www.w3.org/2001/XMLSchema}e… 10 …err_0.xsd:22: element element: Schemas parser error : Element '{http://www.w3.org/2001/XMLSchema}e… [all …]
|
D | annot-err_0_0.err | 1 …r_0.xsd:7: element annotation: Schemas parser error : Element '{http://www.w3.org/2001/XMLSchema}a… 2 …r_0.xsd:7: element annotation: Schemas parser error : Element '{http://www.w3.org/2001/XMLSchema}a… 3 ./test/schemas/annot-err_0.xsd:10: element appinfo: Schemas parser error : Element '{http://www.w3.… 4 ./test/schemas/annot-err_0.xsd:10: element appinfo: Schemas parser error : Element '{http://www.w3.… 5 …xsd:14: element documentation: Schemas parser error : Element '{http://www.w3.org/2001/XMLSchema}d… 6 …xsd:14: element documentation: Schemas parser error : Element '{http://www.w3.org/2001/XMLSchema}d… 7 … Schemas parser error : Element '{http://www.w3.org/2001/XMLSchema}documentation', attribute '{htt…
|
D | src-element2-2_0_0.err | 1 …2-2_0.xsd:18: element element: Schemas parser error : Element '{http://www.w3.org/2001/XMLSchema}e… 2 …0.xsd:23: element complexType: Schemas parser error : Element '{http://www.w3.org/2001/XMLSchema}e… 3 …_0.xsd:29: element simpleType: Schemas parser error : Element '{http://www.w3.org/2001/XMLSchema}e… 4 …2-2_0.xsd:36: element element: Schemas parser error : Element '{http://www.w3.org/2001/XMLSchema}e… 5 …2-2_0.xsd:37: element element: Schemas parser error : Element '{http://www.w3.org/2001/XMLSchema}e… 6 …2-2_0.xsd:38: element element: Schemas parser error : Element '{http://www.w3.org/2001/XMLSchema}e… 7 …2-2_0.xsd:39: element element: Schemas parser error : Element '{http://www.w3.org/2001/XMLSchema}e… 8 …2-2_0.xsd:40: element element: Schemas parser error : Element '{http://www.w3.org/2001/XMLSchema}e… 9 …2-2_0.xsd:41: element element: Schemas parser error : Element '{http://www.w3.org/2001/XMLSchema}e…
|
/external/libxml2/result/noent/ |
D | dav4.sax2 | 3 …av/', 2, xmlns:D='http://www.ietf.org/standards/dav/', xmlns:Z='http://www.w3.com/standards/z39.50… 12 SAX.startElementNs(authors, Z, 'http://www.w3.com/standards/z39.50/', 0, 0, 0) 15 SAX.startElementNs(Author, Z, 'http://www.w3.com/standards/z39.50/', 0, 0, 0) 17 SAX.endElementNs(Author, Z, 'http://www.w3.com/standards/z39.50/') 20 SAX.startElementNs(Author, Z, 'http://www.w3.com/standards/z39.50/', 0, 0, 0) 22 SAX.endElementNs(Author, Z, 'http://www.w3.com/standards/z39.50/') 25 SAX.endElementNs(authors, Z, 'http://www.w3.com/standards/z39.50/') 40 SAX.startElementNs(Copyright-Owner, Z, 'http://www.w3.com/standards/z39.50/', 0, 0, 0) 41 SAX.endElementNs(Copyright-Owner, Z, 'http://www.w3.com/standards/z39.50/')
|
/external/libxml2/result/ |
D | dav4.sax2 | 3 …av/', 2, xmlns:D='http://www.ietf.org/standards/dav/', xmlns:Z='http://www.w3.com/standards/z39.50… 12 SAX.startElementNs(authors, Z, 'http://www.w3.com/standards/z39.50/', 0, 0, 0) 15 SAX.startElementNs(Author, Z, 'http://www.w3.com/standards/z39.50/', 0, 0, 0) 17 SAX.endElementNs(Author, Z, 'http://www.w3.com/standards/z39.50/') 20 SAX.startElementNs(Author, Z, 'http://www.w3.com/standards/z39.50/', 0, 0, 0) 22 SAX.endElementNs(Author, Z, 'http://www.w3.com/standards/z39.50/') 25 SAX.endElementNs(authors, Z, 'http://www.w3.com/standards/z39.50/') 40 SAX.startElementNs(Copyright-Owner, Z, 'http://www.w3.com/standards/z39.50/', 0, 0, 0) 41 SAX.endElementNs(Copyright-Owner, Z, 'http://www.w3.com/standards/z39.50/')
|
/external/libxml2/result/c14n/exc-without-comments/ |
D | test-2 | 1 <SignedInfo xmlns="http://www.w3.org/2000/09/xmldsig#"> 2 …<ds:CanonicalizationMethod xmlns:ds="http://www.w3.org/2000/09/xmldsig#" Algorithm="http://www.w3.… 3 <SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha1"></SignatureMethod> 6 <Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"></Transform> 8 <DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"></DigestMethod>
|
/external/capstone/suite/MC/Mips/ |
D | test_3r.s.cs | 14 0x79,0x8e,0x88,0xd0 = adds_u.b $w3, $w17, $w14 22 0x7a,0x03,0x85,0xd1 = asub_s.b $w23, $w16, $w3 42 0x7b,0x83,0xd7,0x50 = aver_u.b $w29, $w26, $w3 56 0x7b,0xdc,0x1e,0x8d = binsr.w $w26, $w3, $w28 60 0x7a,0xd3,0xd0,0xcd = bneg.w $w3, $w26, $w19 84 0x79,0xc9,0xc0,0xcf = clt_u.w $w3, $w24, $w9 86 0x7a,0x12,0x1f,0x52 = div_s.b $w29, $w3, $w18 102 0x79,0x7b,0xa8,0xd3 = dpadd_s.d $w3, $w21, $w27 127 0x7b,0x63,0xdf,0x94 = ilvev.d $w30, $w27, $w3 128 0x7a,0x15,0x1f,0x54 = ilvl.b $w29, $w3, $w21 [all …]
|
/external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.ownerless/ |
D | owner_less.pass.cpp | 63 const std::weak_ptr<int> w3(p3); in main() local 81 assert(cs(p1, w3) || cs(p3, w1)); in main() 96 assert(cs(w1, w3) || cs(w3, w1)); in main() 97 assert(cs(w3, w1) == cs(w3, w2)); in main() 102 assert(cs(w1, p3) || cs(w3, p1)); in main() 103 assert(cs(w3, p1) == cs(w3, p2)); in main()
|
/external/llvm/test/MC/Mips/msa/ |
D | test_3r.s | 15 # CHECK: adds_u.b $w3, $w17, $w14 # encoding: [0x79,0x8e,0x88,0xd0] 23 # CHECK: asub_s.b $w23, $w16, $w3 # encoding: [0x7a,0x03,0x85,0xd1] 43 # CHECK: aver_u.b $w29, $w26, $w3 # encoding: [0x7b,0x83,0xd7,0x50] 57 # CHECK: binsr.w $w26, $w3, $w28 # encoding: [0x7b,0xdc,0x1e,0x8d] 61 # CHECK: bneg.w $w3, $w26, $w19 # encoding: [0x7a,0xd3,0xd0,0xcd] 85 # CHECK: clt_u.w $w3, $w24, $w9 # encoding: [0x79,0xc9,0xc0,0xcf] 87 # CHECK: div_s.b $w29, $w3, $w18 # encoding: [0x7a,0x12,0x1f,0x52] 103 # CHECK: dpadd_s.d $w3, $w21, $w27 # encoding: [0x79,0x7b,0xa8,0xd3] 128 # CHECK: ilvev.d $w30, $w27, $w3 # encoding: [0x7b,0x63,0xdf,0x94] 129 # CHECK: ilvl.b $w29, $w3, $w21 # encoding: [0x7a,0x15,0x1f,0x54] [all …]
|
D | invalid-64.s | 16 insve.d $w3[-1], $w18[0] # CHECK: :[[@LINE]]:17: error: expected 1-bit unsigned immediate 17 insve.d $w3[2], $w18[0] # CHECK: :[[@LINE]]:17: error: expected 1-bit unsigned immediate 21 insve.d $w3[0], $w18[1] # CHECK: :[[@LINE]]:26: error: expected '0' 42 shf.w $w14, $w3, -1 # CHECK: :[[@LINE]]:22: error: expected 8-bit unsigned immediate 59 srlri.b $w18, $w3, -1 # CHECK: :[[@LINE]]:24: error: expected 3-bit unsigned immediate 60 srlri.b $w18, $w3, 8 # CHECK: :[[@LINE]]:24: error: expected 3-bit unsigned immediate 61 srlri.h $w18, $w3, -1 # CHECK: :[[@LINE]]:24: error: expected 4-bit unsigned immediate 62 srlri.h $w18, $w3, 16 # CHECK: :[[@LINE]]:24: error: expected 4-bit unsigned immediate 63 srlri.w $w18, $w3, -1 # CHECK: :[[@LINE]]:24: error: expected 5-bit unsigned immediate 64 srlri.w $w18, $w3, 32 # CHECK: :[[@LINE]]:24: error: expected 5-bit unsigned immediate [all …]
|
D | test_cbranch.s | 9 #CHECK: bnz.d $w3, -128 # encoding: [0x47,0xe3,0xff,0xe0] 19 #CHECK: bnz.d $w3, SYMBOL3 # encoding: [0x47,0xe3,A,A] 35 #CHECK: bz.d $w3, -1024 # encoding: [0x47,0x63,0xff,0x00] 46 #CHECK: bz.d $w3, SYMBOL3 # encoding: [0x47,0x63,A,A] 59 bnz.d $w3, -128 63 bnz.d $w3, SYMBOL3 71 bz.d $w3, -1024 75 bz.d $w3, SYMBOL3
|
/external/skqp/tools/svg/ |
D | svgs.txt | 2 https://dev.w3.org/SVG/tools/svgweb/samples/svg-files/car.svg 3 https://dev.w3.org/SVG/tools/svgweb/samples/svg-files/rg1024_green_grapes.svg 4 https://dev.w3.org/SVG/tools/svgweb/samples/svg-files/gallardo.svg 5 https://dev.w3.org/SVG/tools/svgweb/samples/svg-files/cartman.svg 6 https://dev.w3.org/SVG/tools/svgweb/samples/svg-files/bzrfeed.svg 7 https://dev.w3.org/SVG/tools/svgweb/samples/svg-files/android.svg
|
/external/skia/tools/svg/ |
D | svgs.txt | 2 https://dev.w3.org/SVG/tools/svgweb/samples/svg-files/car.svg 3 https://dev.w3.org/SVG/tools/svgweb/samples/svg-files/rg1024_green_grapes.svg 4 https://dev.w3.org/SVG/tools/svgweb/samples/svg-files/gallardo.svg 5 https://dev.w3.org/SVG/tools/svgweb/samples/svg-files/cartman.svg 6 https://dev.w3.org/SVG/tools/svgweb/samples/svg-files/bzrfeed.svg 7 https://dev.w3.org/SVG/tools/svgweb/samples/svg-files/android.svg
|
/external/python/cpython2/Doc/library/ |
D | httplib.rst | 231 | | | <http://www.w3.org/Protocols/rfc2616/rfc2616… 235 | | | <http://www.w3.org/Protocols/rfc2616/rfc2616… 242 | | | <http://www.w3.org/Protocols/rfc2616/rfc2616… 246 | | | <http://www.w3.org/Protocols/rfc2616/rfc2616… 250 | | | <http://www.w3.org/Protocols/rfc2616/rfc2616… 254 | | | <http://www.w3.org/Protocols/rfc2616/rfc2616… 258 | | | <http://www.w3.org/Protocols/rfc2616/rfc2616… 262 | | | <http://www.w3.org/Protocols/rfc2616/rfc2616… 266 | | | <http://www.w3.org/Protocols/rfc2616/rfc2616… 276 | | | <http://www.w3.org/Protocols/rfc2616/rfc2616… [all …]
|
/external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.obs/ |
D | owner_before_weak_ptr.pass.cpp | 27 const std::weak_ptr<int> w3(p3); in main() local 30 assert(w1.owner_before(w3) || w3.owner_before(w1)); in main() 31 assert(w3.owner_before(w1) == w3.owner_before(w2)); in main()
|
/external/capstone/suite/MC/AArch64/ |
D | basic-a64-instructions.s.cs | 8 0x5f,0xc0,0x23,0x8b = add sp, x2, w3, sxtw 16 0x40,0xc0,0x23,0x0b = add w0, w2, w3, sxtw 17 0x62,0xe0,0x25,0x0b = add w2, w3, w5, sxtx 28 0x5f,0xc0,0x23,0xcb = sub sp, x2, w3, sxtw 36 0x5f,0xc0,0x23,0x4b = sub wsp, w2, w3, sxtw 37 0x62,0xe0,0x25,0x4b = sub w2, w3, w5, sxtx 44 0x5f,0xc0,0x23,0xab = adds xzr, x2, w3, sxtw 52 0x5f,0xc0,0x23,0x2b = adds wzr, w2, w3, sxtw 53 0x62,0xe0,0x25,0x2b = adds w2, w3, w5, sxtx 60 0x5f,0xc0,0x23,0xeb = subs xzr, x2, w3, sxtw [all …]
|