Searched refs:dx (Results 1 - 25 of 119) sorted by relevance

12345

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-m68k/
H A Dmac_mouse.h15 short dx; member in struct:mouse_status
H A Datarikb.h22 void ikbd_mouse_kbd_mode(int dx, int dy);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/video/
H A Datafb.h5 int dx, int height, int width);
9 int dy, int dx, u32 width,
13 int dx, int height, int width);
17 int dy, int dx, u32 width,
21 int dx, int height, int width);
25 int dy, int dx, u32 width,
29 int dx, int height, int width);
33 int dy, int dx, u32 width,
H A Dc2p.h13 extern void c2p(u8 *dst, const u8 *src, u32 dx, u32 dy, u32 width, u32 height,
H A Datafb_mfb.c25 int sy, int sx, int dy, int dx,
31 if (sx == 0 && dx == 0 && width == next_line) {
37 dest = (u8 *)info->screen_base + dy * next_line + (dx >> 3);
45 dest = (u8 *)info->screen_base + (dy + height - 1) * next_line + (dx >> 3);
78 int dy, int dx, u32 width,
84 dest = (u8 *)info->screen_base + dy * next_line + (dx >> 3);
24 atafb_mfb_copyarea(struct fb_info *info, u_long next_line, int sy, int sx, int dy, int dx, int height, int width) argument
77 atafb_mfb_linefill(struct fb_info *info, u_long next_line, int dy, int dx, u32 width, const u8 *data, u32 bgcolor, u32 fgcolor) argument
H A Datafb_iplan2p2.c25 int sy, int sx, int dy, int dx,
44 u_int upwards = (dy < sy) || (dy == sy && dx < sx);
47 if (!((sx ^ dx) & 15)) {
52 dst = (u8 *)info->screen_base + dy * next_line + (dx & ~15) / (8 / BPL);
77 dst = (u8 *)info->screen_base + (dy - 1) * next_line + ((dx + width + 8) & ~15) / (8 / BPL);
111 dst = (u8 *)info->screen_base + dy * next_line + (dx & ~15) / (8 / BPL);
153 dst = (u8 *)info->screen_base + (dy - 1) * next_line + ((dx + width + 8) & ~15) / (8 / BPL);
158 if ((dx + width) & 15)
240 int dy, int dx, u32 width,
248 dest = (u32 *)(info->screen_base + dy * next_line + (dx
24 atafb_iplan2p2_copyarea(struct fb_info *info, u_long next_line, int sy, int sx, int dy, int dx, int height, int width) argument
239 atafb_iplan2p2_linefill(struct fb_info *info, u_long next_line, int dy, int dx, u32 width, const u8 *data, u32 bgcolor, u32 fgcolor) argument
[all...]
H A Datafb_iplan2p4.c25 int sy, int sx, int dy, int dx,
44 u_int upwards = (dy < sy) || (dy == sy && dx < sx);
47 if (!((sx ^ dx) & 15)) {
52 dst = (u8 *)info->screen_base + dy * next_line + (dx & ~15) / (8 / BPL);
77 dst = (u8 *)info->screen_base + (dy - 1) * next_line + ((dx + width + 8) & ~15) / (8 / BPL);
111 dst = (u8 *)info->screen_base + dy * next_line + (dx & ~15) / (8 / BPL);
160 dst = (u8 *)info->screen_base + (dy - 1) * next_line + ((dx + width + 8) & ~15) / (8 / BPL);
165 if ((dx + width) & 15)
254 int dy, int dx, u32 width,
262 dest = (u32 *)(info->screen_base + dy * next_line + (dx
24 atafb_iplan2p4_copyarea(struct fb_info *info, u_long next_line, int sy, int sx, int dy, int dx, int height, int width) argument
253 atafb_iplan2p4_linefill(struct fb_info *info, u_long next_line, int dy, int dx, u32 width, const u8 *data, u32 bgcolor, u32 fgcolor) argument
[all...]
H A Ddnfb.c162 dest = area->dy * (info->fix.line_length >> 1) + (area->dx >> 4);
166 x_end = area->dx + area->width - 1;
167 x_word_count = (x_end >> 4) - (area->dx >> 4) + 1;
168 start_mask = 0xffff0000 >> (area->dx & 0xf);
171 (((area->dx & 0xf) - (area->sx & 0xf)) % 16) | (0x4 << 5));
172 if ((area->dx & 0xf) < (area->sx & 0xf))
176 x_end = area->dx - area->width + 1;
177 x_word_count = (area->dx >> 4) - (x_end >> 4) + 1;
178 start_mask = 0x7ffff >> (area->dx & 0xf);
181 ((-((area->sx & 0xf) - (area->dx
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/input/mouse/
H A Damimouse.c42 int nx, ny, dx, dy; local
49 dx = nx - amimouse_lastx;
52 if (dx < -127) dx = (256 + nx) - amimouse_lastx;
53 if (dx > 127) dx = (nx - 256) - amimouse_lastx;
62 input_report_rel(amimouse_dev, REL_X, dx);
H A Datarimouse.c74 int buttons, dx, dy; local
86 dx = buf[1];
89 input_report_rel(atamouse_dev, REL_X, dx);
H A Drpcmouse.c41 short x, y, dx, dy, b; local
47 dx = x - rpcmouse_lastx;
53 input_report_rel(dev, REL_X, dx);
H A Dlogibm.c82 char dx, dy; local
86 dx = (inb(LOGIBM_DATA_PORT) & 0xf);
88 dx |= (inb(LOGIBM_DATA_PORT) & 0xf) << 4;
96 input_report_rel(logibm_dev, REL_X, dx);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A Dtta.c86 int32_t dx[MAX_ORDER]; member in struct:TTAFilter
120 register int32_t *dl = c->dl, *qm = c->qm, *dx = c->dx, sum = c->round; local
131 dx += 8;
133 sum += *dl++ * (*qm -= *dx++), qm++;
134 sum += *dl++ * (*qm -= *dx++), qm++;
135 sum += *dl++ * (*qm -= *dx++), qm++;
136 sum += *dl++ * (*qm -= *dx++), qm++;
137 sum += *dl++ * (*qm -= *dx++), qm++;
138 sum += *dl++ * (*qm -= *dx
[all...]
H A Dvmnc.c117 static void put_cursor(uint8_t *dst, int stride, VmncContext *c, int dx, int dy) argument
174 static av_always_inline void paint_rect(uint8_t *dst, int dx, int dy, int w, int h, int color, int bpp, int stride) argument
177 dst += dx * bpp + dy * stride;
292 int dx, dy, w, h, depth, enc, chunks, res, size_left; local
311 dx = c->cur_x;
312 if(dx < 0) {
313 w += dx;
314 dx = 0;
322 outptr = c->pic.data[0] + dx * c->bpp2 + dy * c->pic.linesize[0];
332 dx
[all...]
H A Dlibopenjpeg.c42 return(image->comps[0].dx == image->comps[1].dx &&
43 image->comps[1].dx == image->comps[2].dx &&
110 av_log(avctx, AV_LOG_ERROR, "%dx%d dimension invalid.\n", width, height);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/video/savage/
H A Dsavagefb_accel.c33 int sx = region->sx, dx = region->dx; local
43 if (dx <= sx) {
47 dx += region->width - 1;
60 BCI_SEND(BCI_X_Y(dx, dy));
87 BCI_SEND( BCI_X_Y(rect->dx, rect->dy) );
127 BCI_SEND(BCI_CLIP_LR(image->dx, image->dx + image->width - 1));
130 BCI_SEND(BCI_X_Y(image->dx, image->dy));
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-i386/mach-default/
H A Dapm.h16 "mov %%dx, %%ds\n\t" \
17 "mov %%dx, %%es\n\t" \
18 "mov %%dx, %%fs\n\t" \
19 "mov %%dx, %%gs\n\t"
53 int cx, dx, si; local
68 : "=a" (*eax), "=b" (error), "=c" (cx), "=d" (dx),
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/video/aty/
H A Dradeon_accel.c44 OUTREG(DST_Y_X, (region->dy << 16) | region->dx);
69 modded.dx >= vxres || modded.dy >= vyres)
72 if(modded.dx + modded.width > vxres) modded.width = vxres - modded.dx;
82 u32 sx, sy, dx, dy, w, h; local
85 dx = area->dx; dy = area->dy;
87 xdir = sx - dx;
90 if ( xdir < 0 ) { sx += w-1; dx += w-1; }
106 OUTREG(DST_Y_X, (dy << 16) | dx);
[all...]
H A Dmach64_accel.c26 static u32 rotation24bpp(u32 dx, u32 direction) argument
30 rotation = (dx / 4) % 6;
32 rotation = ((dx + 2) / 4) % 6;
195 u32 sx = area->sx, dx = area->dx, width = area->width, rotation = 0; local
210 dx *= 3;
220 if (sx < dx) {
221 dx += width - 1;
227 rotation = rotation24bpp(dx, direction);
235 draw_rect(dx, d
241 u32 color = rect->color, dx = rect->dx, width = rect->width, rotation = 0; local
277 u32 src_bytes, dx = image->dx, dy = image->dy, width = image->width; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/coreutils/
H A Dsort.c194 double dx = strtod(x, &xx); local
202 else if (dx != dx)
207 else if (1.0 / dx == 0.0) {
208 if (dx < 0)
215 retval = (dx > dy) ? 1 : ((dx < dy) ? -1 : 0);
220 int dx; local
224 dx = thyme.tm_mon;
231 retval = (dx
236 double dx = atof(x); local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/jpeg-7/
H A Djmemdosa.asm50 push dx
54 lds dx,dword ptr [bp+10] ; get filename pointer
63 pop dx
85 push dx
95 pop dx
117 push dx
121 mov dx,word ptr [bp+8] ; LS offset
129 pop dx
151 push dx
155 lds dx,dwor
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/video/sis/
H A Dsis_accel.c336 if(!rect->width || !rect->height || rect->dx >= vxres || rect->dy >= vyres)
340 width = ((rect->dx + rect->width) > vxres) ? (vxres - rect->dx) : rect->width;
355 SiS300SubsequentSolidFillRect(ivideo, rect->dx, rect->dy, width, height);
362 SiS310SubsequentSolidFillRect(ivideo, rect->dx, rect->dy, width, height);
389 area->dx >= vxres || area->dy >= vyres)
394 if((area->dx + width) > vxres) width = vxres - area->dx;
402 if(area->sx < area->dx) xdir = 0;
410 area->dx, are
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/nsswitch/
H A Dwinbind_nss_irix.c92 winbind_xid_t **last, *dx; local
95 for (last = &winbind_xids, dx = winbind_xids; dx && (dx->xid != xid);
96 last = &dx->next, dx = dx->next);
97 if (dx) {
98 *last = dx->next;
99 result = dx
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/isdn/sc/
H A Dmessage.h38 #define IS_CM_MESSAGE(mesg, tx, cx, dx) \
41 &&(mesg.code == cmRsp##dx))
46 #define IS_CE_MESSAGE(mesg, tx, cx, dx) \
49 &&(mesg.code == ceRsp##tx##dx))
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/video/console/
H A Dfbcon_ud.c48 int sx, int dy, int dx, int height, int width)
58 area.dx = vxres - ((dx + width) * vc->vc_font.width);
76 region.dx = vxres - ((sx + width) * vc->vc_font.width);
173 image.dx = vxres - ((xx + count) * vc->vc_font.width);
207 image.dx += image.width;
236 region.dx = info->var.xoffset;
244 region.dx = info->var.xoffset;
260 int err = 1, dx, dy; local
318 dx
47 ud_bmove(struct vc_data *vc, struct fb_info *info, int sy, int sx, int dy, int dx, int height, int width) argument
[all...]

Completed in 216 milliseconds

12345