/external/llvm/test/CodeGen/AArch64/ |
D | arm64-neon-mul-div.ll | 104 ; CHECK: sdiv {{w[0-9]+}}, {{w[0-9]+}}, {{w[0-9]+}} 111 ; CHECK: sdiv {{w[0-9]+}}, {{w[0-9]+}}, {{w[0-9]+}} 112 ; CHECK: sdiv {{w[0-9]+}}, {{w[0-9]+}}, {{w[0-9]+}} 113 ; CHECK: sdiv {{w[0-9]+}}, {{w[0-9]+}}, {{w[0-9]+}} 114 ; CHECK: sdiv {{w[0-9]+}}, {{w[0-9]+}}, {{w[0-9]+}} 115 ; CHECK: sdiv {{w[0-9]+}}, {{w[0-9]+}}, {{w[0-9]+}} 116 ; CHECK: sdiv {{w[0-9]+}}, {{w[0-9]+}}, {{w[0-9]+}} 117 ; CHECK: sdiv {{w[0-9]+}}, {{w[0-9]+}}, {{w[0-9]+}} 118 ; CHECK: sdiv {{w[0-9]+}}, {{w[0-9]+}}, {{w[0-9]+}} 125 ; CHECK: sdiv {{w[0-9]+}}, {{w[0-9]+}}, {{w[0-9]+}} [all …]
|
/external/selinux/sepolgen/tests/ |
D | perm_map | 19 # w = Write 47 transition w 5 48 sigchld w 1 49 sigkill w 1 50 sigstop w 1 52 signal w 5 55 setsched w 1 58 setpgid w 5 60 setcap w 1 63 setexec w 1 [all …]
|
/external/selinux/sepolgen/src/share/ |
D | perm_map | 19 # w = Write 47 transition w 5 48 sigchld w 1 49 sigkill w 1 50 sigstop w 1 52 signal w 5 55 setsched w 1 58 setpgid w 5 60 setcap w 1 63 setexec w 1 [all …]
|
/external/valgrind/VEX/priv/ |
D | guest_generic_bb_to_IR.c | 785 static inline UInt ROL32 ( UInt w, Int n ) { in ROL32() argument 786 w = (w << n) | (w >> (32-n)); in ROL32() 787 return w; in ROL32() 797 UInt w; in genericg_compute_checksum_4al() local 798 w = p[0]; sum1 = ROL32(sum1 ^ w, 31); sum2 += w; in genericg_compute_checksum_4al() 799 w = p[1]; sum1 = ROL32(sum1 ^ w, 31); sum2 += w; in genericg_compute_checksum_4al() 800 w = p[2]; sum1 = ROL32(sum1 ^ w, 31); sum2 += w; in genericg_compute_checksum_4al() 801 w = p[3]; sum1 = ROL32(sum1 ^ w, 31); sum2 += w; in genericg_compute_checksum_4al() 807 UInt w; in genericg_compute_checksum_4al() local 808 w = p[0]; sum1 = ROL32(sum1 ^ w, 31); sum2 += w; in genericg_compute_checksum_4al() [all …]
|
/external/libcxx/test/std/localization/locale.stdcvt/ |
D | codecvt_utf16_in.pass.cpp | 33 wchar_t w = 0; in main() local 38 std::codecvt_base::result r = c.in(m, n, n+4, np, &w, &w+1, wp); in main() 40 assert(wp == &w+1); in main() 42 assert(w == 0x40003); in main() 46 r = c.in(m, n, n+2, np, &w, &w+1, wp); in main() 48 assert(wp == &w+1); in main() 50 assert(w == 0x1005); in main() 54 r = c.in(m, n, n+2, np, &w, &w+1, wp); in main() 56 assert(wp == &w+1); in main() 58 assert(w == 0x453); in main() [all …]
|
D | codecvt_utf8_in.pass.cpp | 33 wchar_t w = 0; in main() local 38 std::codecvt_base::result r = c.in(m, n, n+4, np, &w, &w+1, wp); in main() 40 assert(wp == &w+1); in main() 42 assert(w == 0x40003); in main() 47 r = c.in(m, n, n+3, np, &w, &w+1, wp); in main() 49 assert(wp == &w+1); in main() 51 assert(w == 0x1005); in main() 55 r = c.in(m, n, n+2, np, &w, &w+1, wp); in main() 57 assert(wp == &w+1); in main() 59 assert(w == 0x453); in main() [all …]
|
D | codecvt_utf8_utf16_in.pass.cpp | 33 wchar_t w[2] = {0}; in main() local 38 std::codecvt_base::result r = c.in(m, n, n+4, np, w, w+2, wp); in main() 40 assert(wp == w+2); in main() 42 assert(w[0] == 0xD8C0); in main() 43 assert(w[1] == 0xDC03); in main() 48 r = c.in(m, n, n+3, np, w, w+2, wp); in main() 50 assert(wp == w+1); in main() 52 assert(w[0] == 0x1005); in main() 56 r = c.in(m, n, n+2, np, w, w+2, wp); in main() 58 assert(wp == w+1); in main() [all …]
|
D | codecvt_utf8_utf16_out.pass.cpp | 33 wchar_t w[2] = {0xD8C0, 0xDC03}; in main() local 38 std::codecvt_base::result r = c.out(m, w, w+2, wp, n, n+4, np); in main() 40 assert(wp == w+2); in main() 47 w[0] = 0x1005; in main() 48 r = c.out(m, w, w+1, wp, n, n+4, np); in main() 50 assert(wp == w+1); in main() 56 w[0] = 0x453; in main() 57 r = c.out(m, w, w+1, wp, n, n+4, np); in main() 59 assert(wp == w+1); in main() 64 w[0] = 0x56; in main() [all …]
|
D | codecvt_utf8_out.pass.cpp | 33 wchar_t w = 0x40003; in main() local 38 std::codecvt_base::result r = c.out(m, &w, &w+1, wp, n, n+4, np); in main() 40 assert(wp == &w+1); in main() 47 w = 0x1005; in main() 48 r = c.out(m, &w, &w+1, wp, n, n+4, np); in main() 50 assert(wp == &w+1); in main() 57 w = 0x453; in main() 58 r = c.out(m, &w, &w+1, wp, n, n+4, np); in main() 60 assert(wp == &w+1); in main() 67 w = 0x56; in main() [all …]
|
D | codecvt_utf16_out.pass.cpp | 33 wchar_t w = 0x40003; in main() local 38 std::codecvt_base::result r = c.out(m, &w, &w+1, wp, n, n+4, np); in main() 40 assert(wp == &w+1); in main() 47 w = 0x1005; in main() 48 r = c.out(m, &w, &w+1, wp, n, n+4, np); in main() 50 assert(wp == &w+1); in main() 57 w = 0x453; in main() 58 r = c.out(m, &w, &w+1, wp, n, n+4, np); in main() 60 assert(wp == &w+1); in main() 67 w = 0x56; in main() [all …]
|
/external/tcpdump/ |
D | in_cksum.c | 59 register const u_int16_t *w; in in_cksum() local 76 w = (const u_int16_t *)(void *)vec->ptr; in in_cksum() 86 s_util.c[1] = *(const u_int8_t *)w; in in_cksum() 88 w = (const u_int16_t *)(void *)((const u_int8_t *)w + 1); in in_cksum() 95 if ((1 & (unsigned long) w) && (mlen > 0)) { in in_cksum() 98 s_util.c[0] = *(const u_int8_t *)w; in in_cksum() 99 w = (const u_int16_t *)(void *)((const u_int8_t *)w + 1); in in_cksum() 108 sum += w[0]; sum += w[1]; sum += w[2]; sum += w[3]; in in_cksum() 109 sum += w[4]; sum += w[5]; sum += w[6]; sum += w[7]; in in_cksum() 110 sum += w[8]; sum += w[9]; sum += w[10]; sum += w[11]; in in_cksum() [all …]
|
/external/llvm/test/Transforms/LoopDeletion/ |
D | simplify-then-delete.ll | 17 br i1 %cmp4, label %bb.n10, label %w.e12 19 w.c: 21 br i1 %cmp, label %w.c2.p, label %w.c.w.e12c 23 w.c.w.e12c: 24 br label %w.c.w.e12c.s 26 w.c.w.e12c.s: 27 br label %w.e12 31 br i1 %cmp51, label %bb.n10.w.c.w.e12c.sc, label %bb.n10.bb.n10.sc 36 bb.n10.w.c.w.e12c.sc: 37 br label %w.c.w.e12c.s [all …]
|
/external/llvm/test/CodeGen/Mips/msa/ |
D | bitcast.ll | 17 ; LITENDIAN: ld.b [[R1:\$w[0-9]+]], 18 ; LITENDIAN: addv.b [[R2:\$w[0-9]+]], [[R1]], [[R1]] 19 ; LITENDIAN: addv.b [[R3:\$w[0-9]+]], [[R2]], [[R2]] 24 ; BIGENDIAN: ld.b [[R1:\$w[0-9]+]], 25 ; BIGENDIAN: addv.b [[R2:\$w[0-9]+]], [[R1]], [[R1]] 26 ; BIGENDIAN: addv.b [[R3:\$w[0-9]+]], [[R2]], [[R2]] 41 ; LITENDIAN: ld.b [[R1:\$w[0-9]+]], 42 ; LITENDIAN: addv.b [[R2:\$w[0-9]+]], [[R1]], [[R1]] 43 ; LITENDIAN: addv.h [[R3:\$w[0-9]+]], [[R2]], [[R2]] 48 ; BIGENDIAN: ld.b [[R1:\$w[0-9]+]], [all …]
|
D | arithmetic_float.ll | 8 ; CHECK-DAG: ld.w [[R1:\$w[0-9]+]], 0($5) 10 ; CHECK-DAG: ld.w [[R2:\$w[0-9]+]], 0($6) 12 ; CHECK-DAG: fadd.w [[R3:\$w[0-9]+]], [[R1]], [[R2]] 14 ; CHECK-DAG: st.w [[R3]], 0($4) 24 ; CHECK-DAG: ld.d [[R1:\$w[0-9]+]], 0($5) 26 ; CHECK-DAG: ld.d [[R2:\$w[0-9]+]], 0($6) 28 ; CHECK-DAG: fadd.d [[R3:\$w[0-9]+]], [[R1]], [[R2]] 40 ; CHECK-DAG: ld.w [[R1:\$w[0-9]+]], 0($5) 42 ; CHECK-DAG: ld.w [[R2:\$w[0-9]+]], 0($6) 44 ; CHECK-DAG: fsub.w [[R3:\$w[0-9]+]], [[R1]], [[R2]] [all …]
|
/external/v8/src/ |
D | gdb-jit.cc | 58 Slot(Writer* w, uintptr_t offset) : w_(w), offset_(offset) { } in Slot() argument 317 virtual void WriteBody(Writer::Slot<Header> header, Writer* w) { in WriteBody() argument 318 uintptr_t start = w->position(); in WriteBody() 319 if (WriteBodyInternal(w)) { in WriteBody() 320 uintptr_t end = w->position(); in WriteBody() 326 virtual bool WriteBodyInternal(Writer* w) { in WriteBodyInternal() argument 429 void AttachWriter(Writer* w) { in AttachWriter() argument 430 writer_ = w; in AttachWriter() 441 virtual void WriteBody(Writer::Slot<Header> header, Writer* w) { in WriteBody() argument 484 void Write(Writer* w, uintptr_t code_start, uintptr_t code_size) { in Write() argument [all …]
|
/external/jmonkeyengine/engine/src/core/com/jme3/math/ |
D | Vector4f.java | 89 public float w; field in Vector4f 97 x = y = z = w = 0; in Vector4f() 113 public Vector4f(float x, float y, float z, float w) { in Vector4f() argument 117 this.w = w; in Vector4f() 143 public Vector4f set(float x, float y, float z, float w) { in set() argument 147 this.w = w; in set() 163 this.w = vect.w; in set() 182 return new Vector4f(x + vec.x, y + vec.y, z + vec.z, w + vec.w); in add() 200 result.w = w + vec.w; in add() 221 w += vec.w; in addLocal() [all …]
|
D | Quaternion.java | 69 protected float x, y, z, w; field in Quaternion 80 w = 1; in Quaternion() 96 public Quaternion(float x, float y, float z, float w) { in Quaternion() argument 100 this.w = w; in Quaternion() 116 return w; in getW() 133 public Quaternion set(float x, float y, float z, float w) { in set() argument 137 this.w = w; in set() 154 this.w = q.w; in set() 196 this.w = q.w; in Quaternion() 204 w = 1; in loadIdentity() [all …]
|
/external/mesa3d/src/gallium/auxiliary/util/ |
D | u_tile.c | 50 uint x, uint y, uint w, uint h, in pipe_get_tile_raw() argument 56 dst_stride = util_format_get_stride(pt->resource->format, w); in pipe_get_tile_raw() 58 if (u_clip_tile(x, y, &w, &h, &pt->box)) in pipe_get_tile_raw() 66 util_copy_rect(dst, pt->resource->format, dst_stride, 0, 0, w, h, src, pt->stride, x, y); in pipe_get_tile_raw() 78 uint x, uint y, uint w, uint h, in pipe_put_tile_raw() argument 85 src_stride = util_format_get_stride(format, w); in pipe_put_tile_raw() 87 if (u_clip_tile(x, y, &w, &h, &pt->box)) in pipe_put_tile_raw() 95 util_copy_rect(dst, format, pt->stride, x, y, w, h, src, src_stride, 0, 0); in pipe_put_tile_raw() 118 unsigned w, unsigned h, in z16_get_tile_rgba() argument 127 for (j = 0; j < w; j++, pRow += 4) { in z16_get_tile_rgba() [all …]
|
/external/llvm/test/MC/ARM/ |
D | thumb2-branches.s | 17 b.w #-2048 18 b.w #2046 19 b.w #-1677216 20 b.w #1677214 22 @ CHECK: b.w #-2048 @ encoding: [0xff,0xf7,0x00,0xbc] 23 @ CHECK: b.w #2046 @ encoding: [0x00,0xf0,0xff,0xbb] 24 @ CHECK: b.w #-1677216 @ encoding: [0x66,0xf6,0x30,0xbc] 25 @ CHECK: b.w #1677214 @ encoding: [0x99,0xf1,0xcf,0xbb] 40 @ CHECK: b.w #-2050 @ encoding: [0xff,0xf7,0xff,0xbb] 41 @ CHECK: b.w #2048 @ encoding: [0x00,0xf0,0x00,0xbc] [all …]
|
D | thumb-shift-encoding.s | 7 sbc.w r12, lr, r0 8 sbc.w r1, r8, r9, lsr #32 9 sbc.w r2, r7, pc, lsr #16 10 sbc.w r3, r6, r10, lsl #0 11 sbc.w r4, r5, lr, lsl #16 12 sbc.w r5, r4, r11, asr #32 13 sbc.w r6, r3, sp, asr #16 14 sbc.w r7, r2, r12, rrx 15 sbc.w r8, r1, r0, ror #16 17 @ CHECK: sbc.w r12, lr, r0 @ encoding: [0x6e,0xeb,0x00,0x0c] [all …]
|
/external/valgrind/none/tests/amd64/ |
D | lzcnt64.c | 60 ULong w; in main() local 62 w = 0xFEDC192837475675ULL; in main() 66 do_lzcnt64(&flags, &res, w); in main() 67 printf("lzcntq %016llx -> %016llx %04x\n", w, res, flags); in main() 68 if (w == 0) break; in main() 69 w = ((w >> 2) | (w >> 1)) + (w / 17ULL); in main() 72 w = 0xFEDC192837475675ULL; in main() 76 do_lzcnt32(&flags, &res, w); in main() 77 printf("lzcntl %016llx -> %016llx %04x\n", w, res, flags); in main() 78 if (w == 0) break; in main() [all …]
|
/external/llvm/test/MC/Mips/msa/ |
D | test_3rf.s | 3 # CHECK: fadd.w $w28, $w19, $w28 # encoding: [0x78,0x1c,0x9f,0x1b] 5 # CHECK: fcaf.w $w14, $w11, $w25 # encoding: [0x78,0x19,0x5b,0x9a] 7 # CHECK: fceq.w $w1, $w23, $w16 # encoding: [0x78,0x90,0xb8,0x5a] 9 # CHECK: fcle.w $w16, $w9, $w24 # encoding: [0x79,0x98,0x4c,0x1a] 11 # CHECK: fclt.w $w28, $w8, $w8 # encoding: [0x79,0x08,0x47,0x1a] 13 # CHECK: fcne.w $w2, $w18, $w23 # encoding: [0x78,0xd7,0x90,0x9c] 15 # CHECK: fcor.w $w10, $w18, $w25 # encoding: [0x78,0x59,0x92,0x9c] 17 # CHECK: fcueq.w $w14, $w2, $w21 # encoding: [0x78,0xd5,0x13,0x9a] 19 # CHECK: fcule.w $w17, $w5, $w3 # encoding: [0x79,0xc3,0x2c,0x5a] 21 # CHECK: fcult.w $w6, $w25, $w9 # encoding: [0x79,0x49,0xc9,0x9a] [all …]
|
/external/skia/src/animator/ |
D | SkXMLAnimatorWriter.cpp | 55 SkXMLAnimatorWriter w(&s); in UnitTest() local 56 w.startElement("screenplay"); in UnitTest() 57 w.startElement("animateField"); in UnitTest() 58 w.addAttribute("field", "x1"); in UnitTest() 59 w.addAttribute("id", "to100"); in UnitTest() 60 w.addAttribute("from", "0"); in UnitTest() 61 w.addAttribute("to", "100"); in UnitTest() 62 w.addAttribute("dur", "1"); in UnitTest() 63 w.endElement(); in UnitTest() 64 w.startElement("event"); in UnitTest() [all …]
|
/external/llvm/test/CodeGen/MSP430/ |
D | cc_args.ll | 10 ; CHECK: mov.w #1, r15 14 ; CHECK: mov.w #772, r14 15 ; CHECK: mov.w #258, r15 19 ; CHECK: mov.w #1800, r12 20 ; CHECK: mov.w #1286, r13 21 ; CHECK: mov.w #772, r14 22 ; CHECK: mov.w #258, r15 26 ; CHECK: mov.w #772, r14 27 ; CHECK: mov.w #258, r15 28 ; CHECK: mov.w #1800, r12 [all …]
|
/external/eigen/test/ |
D | qtvector.cpp | 26 QVector<MatrixType> v(10, MatrixType(rows,cols)), w(20, y); in check_qtvector_matrix() local 29 VERIFY_IS_APPROX(w[i], y); in check_qtvector_matrix() 32 w[6] = v[5]; in check_qtvector_matrix() 33 VERIFY_IS_APPROX(w[6], v[5]); in check_qtvector_matrix() 34 v = w; in check_qtvector_matrix() 37 VERIFY_IS_APPROX(w[i], v[i]); in check_qtvector_matrix() 51 MatrixType* ref = &w[0]; in check_qtvector_matrix() 52 for(int i=0; i<30 || ((ref==&w[0]) && i<300); ++i) in check_qtvector_matrix() 53 v.push_back(w[i%w.size()]); in check_qtvector_matrix() 56 VERIFY(v[i]==w[(i-23)%w.size()]); in check_qtvector_matrix() [all …]
|