Searched refs:ypos (Results 1 - 25 of 48) sorted by relevance

12

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/samples/joytest/
H A Djoytest.cpp38 long ypos = -1; variable
146 if (xpos > -1 && ypos > -1 && event.IsMove() && event.ButtonIsDown())
149 dc.DrawLine(xpos, ypos, pt.x, pt.y);
153 ypos = pt.y;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Droqvideodec.c41 int vqid, xpos, ypos, xp, yp, x, y, mx, my; local
73 xpos = ypos = 0;
75 for (yp = ypos; yp < ypos + 16; yp += 8)
149 ypos += 16;
151 if(ypos >= ri->height)
H A Dindeo3.c74 int16_t ypos; member in struct:Cell
231 offset_dst = (cell->ypos << 2) * plane->pitch + (cell->xpos << 2);
237 if ((cell->ypos << 2) + mv_y < -1 || (cell->xpos << 2) + mv_x < 0 ||
238 ((cell->ypos + cell->height) << 2) + mv_y > plane->height ||
367 if (is_top_of_cell && !cell->ypos) {\
390 if (is_top_of_cell && !cell->ypos) {\
591 offset = (cell->ypos << 2) * plane->pitch + (cell->xpos << 2);
608 if ((cell->ypos << 2) + mv_y < -1 || (cell->xpos << 2) + mv_x < 0 ||
609 ((cell->ypos + cell->height) << 2) + mv_y > plane->height ||
735 curr_cell.ypos
[all...]
H A Divi_common.c293 tile->ypos = y;
399 || mb->ypos + dmv_y < 0
400 || mb->ypos + dmv_y + band->mb_size + cy > band->aheight) {
528 offs = tile->ypos * band->pitch + tile->xpos;
534 for (y = tile->ypos; y < (tile->ypos + tile->height); y += band->mb_size) {
539 mb->ypos = y;
600 src = band->ref_buf + tile->ypos * band->pitch + tile->xpos;
601 dst = band->buf + tile->ypos * band->pitch + tile->xpos;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/html/
H A Dm_tables.cpp591 int *ypos = new int[m_NumRows + 1]; local
597 ypos[0] = m_Spacing;
598 for (actrow = 1; actrow <= m_NumRows; actrow++) ypos[actrow] = -1;
601 if (ypos[actrow] == -1) ypos[actrow] = ypos[actrow-1];
614 if (ypos[actrow] + actcell->GetHeight() + m_CellInfo[actrow][actcol].rowspan * m_Spacing > ypos[actrow + m_CellInfo[actrow][actcol].rowspan])
615 ypos[actrow + m_CellInfo[actrow][actcol].rowspan] =
616 ypos[actro
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/samples/docview/
H A Dview.cpp35 float ypos = -1; variable
257 if (xpos > -1 && ypos > -1 && event.Dragging())
264 newLine->y1 = (long)ypos;
269 dc.DrawLine( (long)xpos, (long)ypos, pt.x, pt.y);
272 ypos = pt.y;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/samples/docvwmdi/
H A Dview.cpp35 float ypos = -1; variable
236 if (xpos > -1 && ypos > -1 && event.Dragging())
243 newLine->y1 = (long)ypos;
248 dc.DrawLine( (long)xpos, (long)ypos, pt.x, pt.y);
251 ypos = pt.y;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/video/console/
H A Dfbcon.h226 static inline int real_y(struct display *p, int ypos) argument
230 ypos += p->yscroll;
231 return ypos < rows ? ypos : ypos - rows;
H A Dsticon.c87 static void sticon_putc(struct vc_data *conp, int c, int ypos, int xpos) argument
97 sti_putc(sticon_sti, c, ypos, xpos);
104 int count, int ypos, int xpos)
116 sti_putc(sticon_sti, scr_readw(s++), ypos, xpos++);
103 sticon_putcs(struct vc_data *conp, const unsigned short *s, int count, int ypos, int xpos) argument
H A Dnewport_con.c372 static void newport_putc(struct vc_data *vc, int charattr, int ypos, argument
380 ypos <<= 4;
382 newport_render_background(xpos, ypos, xpos, ypos,
393 npregs->set.xystarti = (xpos << 16) | ((ypos + topscan) & 0x3ff);
402 int count, int ypos, int xpos)
411 ypos <<= 4;
415 newport_render_background(xpos, ypos,
416 xpos + ((count - 1) << 3), ypos,
434 (xpos << 16) | ((ypos
401 newport_putcs(struct vc_data *vc, const unsigned short *s, int count, int ypos, int xpos) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/mac/carbon/
H A Dstatbrma.cpp88 int ypos = 1; local
91 ypos++;
95 dc.DrawText(text, xpos, ypos);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/
H A DMuleNotebook.cpp209 long xpos, ypos; local
210 event.GetPosition(&xpos, &ypos);
213 int tab = HitTest(wxPoint(xpos,ypos),&flags);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Droqvideodec.c39 int vqid, xpos, ypos, xp, yp, x, y, mx, my; local
71 xpos = ypos = 0;
79 for (yp = ypos; yp < ypos + 16; yp += 8)
161 ypos += 16;
163 if(ypos >= ri->height)
H A Dindeo3.c76 int16_t ypos; member in struct:Cell
238 offset_dst = (cell->ypos << 2) * plane->pitch + (cell->xpos << 2);
247 if ((cell->ypos << 2) + mv_y < -1 || (cell->xpos << 2) + mv_x < 0 ||
248 ((cell->ypos + cell->height) << 2) + mv_y > plane->height ||
375 if (is_top_of_cell && !cell->ypos) {\
398 if (is_top_of_cell && !cell->ypos) {\
600 offset = (cell->ypos << 2) * plane->pitch + (cell->xpos << 2);
618 if ((cell->ypos << 2) + mv_y < -1 || (cell->xpos << 2) + mv_x < 0 ||
619 ((cell->ypos + cell->height) << 2) + mv_y > plane->height ||
747 curr_cell.ypos
[all...]
H A Divi_common.c389 tile->ypos = y;
684 mb->ypos + dmv_y < 0 ||
685 mb->ypos + dmv_y + band->mb_size + cy > band->aheight) {
699 mb->ypos + dmv_y < 0 ||
700 mb->ypos + dmv_y + band->mb_size + cy > band->aheight) {
776 offs = tile->ypos * band->pitch + tile->xpos;
782 for (y = tile->ypos; y < (tile->ypos + tile->height); y += band->mb_size) {
787 mb->ypos = y;
822 || mb->ypos
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/mac/classic/
H A Dstatbrma.cpp77 int ypos = 1 ; local
81 dc.DrawText(text, xpos, ypos);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/tiff/
H A Dtif_jpeg.c854 int ypos; local
856 for (ypos = 0; ypos < vsamp; ypos++) {
857 JSAMPLE *inptr = sp->ds_buffer[ci][sp->scancount*vsamp + ypos];
1225 int clumpoffset, ci, xpos, ypos; local
1252 for (ypos = 0; ypos < vsamp; ypos++) {
1254 outptr = sp->ds_buffer[ci][sp->scancount*vsamp + ypos];
1304 int ci, ypos, n; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/samples/sashtest/
H A Dsashtest.cpp36 long ypos = -1; variable
328 if (xpos > -1 && ypos > -1 && event.Dragging())
331 dc.DrawLine(xpos, ypos, pt.x, pt.y);
334 ypos = pt.y;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/input/touchscreen/
H A Dmigor_ts.c51 unsigned short xpos, ypos; local
70 ypos = ((buf[9] & 0x03) << 8 | buf[8]);
76 input_report_abs(priv->input, ABS_X, ypos); /*X-Y swap*/
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/video/
H A Dau1200fb.c119 unsigned int ypos; member in struct:au1200_lcd_window_regs_t
193 int ypos; member in struct:window_settings::__anon16249
224 /* xres, yres, xpos, ypos */ 0, 0, 0, 0,
230 /* xres, yres, xpos, ypos */ 100, 100, 100, 100,
237 /* xres, yres, xpos, ypos */ 0, 0, 0, 0,
243 /* xres, yres, xpos, ypos */ 0, 0, 0, 0,
258 /* xres, yres, xpos, ypos */ 320, 240, 5, 5,
264 /* xres, yres, xpos, ypos */ 0, 0, 0, 0,
270 /* xres, yres, xpos, ypos */ 100, 100, 0, 0,
277 /* xres, yres, xpos, ypos */ 20
722 au1200_setlocation(struct au1200fb_device *fbdev, int plane, int xpos, int ypos) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/jpeg/
H A Djccoefct.c150 JDIMENSION ypos, xpos; local
173 ypos = yoffset * DCTSIZE; /* ypos == (yoffset+yindex) * DCTSIZE */
180 ypos, xpos, (JDIMENSION) blockcnt);
198 ypos += DCTSIZE;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/samples/foldbar/extended/
H A Dextended.cpp39 long ypos = -1; variable
492 if (xpos > -1 && ypos > -1 && event.Dragging())
495 dc.DrawLine(xpos, ypos, pt.x, pt.y);
498 ypos = pt.y;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/samples/mdi/
H A Dmdi.cpp62 static long ypos = -1; variable
392 if (xpos > -1 && ypos > -1 && event.Dragging())
395 dc.DrawLine(xpos, ypos, pt.x, pt.y);
401 ypos = pt.y;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/dvb/
H A Dvideo.h175 __u32 ypos; /* 23-22 auto action mode */ member in struct:video_highlight
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/jpeg-7/
H A Djccoefct.c150 JDIMENSION ypos, xpos; local
175 ypos = yoffset * compptr->DCT_v_scaled_size;
176 /* ypos == (yoffset+yindex) * DCTSIZE */
183 ypos, xpos, (JDIMENSION) blockcnt);
201 ypos += compptr->DCT_v_scaled_size;

Completed in 499 milliseconds

12