Searched refs:pitch (Results 26 - 50 of 52) sorted by relevance

123

/freebsd-11.0-release/sys/dev/drm/
H A Dmga_drm.h148 unsigned int pitch; member in struct:__anon9784
H A Dr128_drm.h280 int pitch; member in struct:drm_r128_blit
H A Dr600_blit.c1205 int pitch, slice; local
1214 pitch = (w / 8) - 1;
1234 OUT_RING((pitch << 0) | (slice << 10));
1381 int format, int w, int h, int pitch, u64 gpu_addr)
1391 sq_tex_resource_word0 |= ((((pitch >> 3) - 1) << 8) |
1380 set_tex_resource(drm_radeon_private_t *dev_priv, int format, int w, int h, int pitch, u64 gpu_addr) argument
H A Dr128_state.c283 u32 pitch, offset; local
306 pitch = dev_priv->back_pitch >> 3;
318 OUT_RING((pitch << 21) | (offset >> 5));
861 data[2] = cpu_to_le32((blit->pitch << 21) | (blit->offset >> 5));
H A Dmga_state.c53 unsigned int pitch = dev_priv->front_pitch; local
68 MGA_YTOP, box->y1 * pitch, MGA_YBOT, (box->y2 - 1) * pitch);
H A Dradeon_drm.h645 int pitch; member in struct:drm_radeon_texture
H A Dmach64_state.c760 (blit->pitch << 22) | (blit->offset >> 3));
H A Dr600_cp.c2313 if (!radeon_check_offset(dev_priv, tex->offset + tex->height * tex->pitch - 1)) {
2318 size = tex->height * tex->pitch;
H A Dradeon_state.c1727 texpitch = tex->pitch;
1749 tex->offset >> 10, tex->pitch, tex->format,
1798 since minimum tex pitch is 64 bytes and we need this to match
/freebsd-11.0-release/sys/dev/drm2/i915/
H A Di915_drm.h62 unsigned int pitch; member in struct:_drm_i915_init
99 int pitch; member in struct:_drm_i915_sarea
H A Dintel_drv.h659 unsigned int pitch);
H A Dintel_display.c2013 unsigned int pitch)
2024 return tile_rows * pitch * 8 + tiles * 4096;
2028 offset = *y * pitch + *x * cpp;
6633 u32 pitch = DIV_ROUND_UP(width * bpp, 8); local
6634 return roundup2(pitch, 64);
6640 u32 pitch = intel_framebuffer_pitch_for_width(mode->hdisplay, bpp); local
6641 return roundup2(pitch * mode->vdisplay, PAGE_SIZE);
7440 * Note that pitch changes could also affect these register.
8626 DRM_DEBUG("pitch (%d) must be at least 64 byte aligned\n",
8633 DRM_DEBUG("pitch (
2010 intel_gen4_compute_page_offset(int *x, int *y, unsigned int tiling_mode, unsigned int cpp, unsigned int pitch) argument
[all...]
/freebsd-11.0-release/sys/dev/drm2/radeon/
H A Dr300.c771 track->cb[i].pitch = idx_value & 0x3FFE;
855 track->zb.pitch = idx_value & 0x3FFC;
1001 track->textures[i].pitch = tmp + 1;
1106 track->aa.pitch = idx_value & 0x3FFE;
H A Devergreen_cs.c221 dev_warn(p->dev, "%s:%d %s pitch %d invalid must be aligned with %d\n",
244 dev_warn(p->dev, "%s:%d %s pitch %d invalid must be aligned with %d (%d %d %d)\n",
287 dev_warn(p->dev, "%s:%d %s pitch %d invalid must be aligned with %d\n",
404 unsigned pitch, slice, mslice; local
409 pitch = track->cb_color_pitch[id];
411 surf.nbx = (pitch + 1) * 8;
515 /* pitch must be 16 htiles aligned == 16 * 8 pixel aligned */
571 unsigned pitch, slice, mslice; local
576 pitch = G_028058_PITCH_TILE_MAX(track->db_depth_size);
578 surf.nbx = (pitch
668 unsigned pitch, slice, mslice; local
[all...]
H A Dradeon_asic.h94 uint32_t tiling_flags, uint32_t pitch,
328 uint32_t tiling_flags, uint32_t pitch,
H A Dradeon.h345 u32 pitch; member in struct:radeon_bo
752 int format, int w, int h, int pitch,
1262 uint32_t tiling_flags, uint32_t pitch,
H A Dr600_cp.c2510 if (!radeon_check_offset(dev_priv, tex->offset + tex->height * tex->pitch - 1)) {
2515 size = tex->height * tex->pitch;
H A Dradeon_state.c1765 texpitch = tex->pitch;
1787 tex->offset >> 10, tex->pitch, tex->format,
1836 since minimum tex pitch is 64 bytes and we need this to match
/freebsd-11.0-release/sys/dev/bktr/
H A Dbktr_core.c2765 volatile uint32_t pitch; local
2810 pitch = bktr->video.width;
2814 pitch = cols*Bpp;
2867 target_buffer += interlace * pitch;
2892 target_buffer = buffer+pitch;
2924 target_buffer += interlace * pitch;
2947 volatile uint32_t pitch; local
2982 pitch = bktr->video.width;
2986 pitch = cols*Bpp;
3021 target_buffer += interlace * pitch;
[all...]
/freebsd-11.0-release/sys/dev/mn/
H A Dif_mn.c586 int chan, pitch, len; local
604 pitch = 0;
611 pitch++;
641 if (pitch)
643 sc->name, chan, pitch);
/freebsd-11.0-release/sys/arm/broadcom/bcm2835/
H A Dbcm2835_fb.c162 sc->stride = fb.pitch;
176 "fbswap: %d, pitch %d, base 0x%08x, screen_size %d\n",
177 sc->fbswap, fb.pitch, fb.base, fb.size);
/freebsd-11.0-release/sys/dev/syscons/
H A Dsyscons.h581 void sc_bell(scr_stat *scp, int pitch, int duration);
H A Dsyscons.c3844 sc_bell(scr_stat *scp, int pitch, int duration) argument
3859 } else if (duration != 0 && pitch != 0) {
3861 pitch *= 2;
3862 sysbeep(1193182 / pitch, duration);
/freebsd-11.0-release/sys/dev/drm2/
H A Ddrm_fb_helper.c977 void drm_fb_helper_fill_fix(struct fb_info *info, uint32_t pitch, argument
980 info->fb_stride = pitch;
H A Ddrm_crtc.c2159 r.pitches[0] = or->pitch;
2304 DRM_DEBUG_KMS("bad pitch %u for plane %d\n", r->pitches[i], i);
2472 r->pitch = fb->pitches[0];

Completed in 354 milliseconds

123