/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/opencv3/samples/cpp/tutorial_code/core/Matrix/ |
D | Drawing_1.cpp | 10 #define w 400 macro 31 Mat atom_image = Mat::zeros( w, w, CV_8UC3 ); in main() 32 Mat rook_image = Mat::zeros( w, w, CV_8UC3 ); in main() 44 MyFilledCircle( atom_image, Point( w/2, w/2) ); in main() 54 Point( 0, 7*w/8 ), in main() 55 Point( w, w), in main() 61 MyLine( rook_image, Point( 0, 15*w/16 ), Point( w, 15*w/16 ) ); in main() 62 MyLine( rook_image, Point( w/4, 7*w/8 ), Point( w/4, w ) ); in main() 63 MyLine( rook_image, Point( w/2, 7*w/8 ), Point( w/2, w ) ); in main() 64 MyLine( rook_image, Point( 3*w/4, 7*w/8 ), Point( 3*w/4, w ) ); in main() [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/pdfium/core/src/fxcodec/jbig2/ |
D | JBig2_GrrdProc.cpp | 64 for (FX_DWORD w = 0; w < GRW; w++) { in decode_Template0_unopt() local 68 CONTEXT |= GRREFERENCE->getPixel(w - GRREFERENCEDX + GRAT[2], in decode_Template0_unopt() 73 CONTEXT |= GRREG->getPixel(w + GRAT[0], h + GRAT[1]) << 12; in decode_Template0_unopt() 75 GRREG->setPixel(w, h, bVal); in decode_Template0_unopt() 76 line1 = ((line1 << 1) | GRREG->getPixel(w + 2, h - 1)) & 0x03; in decode_Template0_unopt() 79 GRREFERENCE->getPixel(w - GRREFERENCEDX + 2, in decode_Template0_unopt() 84 GRREFERENCE->getPixel(w - GRREFERENCEDX + 2, h - GRREFERENCEDY)) & in decode_Template0_unopt() 87 GRREFERENCE->getPixel(w - GRREFERENCEDX + 2, in decode_Template0_unopt() 107 for (FX_DWORD w = 0; w < GRW; w++) { in decode_Template0_unopt() local 108 bVal = GRREFERENCE->getPixel(w, h); in decode_Template0_unopt() [all …]
|
/external/tcpdump/ |
D | in_cksum.c | 60 register const uint16_t *w; in in_cksum() local 77 w = (const uint16_t *)(void *)vec->ptr; in in_cksum() 87 s_util.c[1] = *(const uint8_t *)w; in in_cksum() 89 w = (const uint16_t *)(void *)((const uint8_t *)w + 1); in in_cksum() 96 if ((1 & (unsigned long) w) && (mlen > 0)) { in in_cksum() 99 s_util.c[0] = *(const uint8_t *)w; in in_cksum() 100 w = (const uint16_t *)(void *)((const uint8_t *)w + 1); in in_cksum() 109 sum += w[0]; sum += w[1]; sum += w[2]; sum += w[3]; in in_cksum() 110 sum += w[4]; sum += w[5]; sum += w[6]; sum += w[7]; in in_cksum() 111 sum += w[8]; sum += w[9]; sum += w[10]; sum += w[11]; in in_cksum() [all …]
|
/external/llvm/test/MC/Hexagon/ |
D | v60-alu.s | 5 #CHECK: 1ce2cbd7 { v23.w = vavg(v11.w,{{ *}}v2.w):rnd } 6 v23.w=vavg(v11.w,v2.w):rnd 26 #CHECK: 1caacf90 { v17:16.w = vadd(v15.h,{{ *}}v10.h) } 27 v17:16.w=vadd(v15.h,v10.h) 32 #CHECK: 1cb8cada { v27:26.w = vsub(v10.uh,{{ *}}v24.uh) } 33 v27:26.w=vsub(v10.uh,v24.uh) 35 #CHECK: 1cbcdbe8 { v9:8.w = vsub(v27.h,{{ *}}v28.h) } 36 v9:8.w=vsub(v27.h,v28.h) 41 #CHECK: 1ca8c43e { v31:30.w = vsub(v5:4.w,{{ *}}v9:8.w):sat } 42 v31:30.w=vsub(v5:4.w,v9:8.w):sat [all …]
|
D | v60-vmpy-acc.s | 5 #CHECK: 1936ee37 { v23.w += vdmpy(v15:14.h,r22.uh,#1):sat } 6 v23.w += vdmpy(v15:14.h,r22.uh,#1):sat 8 #CHECK: 193bf90f { v15.w += vdmpy(v25.h,r27.uh):sat } 9 v15.w += vdmpy(v25.h,r27.uh):sat 17 #CHECK: 1900f5ac { v12.w += vrmpy(v21.ub,r0.b) } 18 v12.w += vrmpy(v21.ub,r0.b) 23 #CHECK: 191de570 { v16.w += vdmpy(v5.h,r29.b) } 24 v16.w += vdmpy(v5.h,r29.b) 26 #CHECK: 191de846 { v7:6.w += vtmpy(v9:8.h,r29.b) } 27 v7:6.w += vtmpy(v9:8.h,r29.b) [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 …]
|
/external/v8/src/ |
D | gdb-jit.cc | 60 Slot(Writer* w, uintptr_t offset) : w_(w), offset_(offset) { } in Slot() argument 319 virtual void WriteBody(Writer::Slot<Header> header, Writer* w) { in WriteBody() argument 320 uintptr_t start = w->position(); in WriteBody() 321 if (WriteBodyInternal(w)) { in WriteBody() 322 uintptr_t end = w->position(); in WriteBody() 328 virtual bool WriteBodyInternal(Writer* w) { in WriteBodyInternal() argument 427 void AttachWriter(Writer* w) { in AttachWriter() argument 428 writer_ = w; in AttachWriter() 439 virtual void WriteBody(Writer::Slot<Header> header, Writer* w) { in WriteBody() argument 482 void Write(Writer* w, uintptr_t code_start, uintptr_t code_size) { in Write() argument [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/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/Mips/micromips-dspr2/ |
D | valid.s | 6 absq_s.w $3, $4 # CHECK: absq_s.w $3, $4 # encoding: [0x00,0x64,0x21,0x3c] 9 addqh.w $3, $4, $5 # CHECK: addqh.w $3, $4, $5 # encoding: [0x00,0xa4,0x18,0x8d] 10 addqh_r.w $3, $4, $5 # CHECK: addqh_r.w $3, $4, $5 # encoding: [0x00,0xa4,0x1c,0x8d] 21 addq_s.w $3, $4, $5 # CHECK: addq_s.w $3, $4, $5 # encoding: [0x00,0xa4,0x1b,0x05] 22 dpa.w.ph $ac0, $3, $2 # CHECK: dpa.w.ph $ac0, $3, $2 # encoding: [0x00,0x43,0x00,0xbc] 23 dpaq_s.w.ph $ac1, $5, $3 # CHECK: dpaq_s.w.ph $ac1, $5, $3 # encoding: [0x00,0x65,0x42,0xbc] 24 dpaq_sa.l.w $ac2, $4, $3 # CHECK: dpaq_sa.l.w $ac2, $4, $3 # encoding: [0x00,0x64,0x92,0xbc] 25 dpaqx_s.w.ph $ac3, $12, $7 # CHECK: dpaqx_s.w.ph $ac3, $12, $7 # encoding: [0x00,0xec,0xe2,0xbc] 26 dpaqx_sa.w.ph $ac0, $5, $6 # CHECK: dpaqx_sa.w.ph $ac0, $5, $6 # encoding: [0x00,0xc5,0x32,0xbc] 29 dpax.w.ph $ac3, $2, $1 # CHECK: dpax.w.ph $ac3, $2, $1 # encoding: [0x00,0x22,0xd0,0xbc] [all …]
|
/external/avahi/avahi-glib/ |
D | glib-watch.c | 68 static void destroy_watch(AvahiWatch *w) { in destroy_watch() argument 69 assert(w); in destroy_watch() 71 if (w->pollfd_added) in destroy_watch() 72 g_source_remove_poll(&w->glib_poll->source, &w->pollfd); in destroy_watch() 74 AVAHI_LLIST_REMOVE(AvahiWatch, watches, w->glib_poll->watches, w); in destroy_watch() 76 avahi_free(w); in destroy_watch() 80 AvahiWatch *w, *next; in cleanup_watches() local 83 for (w = g->watches; w; w = next) { in cleanup_watches() 84 next = w->watches_next; in cleanup_watches() 86 if (all || w->dead) in cleanup_watches() [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, r10, 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, r12, 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/avahi/avahi-common/ |
D | simple-watch.c | 133 AvahiWatch *w; in watch_new() local 143 if (!(w = avahi_new(AvahiWatch, 1))) in watch_new() 149 w->simple_poll = s; in watch_new() 150 w->dead = 0; in watch_new() 152 w->pollfd.fd = fd; in watch_new() 153 w->pollfd.events = event; in watch_new() 154 w->pollfd.revents = 0; in watch_new() 156 w->callback = callback; in watch_new() 157 w->userdata = userdata; in watch_new() 159 w->idx = -1; in watch_new() [all …]
|
/external/llvm/test/MC/Mips/dspr2/ |
D | valid.s | 7 …absq_s.w $5, $6 # CHECK: absq_s.w $5, $6 # encoding: [0x7c,0x06,0… 10 …addq_s.w $13, $14, $15 # CHECK: addq_s.w $13, $14, $15 # encoding: [0x7d,0xcf,0… 13 …addqh.w $22, $23, $24 # CHECK: addqh.w $22, $23, $24 # encoding: [0x7e,0xf8,0… 14 …addqh_r.w $25, $26, $27 # CHECK: addqh_r.w $25, $26, $27 # encoding: [0x7f,0x5b,0… 39 …dpa.w.ph $ac0, $26, $27 # CHECK: dpa.w.ph $ac0, $26, $27 # encoding: [0x7f,0x5b,0… 40 …dpaq_s.w.ph $ac1, $1, $2 # CHECK: dpaq_s.w.ph $ac1, $1, $2 # encoding: [0x7c,0x22,0… 41 …dpaq_sa.l.w $ac2, $3, $4 # CHECK: dpaq_sa.l.w $ac2, $3, $4 # encoding: [0x7c,0x64,0… 42 …dpaqx_s.w.ph $ac3, $5, $6 # CHECK: dpaqx_s.w.ph $ac3, $5, $6 # encoding: [0x7c,0xa6,0… 43 …dpaqx_sa.w.ph $ac0, $7, $8 # CHECK: dpaqx_sa.w.ph $ac0, $7, $8 # encoding: [0x7c,0xe8,0… 46 …dpax.w.ph $ac2, $13, $14 # CHECK: dpax.w.ph $ac2, $13, $14 # encoding: [0x7d,0xae,0… [all …]
|