Searched refs:cellsize (Results 1 - 6 of 6) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/video/console/
H A Dbitblit.c30 unsigned int cellsize = vc->vc_font.height * width; local
33 offset = cellsize - (offset * width);
34 for (i = 0; i < cellsize; i++) {
79 u32 d_pitch, u32 s_pitch, u32 cellsize,
88 charmask)*cellsize;
111 u32 s_pitch, u32 cellsize,
123 charmask)*cellsize;
149 u32 cellsize = width * vc->vc_font.height; local
150 u32 maxcnt = info->pixmap.size/cellsize;
165 buf = kmalloc(cellsize, GFP_KERNE
77 bit_putcs_aligned(struct vc_data *vc, struct fb_info *info, const u16 *s, u32 attr, u32 cnt, u32 d_pitch, u32 s_pitch, u32 cellsize, struct fb_image *image, u8 *buf, u8 *dst) argument
108 bit_putcs_unaligned(struct vc_data *vc, struct fb_info *info, const u16 *s, u32 attr, u32 cnt, u32 d_pitch, u32 s_pitch, u32 cellsize, struct fb_image *image, u8 *buf, u8 *dst) argument
[all...]
H A Dfbcon_ud.c30 unsigned int cellsize = vc->vc_font.height * width; local
35 for (i = 0; i < cellsize; i++) {
87 u32 d_pitch, u32 s_pitch, u32 cellsize,
96 src = ops->fontbuffer + (scr_readw(s--) & charmask)*cellsize;
119 u32 s_pitch, u32 cellsize,
131 src = ops->fontbuffer + (scr_readw(s--) & charmask)*cellsize;
158 u32 cellsize = width * vc->vc_font.height; local
159 u32 maxcnt = info->pixmap.size/cellsize;
179 buf = kmalloc(cellsize, GFP_KERNEL);
202 width, cellsize,
85 ud_putcs_aligned(struct vc_data *vc, struct fb_info *info, const u16 *s, u32 attr, u32 cnt, u32 d_pitch, u32 s_pitch, u32 cellsize, struct fb_image *image, u8 *buf, u8 *dst) argument
116 ud_putcs_unaligned(struct vc_data *vc, struct fb_info *info, const u16 *s, u32 attr, u32 cnt, u32 d_pitch, u32 s_pitch, u32 cellsize, struct fb_image *image, u8 *buf, u8 *dst) argument
[all...]
H A Dfbcon_ccw.c100 u32 d_pitch, u32 s_pitch, u32 cellsize,
109 src = ops->fontbuffer + (scr_readw(s--) & charmask)*cellsize;
136 u32 cellsize = width * vc->vc_font.width; local
137 u32 maxcnt = info->pixmap.size/cellsize;
156 buf = kmalloc(cellsize, GFP_KERNEL);
177 width, cellsize, &image, buf, dst);
98 ccw_putcs_aligned(struct vc_data *vc, struct fb_info *info, const u16 *s, u32 attr, u32 cnt, u32 d_pitch, u32 s_pitch, u32 cellsize, struct fb_image *image, u8 *buf, u8 *dst) argument
H A Dfbcon_cw.c86 u32 d_pitch, u32 s_pitch, u32 cellsize,
95 src = ops->fontbuffer + (scr_readw(s++) & charmask)*cellsize;
122 u32 cellsize = width * vc->vc_font.width; local
123 u32 maxcnt = info->pixmap.size/cellsize;
142 buf = kmalloc(cellsize, GFP_KERNEL);
161 width, cellsize, &image, buf, dst);
84 cw_putcs_aligned(struct vc_data *vc, struct fb_info *info, const u16 *s, u32 attr, u32 cnt, u32 d_pitch, u32 s_pitch, u32 cellsize, struct fb_image *image, u8 *buf, u8 *dst) argument
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/demos/life/
H A Dlife.cpp378 int cellsize = m_canvas->GetCellSize(); local
379 GetToolBar()->EnableTool(wxID_ZOOM_IN, cellsize < 32);
380 GetToolBar()->EnableTool(wxID_ZOOM_OUT, cellsize > 1);
381 GetMenuBar()->Enable(wxID_ZOOM_IN, cellsize < 32);
382 GetMenuBar()->Enable(wxID_ZOOM_OUT, cellsize > 1);
508 int cellsize = m_canvas->GetCellSize(); local
510 if ((event.GetId() == wxID_ZOOM_IN) && cellsize < 32)
512 m_canvas->SetCellSize(cellsize * 2);
515 else if ((event.GetId() == wxID_ZOOM_OUT) && cellsize > 1)
517 m_canvas->SetCellSize(cellsize /
736 SetCellSize(int cellsize) argument
[all...]
H A Dlife.h48 void SetCellSize(int cellsize);

Completed in 60 milliseconds