Home
last modified time | relevance | path

Searched refs:w0 (Results 1 – 25 of 70) sorted by relevance

123

/external/llvm/test/MC/AArch64/
Dmapping-across-sections.s4 add w0, w0, w0
8 add w0, w0, w0
16 add w0, w0, w0
Dmapping-within-section.s5 add w0, w0, w0
Delf-reloc-ldstunsimm.s4 ldrb w0, [sp, #:lo12:some_label]
5 ldrh w0, [sp, #:lo12:some_label]
6 ldr w0, [sp, #:lo12:some_label]
Dbasic-a64-instructions.s42 add w0, w2, w3, sxtw
297 sub w0, wsp, #4077
601 cmn w0, w3
657 cmp w0, w3
715 neg wzr, w0
771 negs wzr, w0
831 adc w20, w0, wzr
849 adcs w20, w0, wzr
867 sbc w20, w0, wzr
885 sbcs w20, w0, wzr
[all …]
/external/freetype/src/autofit/
Dafwarp.c259 warper->w0 = warper->x2 - warper->x1; in af_warper_compute()
261 if ( warper->w0 <= 64 ) in af_warper_compute()
277 if ( warper->w0 <= 128 ) in af_warper_compute()
280 if ( warper->w0 <= 96 ) in af_warper_compute()
284 if ( warper->wmin < warper->w0 - margin ) in af_warper_compute()
285 warper->wmin = warper->w0 - margin; in af_warper_compute()
287 if ( warper->wmax > warper->w0 + margin ) in af_warper_compute()
288 warper->wmax = warper->w0 + margin; in af_warper_compute()
291 if ( warper->wmin < warper->w0 * 3 / 4 ) in af_warper_compute()
292 warper->wmin = warper->w0 * 3 / 4; in af_warper_compute()
[all …]
/external/llvm/test/CodeGen/AArch64/
Datomic-ops.ll17 ; w0 below is a reasonable guess but could change: it certainly comes into the
19 ; CHECK-NEXT: add [[NEW:w[0-9]+]], w[[OLD]], w0
37 ; w0 below is a reasonable guess but could change: it certainly comes into the
39 ; CHECK-NEXT: add [[NEW:w[0-9]+]], w[[OLD]], w0
57 ; w0 below is a reasonable guess but could change: it certainly comes into the
59 ; CHECK-NEXT: add [[NEW:w[0-9]+]], w[[OLD]], w0
97 ; w0 below is a reasonable guess but could change: it certainly comes into the
99 ; CHECK-NEXT: sub [[NEW:w[0-9]+]], w[[OLD]], w0
117 ; w0 below is a reasonable guess but could change: it certainly comes into the
119 ; CHECK-NEXT: sub [[NEW:w[0-9]+]], w[[OLD]], w0
[all …]
Ddirectcond.ll7 ; CHECK: tst w0, [[ONE]]
8 ; CHECK-NEXT: csel w0, w1, w2, ne
17 ; CHECK: tst w0, [[ONE]]
27 ; CHECK: tst w0, [[ONE]]
37 ; CHECK: tst w0, [[ONE]]
58 ; CHECK: csinc w0, wzr, wzr, ne
66 ; CHECK: csinc w0, wzr, wzr, ne
73 ; CHECK: cmp w0, w1
74 ; CHECK: csinc w0, wzr, wzr, ls
82 ; CHECK: csinc w0, wzr, wzr, eq
Dinline-asm-constraints.ll61 call void asm sideeffect "and w0, w0, $0", "K"(i32 2863311530) ; = 0xaaaaaaaa
62 call void asm sideeffect "and w0, w0, $0", "K"(i32 65535)
63 ; CHECK: and w0, w0, #-1431655766
64 ; CHECK: and w0, w0, #65535
114 call void asm sideeffect "cmp w0, $0", "Z"(i32 0)
115 ; CHECK: cmp w0, #0
Dextract.ll17 ; CHECK: extr {{w[0-9]+}}, w0, w0, #23
27 ; something other than w0 and w1.
28 ; CHECK: extr {{w[0-9]+}}, w0, w1, #26
39 ; something other than w0 and w1.
Dinline-asm-constraints-badK2.ll5 call void asm sideeffect "and w0, w0, $0", "K"(i64 4294967296)
Dinline-asm-constraints-badK.ll5 call void asm sideeffect "and w0, w0, $0", "K"(i32 13)
Dfp128.ll135 ; CHECK: cmp w0, #0
136 ; CHECK: csinc w0, wzr, wzr, gt
157 ; CHECK: cmp w0, #0
161 ; CHECK: orr w0, [[UNORDERED]], [[GT]]
181 ; CHECK: cmp w0, #0
209 ; CHECK: cmp w0, #0
Dtls-execs.ll13 ; CHECK: ldr w0, [x[[TP]], x[[TP_OFFSET]]]
44 ; CHECK: ldr w0, [x[[TP]], [[TP_OFFSET]]]
Dbasic-pic.ll14 ; CHECK: ldr w0, [x[[GOTLOC]]]
40 ; CHECK: ldr w0, [x[[HI]], #:lo12:hiddenvar]
Dmovw-consts.ll56 ; CHECK: movn w0, #60875
121 ; Mustn't MOVN w0 here.
/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()
50 if ((res = mp_sqr(&a0, &w0)) != MP_OKAY) { in mp_toom_sqr()
123 if ((res = mp_sub(&w3, &w0, &w3)) != MP_OKAY) { in mp_toom_sqr()
135 if ((res = mp_sub(&w2, &w0, &w2)) != MP_OKAY) { in mp_toom_sqr()
150 if ((res = mp_mul_2d(&w0, 3, &tmp1)) != MP_OKAY) { in mp_toom_sqr()
204 if ((res = mp_add(&w0, &w1, b)) != MP_OKAY) { in mp_toom_sqr()
218 mp_clear_multi(&w0, &w1, &w2, &w3, &w4, &a0, &a1, &a2, &tmp1, NULL); in mp_toom_sqr()
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()
73 if ((res = mp_mul(&a0, &b0, &w0)) != MP_OKAY) { in mp_toom_mul()
179 if ((res = mp_sub(&w3, &w0, &w3)) != MP_OKAY) { in mp_toom_mul()
191 if ((res = mp_sub(&w2, &w0, &w2)) != MP_OKAY) { in mp_toom_mul()
206 if ((res = mp_mul_2d(&w0, 3, &tmp1)) != MP_OKAY) { in mp_toom_mul()
260 if ((res = mp_add(&w0, &w1, c)) != MP_OKAY) { in mp_toom_mul()
274 mp_clear_multi(&w0, &w1, &w2, &w3, &w4, in mp_toom_mul()
/external/tremolo/Tremolo/
Dmdct.c275 DATA_TYPE *w0 = x; in mdct_step7() local
284 s0 = w0[0] + w1[0]; in mdct_step7()
285 s1 = w1[1] - w0[1]; in mdct_step7()
290 s0 = (w0[1] + w1[1])>>1; in mdct_step7()
291 s1 = (w0[0] - w1[0])>>1; in mdct_step7()
292 w0[0] = s0 + s2; in mdct_step7()
293 w0[1] = s1 + s3; in mdct_step7()
297 w0 += 2; in mdct_step7()
302 s0 = w0[0] + w1[0]; in mdct_step7()
303 s1 = w1[1] - w0[1]; in mdct_step7()
[all …]
Dmdct.h62 LOOKUP_T *w0,LOOKUP_T *w1,
/external/clang/test/CodeGen/
D2010-05-26-AsmSideEffect.c6 register int w0 asm ("0"); in test()
8 asm ("ldr %0, [%1]": "=r" (w0): "r" (src)); in test()
9 return w0; in test()
/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()
2095 int w0 = TEXT_NODE; in appendTextChild() local
2103 int ourslot = appendNode(w0, w1, w2, w3); in appendTextChild()
2118 int w0 = COMMENT_NODE; in appendComment() local
2126 int ourslot = appendNode(w0, w1, w2, w3); in appendComment()
2154 int w0 = (namespaceIndex << 16) | ELEMENT_NODE; in appendStartElement() local
2164 int ourslot = appendNode(w0, w1, w2, w3); in appendStartElement()
2200 int w0 = NAMESPACE_NODE | (m_nsNames.stringToIndex("http://www.w3.org/2000/xmlns/")<<16); in appendNSDeclaration() local
[all …]
DChunkedIntArray.java71 int appendSlot(int w0, int w1, int w2, int w3) in appendSlot() argument
95 chunk[slotpos] = w0; in appendSlot()
221 void writeSlot(int position, int w0, int w1, int w2, int w3) in writeSlot() argument
231 chunk[slotpos] = w0; in writeSlot()
/external/opencv/cv/src/
Dcvlinefit.cpp105 float w0 = 0; in icvFitLine3D_wods() local
135 w0 += w; in icvFitLine3D_wods()
156 w0 = (float) count; in icvFitLine3D_wods()
159 x2 /= w0; in icvFitLine3D_wods()
160 xy /= w0; in icvFitLine3D_wods()
161 xz /= w0; in icvFitLine3D_wods()
162 y2 /= w0; in icvFitLine3D_wods()
163 yz /= w0; in icvFitLine3D_wods()
164 z2 /= w0; in icvFitLine3D_wods()
166 x0 /= w0; in icvFitLine3D_wods()
[all …]
/external/libvorbis/lib/
Dmdct.c351 DATA_TYPE *w0 = x; in mdct_bitreverse() local
352 DATA_TYPE *w1 = x = w0+(n>>1); in mdct_bitreverse()
369 w0[0] = r0 + r2; in mdct_bitreverse()
371 w0[1] = r1 + r3; in mdct_bitreverse()
385 w0[2] = r0 + r2; in mdct_bitreverse()
387 w0[3] = r1 + r3; in mdct_bitreverse()
392 w0 += 4; in mdct_bitreverse()
394 }while(w0<w1); in mdct_bitreverse()
/external/valgrind/main/helgrind/tests/
Dannotate_hbefore.c286 UWord w0 = *w; in do_wait() local
288 while (*wV == w0) in do_wait()

123