Home
last modified time | relevance | path

Searched refs:dw (Results 1 – 25 of 55) sorted by relevance

123

/dragonfly/sys/crypto/camellia/
H A Dcamellia.c607 dw = SUBL(2) ^ SUBR(2), dw = CAMELLIA_RL8(dw); in camellia_setup128()
609 dw = SUBL(3) ^ SUBR(3), dw = CAMELLIA_RL8(dw); in camellia_setup128()
611 dw = SUBL(4) ^ SUBR(4), dw = CAMELLIA_RL8(dw); in camellia_setup128()
613 dw = SUBL(5) ^ SUBR(5), dw = CAMELLIA_RL8(dw); in camellia_setup128()
615 dw = SUBL(6) ^ SUBR(6), dw = CAMELLIA_RL8(dw); in camellia_setup128()
617 dw = SUBL(7) ^ SUBR(7), dw = CAMELLIA_RL8(dw); in camellia_setup128()
875 dw = SUBL(2) ^ SUBR(2), dw = CAMELLIA_RL8(dw); in camellia_setup256()
877 dw = SUBL(3) ^ SUBR(3), dw = CAMELLIA_RL8(dw); in camellia_setup256()
879 dw = SUBL(4) ^ SUBR(4), dw = CAMELLIA_RL8(dw); in camellia_setup256()
881 dw = SUBL(5) ^ SUBR(5), dw = CAMELLIA_RL8(dw); in camellia_setup256()
[all …]
/dragonfly/sys/dev/drm/amd/amdgpu/
H A Dvega10_ih.c323 uint32_t dw[8]; in vega10_ih_decode_iv() local
334 entry->client_id = dw[0] & 0xff; in vega10_ih_decode_iv()
337 entry->vmid = (dw[0] >> 24) & 0xf; in vega10_ih_decode_iv()
338 entry->vmid_src = (dw[0] >> 31); in vega10_ih_decode_iv()
339 entry->timestamp = dw[1] | ((u64)(dw[2] & 0xffff) << 32); in vega10_ih_decode_iv()
341 entry->pasid = dw[3] & 0xffff; in vega10_ih_decode_iv()
342 entry->pasid_src = dw[3] >> 31; in vega10_ih_decode_iv()
343 entry->src_data[0] = dw[4]; in vega10_ih_decode_iv()
344 entry->src_data[1] = dw[5]; in vega10_ih_decode_iv()
345 entry->src_data[2] = dw[6]; in vega10_ih_decode_iv()
[all …]
H A Dcz_ih.c251 uint32_t dw[4]; in cz_ih_decode_iv() local
253 dw[0] = le32_to_cpu(adev->irq.ih.ring[ring_index + 0]); in cz_ih_decode_iv()
254 dw[1] = le32_to_cpu(adev->irq.ih.ring[ring_index + 1]); in cz_ih_decode_iv()
255 dw[2] = le32_to_cpu(adev->irq.ih.ring[ring_index + 2]); in cz_ih_decode_iv()
256 dw[3] = le32_to_cpu(adev->irq.ih.ring[ring_index + 3]); in cz_ih_decode_iv()
259 entry->src_id = dw[0] & 0xff; in cz_ih_decode_iv()
260 entry->src_data[0] = dw[1] & 0xfffffff; in cz_ih_decode_iv()
261 entry->ring_id = dw[2] & 0xff; in cz_ih_decode_iv()
262 entry->vmid = (dw[2] >> 8) & 0xff; in cz_ih_decode_iv()
263 entry->pasid = (dw[2] >> 16) & 0xffff; in cz_ih_decode_iv()
H A Diceland_ih.c251 uint32_t dw[4]; in iceland_ih_decode_iv() local
253 dw[0] = le32_to_cpu(adev->irq.ih.ring[ring_index + 0]); in iceland_ih_decode_iv()
254 dw[1] = le32_to_cpu(adev->irq.ih.ring[ring_index + 1]); in iceland_ih_decode_iv()
255 dw[2] = le32_to_cpu(adev->irq.ih.ring[ring_index + 2]); in iceland_ih_decode_iv()
256 dw[3] = le32_to_cpu(adev->irq.ih.ring[ring_index + 3]); in iceland_ih_decode_iv()
259 entry->src_id = dw[0] & 0xff; in iceland_ih_decode_iv()
260 entry->src_data[0] = dw[1] & 0xfffffff; in iceland_ih_decode_iv()
261 entry->ring_id = dw[2] & 0xff; in iceland_ih_decode_iv()
262 entry->vmid = (dw[2] >> 8) & 0xff; in iceland_ih_decode_iv()
263 entry->pasid = (dw[2] >> 16) & 0xffff; in iceland_ih_decode_iv()
H A Dtonga_ih.c262 uint32_t dw[4]; in tonga_ih_decode_iv() local
264 dw[0] = le32_to_cpu(adev->irq.ih.ring[ring_index + 0]); in tonga_ih_decode_iv()
265 dw[1] = le32_to_cpu(adev->irq.ih.ring[ring_index + 1]); in tonga_ih_decode_iv()
266 dw[2] = le32_to_cpu(adev->irq.ih.ring[ring_index + 2]); in tonga_ih_decode_iv()
267 dw[3] = le32_to_cpu(adev->irq.ih.ring[ring_index + 3]); in tonga_ih_decode_iv()
270 entry->src_id = dw[0] & 0xff; in tonga_ih_decode_iv()
271 entry->src_data[0] = dw[1] & 0xfffffff; in tonga_ih_decode_iv()
272 entry->ring_id = dw[2] & 0xff; in tonga_ih_decode_iv()
273 entry->vmid = (dw[2] >> 8) & 0xff; in tonga_ih_decode_iv()
274 entry->pasid = (dw[2] >> 16) & 0xffff; in tonga_ih_decode_iv()
/dragonfly/usr.sbin/makefs/cd9660/
H A Dcd9660_conversion.c100 cd9660_bothendian_dword(uint32_t dw, unsigned char *eightchar) in cd9660_bothendian_dword() argument
104 le = dw; in cd9660_bothendian_dword()
105 be = bswap32(dw); in cd9660_bothendian_dword()
108 be = dw; in cd9660_bothendian_dword()
109 le = bswap32(dw); in cd9660_bothendian_dword()
122 cd9660_bothendian_word(uint16_t dw, unsigned char *fourchar) in cd9660_bothendian_word() argument
126 le = dw; in cd9660_bothendian_word()
127 be = bswap16(dw); in cd9660_bothendian_word()
130 be = dw; in cd9660_bothendian_word()
131 le = bswap16(dw); in cd9660_bothendian_word()
/dragonfly/usr.bin/ncal/
H A Dncal.c777 int dw; /* width of numbers */ in mkmonthr() local
816 dw = 4; in mkmonthr()
819 dw = 3; in mkmonthr()
838 ds + dt.d * dw, dw, &l); in mkmonthr()
841 ds + dt.d * dw, dw); in mkmonthr()
856 ds + week(j, &i)*dw, dw); in mkmonthr()
880 dw = 4; in mkmonthb()
883 dw = 3; in mkmonthb()
934 j++, k += dw) { in mkmonthb()
942 ds + dt.d * dw, dw, &l); in mkmonthb()
[all …]
/dragonfly/contrib/dialog/
H A Dutil.c99 #define UseShadow(dw) ((dw) != 0 && (dw)->normal != 0 && (dw)->shadow != 0) argument
1735 #define RepaintCell(dw, draw, y, x) repaint_cell(dw, draw, y, x) argument
1740 if (UseShadow(dw)) { in repaint_shadow()
1771 if (UseShadow(dw)) { in draw_childs_shadow()
1772 repaint_shadow(dw, in draw_childs_shadow()
1774 getbegy(dw->normal) - getbegy(dw->shadow), in draw_childs_shadow()
1775 getbegx(dw->normal) - getbegx(dw->shadow), in draw_childs_shadow()
1788 if (UseShadow(dw)) { in erase_childs_shadow()
1789 repaint_shadow(dw, in erase_childs_shadow()
1791 getbegy(dw->normal) - getbegy(dw->shadow), in erase_childs_shadow()
[all …]
/dragonfly/sys/dev/misc/syscons/
H A Dsckmsrndr.c136 vm_offset_t draw_pos, int dw, int dh, in blit_blk32() argument
150 if (dw) in blit_blk32()
151 sx_inc = (sw << 16) / dw; in blit_blk32()
176 for (x = 0; x < dw; ++x) { in blit_blk32()
185 for (x = 0; x < dw; ++x) { in blit_blk32()
206 vm_offset_t draw_pos, int dw, int dh, in blit_blk24() argument
220 if (dw) in blit_blk24()
221 sx_inc = (sw << 16) / dw; in blit_blk24()
246 for (x = 0; x < dw; ++x) { in blit_blk24()
259 for (x = 0; x < dw; ++x) { in blit_blk24()
H A Dscvtb.c60 uint16_t *dw = d; in sc_vtb_bcopy() local
65 *(uint8_t *)(dw + count) = *(uint8_t *)(sw + count); in sc_vtb_bcopy()
67 dw[count] = sw[count]; in sc_vtb_bcopy()
71 dw[n] = sw[n]; in sc_vtb_bcopy()
73 *(uint8_t *)(dw + n) = *(uint8_t *)(sw + n); in sc_vtb_bcopy()
/dragonfly/lib/libutil/
H A Dlogin_times.c35 const char *dw; member
82 while (dws[i].dw && strncmp(p, dws[i].dw, dws[i].cn) != 0) in parse_lt()
84 if (dws[i].dw == NULL) in parse_lt()
/dragonfly/contrib/gdb-7/gdb/
H A Dgdb-dlfcn.c86 DWORD dw; in gdb_dlopen() local
88 dw = GetLastError(); in gdb_dlopen()
92 NULL, dw, MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), in gdb_dlopen()
/dragonfly/sys/dev/drm/include/drm/
H A Ddrm_rect.h84 static inline void drm_rect_adjust_size(struct drm_rect *r, int dw, int dh) in drm_rect_adjust_size() argument
86 r->x1 -= dw >> 1; in drm_rect_adjust_size()
88 r->x2 += (dw + 1) >> 1; in drm_rect_adjust_size()
/dragonfly/sys/dev/drm/i915/
H A Di915_utils.h132 static inline void drain_delayed_work(struct delayed_work *dw) in drain_delayed_work() argument
135 while (flush_delayed_work(dw)) in drain_delayed_work()
137 } while (delayed_work_pending(dw)); in drain_delayed_work()
/dragonfly/contrib/mdocml/
H A Dtbl_term.c582 int uw, dw; /* Vertical line widths. */ in tbl_hrule() local
636 uw = dw = 0; in tbl_hrule()
650 dw = cpn->vert; in tbl_hrule()
651 if (dw == 0 && opts & TBL_OPT_ALLBOX) in tbl_hrule()
652 dw = 1; in tbl_hrule()
658 dw = 1; in tbl_hrule()
667 dw = 0; in tbl_hrule()
681 BRIGHT * rw + BUP * uw + BDOWN * dw, 1); in tbl_hrule()
687 if (tp->enc != TERMENC_ASCII || (uw < 2 && dw < 2)) in tbl_hrule()
688 uw = dw = 0; in tbl_hrule()
[all …]
/dragonfly/sys/dev/netif/oce/
H A Doce_hw.h569 uint32_t dw[59]; member
640 uint32_t dw[4]; member
697 uint32_t dw[4]; member
724 uint32_t dw[6]; member
940 uint32_t dw[4]; member
1047 uint32_t dw; member
1103 uint32_t dw[2]; member
1170 uint32_t dw[4]; member
1186 uint32_t dw; member
1271 uint32_t dw[5]; member
[all …]
/dragonfly/sys/dev/drm/
H A Dlinux_workqueue.c154 struct delayed_work *dw = arg; in _delayed_work_fn() local
156 queue_work(system_wq, &dw->work); in _delayed_work_fn()
427 delayed_work_pending(struct delayed_work *dw) in delayed_work_pending() argument
430 return work_pending(&dw->work); in delayed_work_pending()
/dragonfly/contrib/gcc-4.7/libdecnumber/dpd/
H A Ddecimal32.c85 decNumber dw; /* work */ in decimal32FromNumber() local
102 decNumberPlus(&dw, dn, &dc); /* (round and check) */ in decimal32FromNumber()
104 dw.bits|=dn->bits&DECNEG; in decimal32FromNumber()
106 dn=&dw; /* use the work number */ in decimal32FromNumber()
H A Ddecimal128.c85 decNumber dw; /* work */ in decimal128FromNumber() local
106 decNumberPlus(&dw, dn, &dc); /* (round and check) */ in decimal128FromNumber()
108 dw.bits|=dn->bits&DECNEG; in decimal128FromNumber()
110 dn=&dw; /* use the work number */ in decimal128FromNumber()
/dragonfly/contrib/gdb-7/libdecnumber/dpd/
H A Ddecimal32.c85 decNumber dw; /* work */ in decimal32FromNumber() local
102 decNumberPlus(&dw, dn, &dc); /* (round and check) */ in decimal32FromNumber()
104 dw.bits|=dn->bits&DECNEG; in decimal32FromNumber()
106 dn=&dw; /* use the work number */ in decimal32FromNumber()
H A Ddecimal128.c85 decNumber dw; /* work */ in decimal128FromNumber() local
106 decNumberPlus(&dw, dn, &dc); /* (round and check) */ in decimal128FromNumber()
108 dw.bits|=dn->bits&DECNEG; in decimal128FromNumber()
110 dn=&dw; /* use the work number */ in decimal128FromNumber()
/dragonfly/contrib/gcc-8.0/libdecnumber/dpd/
H A Ddecimal32.c85 decNumber dw; /* work */ in decimal32FromNumber() local
102 decNumberPlus(&dw, dn, &dc); /* (round and check) */ in decimal32FromNumber()
104 dw.bits|=dn->bits&DECNEG; in decimal32FromNumber()
106 dn=&dw; /* use the work number */ in decimal32FromNumber()
H A Ddecimal128.c85 decNumber dw; /* work */ in decimal128FromNumber() local
106 decNumberPlus(&dw, dn, &dc); /* (round and check) */ in decimal128FromNumber()
108 dw.bits|=dn->bits&DECNEG; in decimal128FromNumber()
110 dn=&dw; /* use the work number */ in decimal128FromNumber()
/dragonfly/contrib/zstd/programs/
H A Dplatform.h162 …PARSE_FILE_MODE(file) { DWORD dw; DeviceIoControl((HANDLE) _get_osfhandle(_fileno(file)), FSCTL_SE…
/dragonfly/contrib/gcc-4.7/gcc/
H A Dsched-deps.c1167 dw_t dw; in update_dep() local
4120 gcc_assert (MIN_DEP_WEAK <= dw && dw <= MAX_DEP_WEAK); in get_dep_weak()
4121 return dw; in get_dep_weak()
4129 gcc_assert (MIN_DEP_WEAK <= dw && dw <= MAX_DEP_WEAK); in set_dep_weak()
4167 ds_t dw; in ds_merge_1() local
4172 dw /= MAX_DEP_WEAK; in ds_merge_1()
4173 if (dw < MIN_DEP_WEAK) in ds_merge_1()
4174 dw = MIN_DEP_WEAK; in ds_merge_1()
4179 dw = dw1; in ds_merge_1()
4181 dw = dw2; in ds_merge_1()
[all …]

123