[go: nahoru, domu]

Searched defs:pitch (Results 1 - 25 of 83) sorted by relevance

1234

/drivers/gpu/drm/nouveau/core/subdev/fb/
H A Dnv46.c30 nv46_fb_tile_init(struct nouveau_fb *pfb, int i, u32 addr, u32 size, u32 pitch, argument
40 tile->pitch = pitch;
H A Dnv10.c30 nv10_fb_tile_init(struct nouveau_fb *pfb, int i, u32 addr, u32 size, u32 pitch, argument
35 tile->pitch = pitch;
43 tile->pitch = 0;
51 nv_wr32(pfb, 0x100248 + (i * 0x10), tile->pitch);
H A Dnv20.c30 nv20_fb_tile_init(struct nouveau_fb *pfb, int i, u32 addr, u32 size, u32 pitch, argument
35 tile->pitch = pitch;
64 tile->pitch = 0;
73 nv_wr32(pfb, 0x100248 + (i * 0x10), tile->pitch);
H A Dnv44.c30 nv44_fb_tile_init(struct nouveau_fb *pfb, int i, u32 addr, u32 size, u32 pitch, argument
36 tile->pitch = pitch;
43 nv_wr32(pfb, 0x100608 + (i * 0x10), tile->pitch);
H A Dnv30.c30 nv30_fb_tile_init(struct nouveau_fb *pfb, int i, u32 addr, u32 size, u32 pitch, argument
45 tile->pitch = pitch;
/drivers/gpu/drm/qxl/
H A Dqxl_dumb.c40 uint32_t pitch, format; local
41 pitch = args->width * ((args->bpp + 1) / 8);
42 args->size = pitch * args->height;
58 surf.stride = pitch;
66 args->pitch = pitch;
/drivers/video/fbdev/via/
H A Dvia_modesetting.c155 void via_set_primary_pitch(u32 pitch) argument
157 DEBUG_MSG(KERN_DEBUG "via_set_primary_pitch(0x%08X)\n", pitch);
161 pitch = pitch >> 3;
162 via_write_reg(VIACR, 0x13, pitch & 0xFF);
163 via_write_reg_mask(VIACR, 0x35, (pitch >> (8 - 5)) & 0xE0, 0xE0);
166 void via_set_secondary_pitch(u32 pitch) argument
168 DEBUG_MSG(KERN_DEBUG "via_set_secondary_pitch(0x%08X)\n", pitch);
169 pitch = pitch >>
[all...]
/drivers/gpu/drm/rcar-du/
H A Drcar_du_plane.h49 unsigned int pitch; member in struct:rcar_du_plane
/drivers/gpu/drm/via/
H A Dvia_verifier.h41 uint32_t pitch[2][10]; member in struct:__anon1055
/drivers/staging/speakup/
H A Dspeakup_dtlk.h40 u_char pitch; /* nP; 0-99 */ member in struct:synth_settings
/drivers/video/console/
H A Dfbcon_rotate.h23 static inline int pattern_test_bit(u32 x, u32 y, u32 pitch, const char *pat) argument
25 u32 tmp = (y * pitch) + x, index = tmp / 8, bit = tmp % 8;
31 static inline void pattern_set_bit(u32 x, u32 y, u32 pitch, char *pat) argument
33 u32 tmp = (y * pitch) + x, index = tmp / 8, bit = tmp % 8;
/drivers/gpu/drm/armada/
H A Darmada_drm.h34 uint32_t pitch = bpp != 4 ? width * ((bpp + 7) / 8) : width / 2; local
36 /* 88AP510 spec recommends pitch be a multiple of 128 */
37 return ALIGN(pitch, 128);
/drivers/gpu/drm/nouveau/
H A Dnouveau_display.h31 int crtc, bpp, pitch, x, y; member in struct:nouveau_page_flip_state
/drivers/video/fbdev/
H A Dvalkyriefb.h88 int pitch[2]; /* bytes/line, indexed by color_mode */ member in struct:valkyrie_regvals
H A Dcontrolfb.h67 struct preg pitch; /* addrs diff between scan lines */ member in struct:control_regs
H A Dplatinumfb.h61 int pitch[3]; member in struct:platinum_regvals
H A Dvalkyriefb.c259 int pitch; local
262 if ((pitch = init->pitch[color_mode]) == 0)
263 pitch = 2 * init->pitch[0];
264 return init->vres * pitch;
310 || valkyrie_reg_init[default_vmode-1]->pitch[default_cmode] == 0
497 if (init->pitch[cmode] == 0) {
/drivers/gpu/drm/nouveau/dispnv04/
H A Doverlay.c356 int pitch, ret, i; local
364 pitch = ALIGN(src_w * 4, 0x100);
366 if (pitch > 0xffff)
389 nvif_wr32(dev, NV_PVIDEO_BUFF0_PITCH_LENGTH + 4 * i, pitch);
/drivers/gpu/drm/omapdrm/
H A Domap_drv.h259 static inline int align_pitch(int pitch, int width, int bpp) argument
263 pitch = max(pitch, width * bytespp);
267 return ALIGN(pitch, 8 * bytespp);
/drivers/gpu/drm/radeon/
H A Dr100_track.h14 unsigned pitch; member in struct:r100_cs_track_cb
38 unsigned pitch; member in struct:r100_cs_track_texture
/drivers/video/fbdev/core/
H A Dcfbimgblt.c145 u32 val, pitch = p->fix.line_length; local
195 dst1 += pitch;
198 dst2 += pitch;
H A Dsysimgblt.c117 u32 val, pitch = p->fix.line_length; local
166 dst1 += pitch;
169 dst2 += pitch;
/drivers/video/fbdev/i810/
H A Di810_accel.c183 * @pitch: pixels per line of the buffer
195 static inline void color_blit(int width, int height, int pitch, int dest, argument
204 PUT_RING(rop << 16 | pitch | SOLIDPATTERN | DYN_COLOR_EN | blit_bpp);
269 PUT_RING(PARSER | FRONT_BUFFER | ((par->pitch >> 3) << 8));
329 u32 sx, sy, dx, dy, pitch, width, height, src, dest, xdir; local
353 pitch = info->fix.line_length;
356 pitch = (-(info->fix.line_length)) & 0xFFFF;
363 source_copy_blit(width, height, pitch, xdir, src, dest,
/drivers/video/fbdev/nvidia/
H A Dnv_accel.c203 int pitch, i; local
205 pitch = info->fix.line_length;
258 NVDmaNext(par, pitch | (pitch << 16));
/drivers/gpu/drm/mga/
H A Dmga_state.c48 unsigned int pitch = dev_priv->front_pitch; local
63 MGA_YTOP, box->y1 * pitch, MGA_YBOT, (box->y2 - 1) * pitch);

Completed in 374 milliseconds

1234