/external/llvm/test/MC/AArch64/ |
D | mapping-across-sections.s | 4 add w0, w0, w0 8 add w0, w0, w0 16 add w0, w0, w0
|
D | mapping-within-section.s | 5 add w0, w0, w0
|
D | elf-reloc-ldstunsimm.s | 4 ldrb w0, [sp, #:lo12:some_label] 5 ldrh w0, [sp, #:lo12:some_label] 6 ldr w0, [sp, #:lo12:some_label]
|
D | basic-a64-instructions.s | 42 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/ |
D | afwarp.c | 259 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/ |
D | atomic-ops.ll | 17 ; 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 …]
|
D | directcond.ll | 7 ; 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
|
D | inline-asm-constraints.ll | 61 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
|
D | extract.ll | 17 ; 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.
|
D | inline-asm-constraints-badK2.ll | 5 call void asm sideeffect "and w0, w0, $0", "K"(i64 4294967296)
|
D | inline-asm-constraints-badK.ll | 5 call void asm sideeffect "and w0, w0, $0", "K"(i32 13)
|
D | fp128.ll | 135 ; 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
|
D | tls-execs.ll | 13 ; CHECK: ldr w0, [x[[TP]], x[[TP_OFFSET]]] 44 ; CHECK: ldr w0, [x[[TP]], [[TP_OFFSET]]]
|
D | basic-pic.ll | 14 ; CHECK: ldr w0, [x[[GOTLOC]]] 40 ; CHECK: ldr w0, [x[[HI]], #:lo12:hiddenvar]
|
D | movw-consts.ll | 56 ; CHECK: movn w0, #60875 121 ; Mustn't MOVN w0 here.
|
/external/dropbear/libtommath/ |
D | bn_mp_toom_sqr.c | 22 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()
|
D | bn_mp_toom_mul.c | 27 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/ |
D | mdct.c | 275 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 …]
|
D | mdct.h | 62 LOOKUP_T *w0,LOOKUP_T *w1,
|
/external/clang/test/CodeGen/ |
D | 2010-05-26-AsmSideEffect.c | 6 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/ |
D | DTMDocumentImpl.java | 206 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 …]
|
D | ChunkedIntArray.java | 71 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/ |
D | cvlinefit.cpp | 105 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/ |
D | mdct.c | 351 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/ |
D | annotate_hbefore.c | 286 UWord w0 = *w; in do_wait() local 288 while (*wV == w0) in do_wait()
|