Home
last modified time | relevance | path

Searched refs:w3 (Results 1 – 25 of 2717) sorted by relevance

12345678910>>...109

/external/llvm/test/CodeGen/AArch64/
Dlogical_shifted_reg.s12 and w3, w1, w2
14 str w3, [x0, #:lo12:var1_32]
15 bic w3, w1, w2
17 str w3, [x0, #:lo12:var1_32]
18 orr w3, w1, w2
20 str w3, [x0, #:lo12:var1_32]
21 orn w3, w1, w2
23 str w3, [x0, #:lo12:var1_32]
24 eor w3, w1, w2
26 str w3, [x0, #:lo12:var1_32]
[all …]
/external/dropbear/libtommath/
Dbn_mp_toom_sqr.c22 mp_int w0, w1, w2, w3, w4, tmp1, a0, a1, a2; in mp_toom_sqr() local
26 if ((res = mp_init_multi(&w0, &w1, &w2, &w3, &w4, &a0, &a1, &a2, &tmp1, NULL)) != MP_OKAY) { in mp_toom_sqr()
91 if ((res = mp_sqr(&tmp1, &w3)) != MP_OKAY) { in mp_toom_sqr()
123 if ((res = mp_sub(&w3, &w0, &w3)) != MP_OKAY) { in mp_toom_sqr()
131 if ((res = mp_div_2(&w3, &w3)) != MP_OKAY) { in mp_toom_sqr()
146 if ((res = mp_sub(&w3, &w2, &w3)) != MP_OKAY) { in mp_toom_sqr()
160 if ((res = mp_sub(&w3, &tmp1, &w3)) != MP_OKAY) { in mp_toom_sqr()
170 if ((res = mp_sub(&w2, &w3, &w2)) != MP_OKAY) { in mp_toom_sqr()
178 if ((res = mp_sub(&w3, &w2, &w3)) != MP_OKAY) { in mp_toom_sqr()
186 if ((res = mp_div_3(&w3, &w3, NULL)) != MP_OKAY) { in mp_toom_sqr()
[all …]
Dbn_mp_toom_mul.c27 mp_int w0, w1, w2, w3, w4, tmp1, tmp2, a0, a1, a2, b0, b1, b2; in mp_toom_mul() local
31 if ((res = mp_init_multi(&w0, &w1, &w2, &w3, &w4, in mp_toom_mul()
140 if ((res = mp_mul(&tmp1, &tmp2, &w3)) != MP_OKAY) { in mp_toom_mul()
179 if ((res = mp_sub(&w3, &w0, &w3)) != MP_OKAY) { in mp_toom_mul()
187 if ((res = mp_div_2(&w3, &w3)) != MP_OKAY) { in mp_toom_mul()
202 if ((res = mp_sub(&w3, &w2, &w3)) != MP_OKAY) { in mp_toom_mul()
216 if ((res = mp_sub(&w3, &tmp1, &w3)) != MP_OKAY) { in mp_toom_mul()
226 if ((res = mp_sub(&w2, &w3, &w2)) != MP_OKAY) { in mp_toom_mul()
234 if ((res = mp_sub(&w3, &w2, &w3)) != MP_OKAY) { in mp_toom_mul()
242 if ((res = mp_div_3(&w3, &w3, NULL)) != MP_OKAY) { in mp_toom_mul()
[all …]
/external/openfst/src/test/
Dweight-tester.h44 Weight w3 = weight_generator_(); variable
49 VLOG(1) << "w3 = " << w3;
51 TestSemiring(w1, w2, w3);
55 TestEquality(w1, w2, w3);
66 void TestSemiring(Weight w1, Weight w2, Weight w3) { in TestSemiring() argument
72 CHECK(ApproxEqual(Plus(w1, Plus(w2, w3)), Plus(Plus(w1, w2), w3))); in TestSemiring()
73 CHECK(ApproxEqual(Times(w1, Times(w2, w3)), Times(Times(w1, w2), w3))); in TestSemiring()
108 CHECK(ApproxEqual(Times(w1, Plus(w2, w3)), in TestSemiring()
109 Plus(Times(w1, w2), Times(w1, w3)))); in TestSemiring()
111 CHECK(ApproxEqual(Times(Plus(w1, w2), w3), in TestSemiring()
[all …]
/external/llvm/test/MC/AArch64/
Dbasic-a64-diagnostics.s97 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 …]
Dbasic-a64-instructions.s24 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/dropbear/libtomcrypt/src/ciphers/
Dskipjack.c93 w4 = w3; w3 = w2; \
98 tmp1 = w4; w4 = w3; \
99 w3 = w1 ^ w2 ^ x; \
105 w2 = w3; w3 = w4; w4 = tmp;
109 w2 = tmp ^ w3 ^ x; \
110 w3 = w4; w4 = w1; w1 = tmp;
149 unsigned w1,w2,w3,w4,tmp,tmp1; in _skipjack_ecb_encrypt() local
159 w3 = ((unsigned)pt[4]<<8)|pt[5]; in _skipjack_ecb_encrypt()
185 ct[4] = (w3>>8)&255; ct[5] = w3&255; in _skipjack_ecb_encrypt()
213 unsigned w1,w2,w3,w4,tmp; in _skipjack_ecb_decrypt() local
[all …]
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DDTMDocumentImpl.java206 private final int appendNode(int w0, int w1, int w2, int w3) in appendNode() argument
209 int slotnumber = nodes.appendSlot(w0, w1, w2, w3); in appendNode()
211 if (DEBUG) System.out.println(slotnumber+": "+w0+" "+w1+" "+w2+" "+w3); in appendNode()
2101 int w3 = contentLength; in appendTextChild() local
2103 int ourslot = appendNode(w0, w1, w2, w3); in appendTextChild()
2124 int w3 = contentLength; in appendComment() local
2126 int ourslot = appendNode(w0, w1, w2, w3); in appendComment()
2160 int w3 = localNameIndex | prefixIndex<<16; in appendStartElement() local
2161 /**/System.out.println("set w3="+w3+" "+(w3>>16)+"/"+(w3&0xffff)); in appendStartElement()
2164 int ourslot = appendNode(w0, w1, w2, w3); in appendStartElement()
[all …]
DChunkedIntArray.java71 int appendSlot(int w0, int w1, int w2, int w3) in appendSlot() argument
98 chunk[slotpos+3] = w3; in appendSlot()
221 void writeSlot(int position, int w0, int w1, int w2, int w3) in writeSlot() argument
234 chunk[slotpos + 3] = w3; in writeSlot()
/external/webkit/Source/WebCore/manual-tests/
Dsvg-text-selection.svg1 <svg xmlns="http://www.w3.org/2000/svg"
2 xmlns:xlink="http://www.w3.org/1999/xlink"
3 xmlns:xhtml="http://www.w3.org/1999/xhtml">
Dsvg-animated-gifs.svg1 <svg xmlns="http://www.w3.org/2000/svg"
2 xmlns:xlink="http://www.w3.org/1999/xlink"
3 xmlns:xhtml="http://www.w3.org/1999/xhtml">
Dsvg-link-hover-use.svg1 <svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'>
Dsvg-repaint-foreignObject.svg1 <svg xmlns="http://www.w3.org/2000/svg"
2 xmlns:xlink="http://www.w3.org/1999/xlink"
3 xmlns:xhtml="http://www.w3.org/1999/xhtml">
Dsvg-repaint-group.svg1 <svg xmlns="http://www.w3.org/2000/svg"
2 xmlns:xlink="http://www.w3.org/1999/xlink"
3 xmlns:xhtml="http://www.w3.org/1999/xhtml">
Dsvg-repaint-path.svg1 <svg xmlns="http://www.w3.org/2000/svg"
2 xmlns:xlink="http://www.w3.org/1999/xlink"
3 xmlns:xhtml="http://www.w3.org/1999/xhtml">
Dsvg-repaint-image.svg1 <svg xmlns="http://www.w3.org/2000/svg"
2 xmlns:xlink="http://www.w3.org/1999/xlink"
3 xmlns:xhtml="http://www.w3.org/1999/xhtml">
Dsvg-links.svg1 <svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'>
Dsvg-cursor-changes.svg1 … height="100%" viewBox="0 0 300 600" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3
22 <circle onclick="document.getElementById('mycursor4').setAttributeNS('http://www.w3.org/1999/xlink'…
/external/chromium/net/websockets/
Dwebsocket_throttle_unittest.cc125 scoped_refptr<WebSocketJob> w3(new WebSocketJob(&delegate)); in TEST_F() local
127 new SocketStream(GURL("ws://host3/"), w3.get())); in TEST_F()
128 w3->InitSocketStream(s3.get()); in TEST_F()
135 EXPECT_EQ(ERR_IO_PENDING, w3->OnStartOpenConnection(s3, &callback_s3)); in TEST_F()
274 w3->OnClose(s3.get()); in TEST_F()
/external/clang/test/Analysis/
Dctor-inlining.mm215 PODWrapper w3 = move(w); // no-warning
216 clang_analyzer_eval(w3.p.y == 1); // expected-warning{{TRUE}}
219 clang_analyzer_eval(PODWrapper(w3).p.y == 1); // expected-warning{{TRUE}}
264 PODWrapper w3;
265 w3 = move(w); // no-warning
266 clang_analyzer_eval(w3.p.y == 1); // expected-warning{{TRUE}}
Darray-struct-region.c314 ShortStringWrapper w3 = w2; in testArrayStructCopyNested() local
315 clang_analyzer_eval(w3.str.data[0] == 'a'); // expected-warning{{TRUE}} in testArrayStructCopyNested()
316 clang_analyzer_eval(w3.str.data[1] == 'b'); // expected-warning{{TRUE}} in testArrayStructCopyNested()
317 clang_analyzer_eval(w3.str.data[2] == 'c'); // expected-warning{{TRUE}} in testArrayStructCopyNested()
318 clang_analyzer_eval(w3.length == 0); // expected-warning{{TRUE}} in testArrayStructCopyNested()
/external/harfbuzz_ng/
Dharfbuzz.doap1 <Project xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
2 xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
/external/webkit/LayoutTests/fast/dom/Node/
Dinitial-values-expected.txt65 FAIL doc.namespaceURI should be http://www.w3.org/1999/xhtml (of type string). Was null (of type ob…
79 FAIL element.namespaceURI should be null (of type object). Was http://www.w3.org/1999/xhtml (of typ…
86 PASS element.namespaceURI is 'http://www.w3.org/1999/xhtml'
93 PASS element.namespaceURI is 'http://www.w3.org/2000/svg'
107 PASS element.namespaceURI is 'http://www.w3.org/1999/xhtml'
114 FAIL element.namespaceURI should be null (of type object). Was http://www.w3.org/1999/xhtml (of typ…
121 PASS element.namespaceURI is 'http://www.w3.org/1999/xhtml'
/external/smack/src/org/xbill/DNS/
DLOCRecord.java18 private static NumberFormat w2, w3; field in LOCRecord
27 w3 = new DecimalFormat();
28 w3.setMinimumIntegerDigits(3);
205 renderFixedPoint(sb, w3, temp, 1000); /* seconds */ in positionToString()
/external/webkit/LayoutTests/fast/dom/DOMImplementation/
DcreateDocument-namespace-err-expected.txt44 PASS createDocument("http://www.w3.org/2000/xmlns/", "x:test", null); binding namespace namespace t…
45 PASS createDocument("http://www.w3.org/2000/xmlns/", "xmlns:test", null)
46 PASS createDocument("http://www.w3.org/XML/1998/namespace", "xml:test", null)
47 PASS createDocument("http://www.w3.org/XML/1998/namespace", "x:test", null)

12345678910>>...109