Searched refs:rect (Results 26 - 50 of 66) sorted by relevance

123

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/media/video/sn9c102/
H A Dsn9c102_pas106b.c138 const struct v4l2_rect* rect)
142 u8 h_start = (u8)(rect->left - s->cropcap.bounds.left) + 4,
143 v_start = (u8)(rect->top - s->cropcap.bounds.top) + 3;
137 pas106b_set_crop(struct sn9c102_device* cam, const struct v4l2_rect* rect) argument
H A Dsn9c102_mi0343.c192 const struct v4l2_rect* rect)
196 u8 h_start = (u8)(rect->left - s->cropcap.bounds.left) + 0,
197 v_start = (u8)(rect->top - s->cropcap.bounds.top) + 2;
191 mi0343_set_crop(struct sn9c102_device* cam, const struct v4l2_rect* rect) argument
H A Dsn9c102_sensor.h240 const struct v4l2_rect* rect);
245 'rect' contains width and height values that are multiple of 16: in
H A Dsn9c102_hv7131r.c209 const struct v4l2_rect* rect)
213 u8 h_start = (u8)(rect->left - s->cropcap.bounds.left) + 1,
214 v_start = (u8)(rect->top - s->cropcap.bounds.top) + 1;
208 hv7131r_set_crop(struct sn9c102_device* cam, const struct v4l2_rect* rect) argument
H A Dsn9c102_ov7630.c226 const struct v4l2_rect* rect)
230 u8 h_start = (u8)(rect->left - s->cropcap.bounds.left) + 1,
231 v_start = (u8)(rect->top - s->cropcap.bounds.top) + 1;
225 ov7630_set_crop(struct sn9c102_device* cam, const struct v4l2_rect* rect) argument
H A Dsn9c102_mi0360.c262 const struct v4l2_rect* rect)
266 u8 h_start = 0, v_start = (u8)(rect->top - s->cropcap.bounds.top) + 1;
270 h_start = (u8)(rect->left - s->cropcap.bounds.left) + 0;
274 h_start = (u8)(rect->left - s->cropcap.bounds.left) + 1;
261 mi0360_set_crop(struct sn9c102_device* cam, const struct v4l2_rect* rect) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/video/
H A Dhgafb.c447 static void hgafb_fillrect(struct fb_info *info, const struct fb_fillrect *rect) argument
452 y = rect->dy;
454 for (rows = rect->height; rows--; y++) {
455 dest = rowaddr(info, y) + (rect->dx >> 3);
456 switch (rect->rop) {
458 //fb_memset(dest, rect->color, (rect->width >> 3));
H A Dvt8623fb.c173 static void vt8623fb_iplan_fillrect(struct fb_info *info, const struct fb_fillrect *rect) argument
175 u32 fg = expand_color(rect->color);
180 dst1 = info->screen_base + (rect->dy * info->fix.line_length)
181 + ((rect->dx / 8) * 4);
183 for (y = 0; y < rect->height; y++) {
185 for (x = 0; x < rect->width; x += 8) {
240 static void vt8623fb_fillrect(struct fb_info *info, const struct fb_fillrect *rect) argument
243 && ((rect->width % 8) == 0) && ((rect->dx % 8) == 0)
245 vt8623fb_iplan_fillrect(info, rect);
[all...]
H A Darcfb.c368 const struct fb_fillrect *rect)
372 sys_fillrect(info, rect);
375 arcfb_lcd_update(par, rect->dx, rect->dy, rect->width, rect->height);
367 arcfb_fillrect(struct fb_info *info, const struct fb_fillrect *rect) argument
H A Dffb.c474 * @rect: structure defining the rectagle and operation.
476 static void ffb_fillrect(struct fb_info *info, const struct fb_fillrect *rect) argument
483 BUG_ON(rect->rop != ROP_COPY && rect->rop != ROP_XOR);
485 fg = ((u32 *)info->pseudo_palette)[rect->color];
495 ffb_rop(par, (rect->rop == ROP_COPY ?
501 upa_writel(rect->dy, &fbc->by);
502 upa_writel(rect->dx, &fbc->bx);
503 upa_writel(rect->height, &fbc->bh);
504 upa_writel(rect
[all...]
H A Datafb.c97 const struct fb_fillrect *rect);
307 * void (*fb_fillrect) (struct fb_info *info, const struct fb_fillrect *rect);
2521 static void atafb_fillrect(struct fb_info *info, const struct fb_fillrect *rect) argument
2527 if (!rect->width || !rect->height)
2534 x2 = rect->dx + rect->width;
2535 y2 = rect->dy + rect->height;
2538 width = x2 - rect
[all...]
H A Darkfb.c209 static void arkfb_iplan_fillrect(struct fb_info *info, const struct fb_fillrect *rect) argument
211 u32 fg = expand_color(rect->color);
216 dst1 = info->screen_base + (rect->dy * info->fix.line_length)
217 + ((rect->dx / 8) * 4);
219 for (y = 0; y < rect->height; y++) {
221 for (x = 0; x < rect->width; x += 8) {
278 static void arkfb_fillrect(struct fb_info *info, const struct fb_fillrect *rect) argument
281 && ((rect->width % 8) == 0) && ((rect->dx % 8) == 0)
283 arkfb_iplan_fillrect(info, rect);
[all...]
H A Ds3fb.c243 static void s3fb_iplan_fillrect(struct fb_info *info, const struct fb_fillrect *rect) argument
245 u32 fg = expand_color(rect->color);
250 dst1 = info->screen_base + (rect->dy * info->fix.line_length)
251 + ((rect->dx / 8) * 4);
253 for (y = 0; y < rect->height; y++) {
255 for (x = 0; x < rect->width; x += 8) {
310 static void s3fb_fillrect(struct fb_info *info, const struct fb_fillrect *rect) argument
313 && ((rect->width % 8) == 0) && ((rect->dx % 8) == 0)
315 s3fb_iplan_fillrect(info, rect);
[all...]
H A Dcg6.c289 * @rect: structure defining the rectagle and operation.
291 static void cg6_fillrect(struct fb_info *info, const struct fb_fillrect *rect) argument
301 sbus_writel(rect->color, &fbc->fg);
307 sbus_writel(rect->dy, &fbc->arecty);
308 sbus_writel(rect->dx, &fbc->arectx);
309 sbus_writel(rect->dy + rect->height, &fbc->arecty);
310 sbus_writel(rect->dx + rect->width, &fbc->arectx);
H A Dsvgalib.c238 void svga_tilefill(struct fb_info *info, struct fb_tilerect *rect) argument
243 int attr = (0x0F & rect->bg) << 4 | (0x0F & rect->fg);
245 fb += rect->sx * colstride + rect->sy * rowstride;
247 for (dy = 0; dy < rect->height; dy++) {
249 for (dx = 0; dx < rect->width; dx++) {
250 fb_writeb(rect->index, fb2);
H A Dsunxvr500.c146 static void e3d_fillrect(struct fb_info *info, const struct fb_fillrect *rect) argument
152 cfb_fillrect(info, rect);
154 cfb_fillrect(info, rect);
H A Dneofb.c1418 neo2200_fillrect(struct fb_info *info, const struct fb_fillrect *rect) argument
1423 dst = rect->dx + rect->dy * info->var.xres_virtual;
1424 rop = rect->rop ? 0x060000 : 0x0c0000;
1437 writel(rect->color, &par->neo2200->fgColor);
1441 writel(((u32 *) (info->pseudo_palette))[rect->color],
1448 writel((rect->height << 16) | (rect->width & 0xffff),
1543 neofb_fillrect(struct fb_info *info, const struct fb_fillrect *rect) argument
1550 neo2200_fillrect(info, rect);
[all...]
H A Dhecubafb.c237 const struct fb_fillrect *rect)
241 sys_fillrect(info, rect);
236 hecubafb_fillrect(struct fb_info *info, const struct fb_fillrect *rect) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A Ddvbsubdec.c1276 AVSubtitleRect *rect; local
1298 rect = sub->rects[i];
1303 rect->x = display->x_pos;
1304 rect->y = display->y_pos;
1305 rect->w = region->width;
1306 rect->h = region->height;
1307 rect->nb_colors = 16;
1308 rect->pict.linesize[0] = region->width;
1328 rect->pict.data[1] = av_malloc((1 << region->depth) * sizeof(uint32_t));
1329 memcpy(rect
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/video/nvidia/
H A Dnv_proto.h61 const struct fb_fillrect *rect);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/media/video/zc0301/
H A Dzc0301_sensor.h111 int (*set_crop)(struct zc0301_device*, const struct v4l2_rect* rect);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/media/video/bt8xx/
H A Dbttv-driver.c862 __s32 top = btv->crop[!!fh->do_crop].rect.top;
868 Claim scan lines crop[].rect.top to bottom. */
1273 (max(48, c->rect.width >> 4) + 3) & ~3;
1275 max(32, c->rect.height >> 4);
1278 c->max_scaled_width = c->rect.width & ~3;
1279 c->max_scaled_height = c->rect.height;
1285 c->rect = bttv_tvnorms[norm].cropcap.defrect;
1786 c.rect = bttv_tvnorms[norm].cropcap.defrect;
1825 buf->crop.top != c.rect.top ||
1826 buf->crop.left != c.rect
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/
H A Dffplay.c343 SDL_Rect rect; local
344 rect.x = x;
345 rect.y = y;
346 rect.w = w;
347 rect.h = h;
348 SDL_FillRect(screen, &rect, color);
436 static void blend_subrect(AVPicture *dst, const AVSubtitleRect *rect, int imgw, int imgh) argument
445 dstw = av_clip(rect->w, 0, imgw);
446 dsth = av_clip(rect->h, 0, imgh);
447 dstx = av_clip(rect
659 SDL_Rect rect; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Dsvga.h112 void svga_tilefill(struct fb_info *info, struct fb_tilerect *rect);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/prebuilt/WW/www/cgi-bin/
H A Djquery.flexbox.min.js866 var rect = curr.getBoundingClientRect();
867 bottom = rect.bottom;
868 height = bottom - rect.top;
893 var rect = curr.getBoundingClientRect();
894 top = rect.top;
895 height = rect.bottom - top;

Completed in 392 milliseconds

123