Searched refs:sx (Results 51 - 75 of 367) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/video/console/
H A Dfbcon_ud.c49 int sx, int dy, int dx, int height, int width)
57 area.sx = vxres - ((sx + width) * vc->vc_font.width);
67 int sx, int height, int width)
77 region.dx = vxres - ((sx + width) * vc->vc_font.width);
48 ud_bmove(struct vc_data *vc, struct fb_info *info, int sy, int sx, int dy, int dx, int height, int width) argument
66 ud_clear(struct vc_data *vc, struct fb_info *info, int sy, int sx, int height, int width) argument
H A Dfbcon.c164 static void fbcon_clear(struct vc_data *vc, int sy, int sx, int height,
173 static void fbcon_bmove(struct vc_data *vc, int sy, int sx, int dy, int dx,
187 static void fbcon_bmove_rec(struct vc_data *vc, struct display *p, int sy, int sx,
1225 static void fbcon_clear(struct vc_data *vc, int sy, int sx, int height, argument
1248 ops->clear(vc, info, real_y(p, sy), sx, b, width);
1249 ops->clear(vc, info, real_y(p, sy + b), sx, height - b,
1252 ops->clear(vc, info, real_y(p, sy), sx, height, width);
1982 static void fbcon_bmove(struct vc_data *vc, int sy, int sx, int dy, int dx, argument
2001 fbcon_bmove_rec(vc, p, sy, sx, dy, dx, height, width,
2005 static void fbcon_bmove_rec(struct vc_data *vc, struct display *p, int sy, int sx, argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/video/
H A Dtgafb.c1151 copyarea_foreward_8bpp(struct fb_info *info, u32 dx, u32 dy, u32 sx, u32 sy, argument
1173 spos = sy * line_length + sx;
1312 copyarea_backward_8bpp(struct fb_info *info, u32 dx, u32 dy, u32 sx, u32 sy, argument
1334 sepos = sy * line_length + sx + width;
1417 unsigned long dx, dy, width, height, sx, sy, vxres, vyres; local
1424 sx = area->sx;
1431 if (dx > vxres || sx > vxres || dy > vyres || sy > vyres)
1441 if (sx + width > vxres || sy + height > vyres)
1462 else if (dy == sy && dx > sx
[all...]
H A Ds1d13xxxfb.c479 u16 sx = area->sx, sy = area->sy; local
491 if ((dy > sy) || ((dy == sy) && (dx >= sx))) {
493 src = (((sy + height - 1) * stride) + (bpp * (sx + width - 1)));
498 src = (sy * stride) + (bpp * sx);
538 dbg_blit("(copyarea) sx=%d, sy=%d\n", sx, sy);
H A Dsvgalib.c209 ((area->sy == area->dy) && (area->sx > area->dx))) {
210 src = fb + area->sx * colstride + area->sy * rowstride;
213 src = fb + (area->sx + area->width - 1) * colstride
244 fb += rect->sx * colstride + rect->sy * rowstride;
265 fb += blit->sx * colstride + blit->sy * rowstride;
287 u16 pos = cursor->sx + (info->var.xoffset / 8)
H A Dhgafb.c481 src = rowaddr(info, y1) + (area->sx >> 3);
492 src = rowaddr(info, y1) + (area->sx >> 3);
H A Dsm501fb.c1277 int sx = area->sx; local
1284 if ((sx >= info->var.xres_virtual) ||
1288 if ((sx + width) >= info->var.xres_virtual)
1289 width = info->var.xres_virtual - sx - 1;
1303 if ((sx < dx) || (sy < dy)) {
1305 sx += width - 1;
1346 writel((sx << 16) | sy, fbi->regs2d + SM501_2D_SOURCE);
H A Dtdfxfb.c902 u32 sx = area->sx, sy = area->sy, dx = area->dx, dy = area->dy; local
916 if (sx + area->width > 4095) {
917 srcbase += sx * bpp >> 3;
918 sx = 0;
931 if (area->sx <= area->dx) {
934 sx += area->width - 1;
953 tdfx_outl(par, LAUNCH_2D, sx | (sy << 16));
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dsnowenc.c60 int sx= (x-xo + step/2) / step / Q2_STEP; local
63 assert(sx>=0 && sy>=0 && sx < score_stride);
65 score[sx + sy*score_stride] += v*v;
66 assert(score[sx + sy*score_stride] >= 0);
687 int sx= block_w*mb_x - block_w/2; local
689 int x0= FFMAX(0,-sx);
691 int x1= FFMIN(block_w*2, w-sx);
695 ff_snow_pred_block(s, cur, tmp, ref_stride, sx, sy, block_w*2, block_w*2, &s->block[mb_x + mb_y*b_stride], plane_index, w, h);
701 uint8_t *dst1 = dst + sx
1123 const int sx= block_w*mb_x - block_w/2; local
[all...]
H A Dansi.c53 int sx; /**< saved x cursor position (pixels) */ member in struct:__anon1867
297 s->sx = s->x;
301 s->x = av_clip(s->sx, 0, avctx->width - FONT_WIDTH);
H A Dsnow.c290 void ff_snow_pred_block(SnowContext *s, uint8_t *dst, uint8_t *tmp, int stride, int sx, int sy, int b_w, int b_h, BlockNode *block, int plane_index, int w, int h){ argument
337 sx += (mx>>4) - (HTAPS_MAX/2-1);
339 src += sx + sy*stride;
340 if( (unsigned)sx >= w - b_w - (HTAPS_MAX-2)
342 s->dsp.emulated_edge_mc(tmp + MB_SIZE, src, stride, b_w+HTAPS_MAX-1, b_h+HTAPS_MAX-1, sx, sy, w, h);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mips/math-emu/
H A Dieee754int.h64 (ieee754_csr.cx |= (x), ieee754_csr.sx |= (x))
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/mach-omap1/
H A Dlcd_dma.c171 #define PIXSTEP(sx, sy, dx, dy) (PIXADDR(dx, dy) - PIXADDR(sx, sy) - es + 1)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dsnowenc.c610 int sx= block_w*mb_x - block_w/2; local
612 int x0= FFMAX(0,-sx);
614 int x1= FFMIN(block_w*2, w-sx);
620 ff_snow_pred_block(s, cur, tmp, ref_stride, sx, sy, block_w*2, block_h*2, &s->block[mb_x + mb_y*b_stride], plane_index, w, h);
626 uint8_t *dst1 = dst + sx + (sy+y)*ref_stride;
652 memcpy(dst + sx+x0 + (sy+y)*ref_stride, cur + x0 + y*ref_stride, x1-x0);
663 distortion = ff_w97_32_c(&s->m, src + sx + sy*ref_stride, dst + sx + sy*ref_stride, ref_stride, 32);
665 distortion = ff_w53_32_c(&s->m, src + sx + sy*ref_stride, dst + sx
1061 const int sx= block_w*mb_x - block_w/2; local
[all...]
H A Dansi.c57 int sx; /**< saved x cursor position (pixels) */ member in struct:__anon3078
333 s->sx = s->x;
337 s->x = av_clip(s->sx, 0, avctx->width - FONT_WIDTH);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/xrc/
H A Dxmlres.cpp1247 long sx, sy = 0; local
1252 if (!s.BeforeFirst(wxT(',')).ToLong(&sx) ||
1263 return wxDLG_UNIT(windowToUse, wxSize(sx, sy));
1267 return wxDLG_UNIT(m_parentAsWindow, wxSize(sx, sy));
1276 return wxSize(sx, sy);
1296 long sx; local
1301 if (!s.ToLong(&sx))
1311 return wxDLG_UNIT(windowToUse, wxSize(sx, 0)).x;
1315 return wxDLG_UNIT(m_parentAsWindow, wxSize(sx, 0)).x;
1324 return sx;
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/media/video/s5p-fimc/
H A Dfimc-core.c214 int tx, ty, sx, sy; local
225 sx = s_frame->width;
227 if (sx <= 0 || sy <= 0) {
228 err("invalid source size: %d x %d", sx, sy);
232 sc->real_width = sx;
234 dbg("sx= %d, sy= %d, tx= %d, ty= %d", sx, sy, tx, ty);
236 ret = fimc_get_scaler_factor(sx, tx, &sc->pre_hratio, &sc->hfactor);
244 sc->pre_dst_width = sx / sc->pre_hratio;
247 sc->main_hratio = (sx <<
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/generic/
H A Ddatavgen.cpp861 int sx, sy; local
862 m_text->GetTextExtent(m_text->GetValue() + _T("MM"), &sx, &sy);
863 if (myPos.x + sx > parentSize.x)
864 sx = parentSize.x - myPos.x;
865 if (mySize.x > sx)
866 sx = mySize.x;
867 m_text->SetSize(sx, wxDefaultCoord);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/
H A Dfb.h342 __u32 sx; member in struct:fb_copyarea
712 __u32 sx; /* origin in the x-axis */ member in struct:fb_tilerect
723 __u32 sx; /* source origin in the x-axis */ member in struct:fb_tilearea
732 __u32 sx; /* origin in the x-axis */ member in struct:fb_tileblit
743 __u32 sx; /* cursor position in the x-axis */ member in struct:fb_tilecursor
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/demos/life/
H A Dgame.cpp362 double sx, sy; local
364 sx = 0.0;
372 sx += c->m_x;
379 sx = (sx / n) + CELLBOX / 2;
384 cell.i = (wxInt32) sx;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/scripts/
H A Dkernel-doc1722 my ($px, $sx);
1725 foreach $sx (0 .. $#sects) {
1740 if ($prm_clean eq $sects[$sx]) {
1749 "'$sects[$sx]' " .
1753 if ($nested !~ m/\Q$sects[$sx]\E/) {
1756 "'$sects[$sx]' " .
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libpostproc/
H A Dpostprocess_template.c1244 #define REAL_DERING_CORE(dst,src,ppsx,psx,sx,pplx,plx,lx,t0,t1) \
1245 "movq " #src ", " #sx " \n\t" /* src[0] */\
1246 "movq " #sx ", " #lx " \n\t" /* src[0] */\
1247 "movq " #sx ", " #t0 " \n\t" /* src[0] */\
1258 PAVGB(sx, lx) /* (src[-1] + 2src[0] + src[+1])/4 */\
1264 "psubusb " #lx ", " #sx " \n\t"\
1268 "pcmpeqb " #lx ", " #sx " \n\t" /* src[0] > a ? 0 : -1*/\
1270 "paddb " #t0 ", " #sx " \n\t"\
1279 "paddb " #sx ", " #ppsx " \n\t"\
1290 #define DERING_CORE(dst,src,ppsx,psx,sx,ppl
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libpostproc/
H A Dpostprocess_template.c1194 #define REAL_DERING_CORE(dst,src,ppsx,psx,sx,pplx,plx,lx,t0,t1) \
1195 "movq " #src ", " #sx " \n\t" /* src[0] */\
1196 "movq " #sx ", " #lx " \n\t" /* src[0] */\
1197 "movq " #sx ", " #t0 " \n\t" /* src[0] */\
1208 PAVGB(sx, lx) /* (src[-1] + 2src[0] + src[+1])/4 */\
1214 "psubusb " #lx ", " #sx " \n\t"\
1218 "pcmpeqb " #lx ", " #sx " \n\t" /* src[0] > a ? 0 : -1*/\
1220 "paddb " #t0 ", " #sx " \n\t"\
1229 "paddb " #sx ", " #ppsx " \n\t"\
1240 #define DERING_CORE(dst,src,ppsx,psx,sx,ppl
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/char/
H A DMakefile46 obj-$(CONFIG_SX) += sx.o generic_serial.o
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/gpu/drm/radeon/
H A Dr600_blit.c775 int sx, int sy, int dx, int dy,
795 sx2 = sx + w;
802 vb[2] = i2f(sx);
807 vb[6] = i2f(sx);
773 r600_blit_swap(struct drm_device *dev, uint64_t src_gpu_addr, uint64_t dst_gpu_addr, int sx, int sy, int dx, int dy, int w, int h, int src_pitch, int dst_pitch, int cpp) argument

Completed in 260 milliseconds

1234567891011>>