HomeSort by: relevance | last modified time | path
    Searched defs:dwords (Results 1 - 9 of 9) sorted by relevancy

  /src/sys/external/bsd/drm2/dist/drm/nouveau/
nouveau_nv50_fbcon.c 104 uint32_t dwords, *data = (uint32_t *)image->data; local in function:nv50_fbcon_imageblit
134 dwords = ALIGN(ALIGN(image->width, 8) * image->height, 32) >> 5;
135 while (dwords) {
136 int push = dwords > 2047 ? 2047 : dwords;
142 dwords -= push;
nouveau_nvc0_fbcon.c 104 uint32_t dwords, *data = (uint32_t *)image->data; local in function:nvc0_fbcon_imageblit
134 dwords = ALIGN(ALIGN(image->width, 8) * image->height, 32) >> 5;
135 while (dwords) {
136 int push = dwords > 2047 ? 2047 : dwords;
142 dwords -= push;
  /src/sys/external/bsd/compiler_rt/dist/lib/builtins/
int_types.h 46 } dwords; typedef in typeref:union:__anon692d56bb010a
  /src/sys/external/bsd/drm/dist/shared-core/
mach64_state.c 490 unsigned long n = bytes; /* dwords remaining in buffer */
534 ("Got bad command count(=%u) dwords remaining=%lu\n",
655 int dword_shift, dwords; local in function:mach64_dma_dispatch_blit
690 dwords = (blit->width * blit->height) >> dword_shift;
691 used = dwords << 2;
728 * a register command every 16 dwords. State setup is added at the start of the
r128_state.c 649 int dwords = (end - start + 3) / sizeof(u32); local in function:r128_cce_dispatch_indirect
652 * dwords, so if we've been given an odd number we must
655 if (dwords & 1) {
659 data[dwords++] = cpu_to_le32(R128_CCE_PACKET2);
669 OUT_RING(dwords);
705 int dwords; local in function:r128_cce_dispatch_indices
720 dwords = (end - start + 3) / sizeof(u32);
726 dwords - 2));
736 data[dwords - 1] &= 0x0000ffff;
738 data[dwords - 1] &= 0xffff0000
787 int dword_shift, dwords; local in function:r128_cce_dispatch_blit
    [all...]
r600_cp.c 2276 int dwords = (end - start + 3) / sizeof(u32); local in function:r600_cp_dispatch_indirect
2278 DRM_DEBUG("dwords:%d\n", dwords);
2282 /* Indirect buffer data must be a multiple of 16 dwords.
2285 while (dwords & 0xf) {
2289 data[dwords++] = RADEON_CP_PACKET2;
2297 OUT_RING(dwords);
radeon_state.c 1580 int dwords = (end - start + 3) / sizeof(u32); local in function:radeon_cp_dispatch_indirect
1583 * dwords, so if we've been given an odd number we must
1586 if (dwords & 1) {
1590 data[dwords++] = RADEON_CP_PACKET2;
1598 OUT_RING(dwords);
1612 int dwords; local in function:radeon_cp_dispatch_indices
1633 dwords = (prim->finish - prim->start + 3) / sizeof(u32);
1638 data[0] = CP_PACKET3(RADEON_3D_RNDR_GEN_INDX_PRIM, dwords - 2);
1672 int size, dwords, tex_width, blit_width, spitch; local in function:radeon_cp_dispatch_texture
1788 dwords = size / 4
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/r128/
r128_state.c 655 int dwords = (end - start + 3) / sizeof(u32); local in function:r128_cce_dispatch_indirect
658 * dwords, so if we've been given an odd number we must
661 if (dwords & 1) {
665 data[dwords++] = cpu_to_le32(R128_CCE_PACKET2);
675 OUT_RING(dwords);
711 int dwords; local in function:r128_cce_dispatch_indices
725 dwords = (end - start + 3) / sizeof(u32);
731 dwords - 2));
741 data[dwords - 1] &= 0x0000ffff;
743 data[dwords - 1] &= 0xffff0000
792 int dword_shift, dwords; local in function:r128_cce_dispatch_blit
    [all...]
  /src/sys/dev/pci/
if_mcx.c 3265 const uint32_t *dwords = buf; local in function:mcx_xor
3269 len /= sizeof(*dwords);
3272 xor ^= dwords[i];

Completed in 25 milliseconds