Searched refs:next_line (Results 1 - 23 of 23) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/video/
H A Datafb.h4 void atafb_mfb_copyarea(struct fb_info *info, u_long next_line, int sy, int sx, int dy,
6 void atafb_mfb_fillrect(struct fb_info *info, u_long next_line, u32 color,
8 void atafb_mfb_linefill(struct fb_info *info, u_long next_line,
12 void atafb_iplan2p2_copyarea(struct fb_info *info, u_long next_line, int sy, int sx, int dy,
14 void atafb_iplan2p2_fillrect(struct fb_info *info, u_long next_line, u32 color,
16 void atafb_iplan2p2_linefill(struct fb_info *info, u_long next_line,
20 void atafb_iplan2p4_copyarea(struct fb_info *info, u_long next_line, int sy, int sx, int dy,
22 void atafb_iplan2p4_fillrect(struct fb_info *info, u_long next_line, u32 color,
24 void atafb_iplan2p4_linefill(struct fb_info *info, u_long next_line,
28 void atafb_iplan2p8_copyarea(struct fb_info *info, u_long next_line, in
[all...]
H A Datafb_mfb.c24 void atafb_mfb_copyarea(struct fb_info *info, u_long next_line, argument
31 if (sx == 0 && dx == 0 && width == next_line) {
36 src = (u8 *)info->screen_base + sy * next_line + (sx >> 3);
37 dest = (u8 *)info->screen_base + dy * next_line + (dx >> 3);
40 src += next_line;
41 dest += next_line;
44 src = (u8 *)info->screen_base + (sy + height - 1) * next_line + (sx >> 3);
45 dest = (u8 *)info->screen_base + (dy + height - 1) * next_line + (dx >> 3);
48 src -= next_line;
49 dest -= next_line;
54 atafb_mfb_fillrect(struct fb_info *info, u_long next_line, u32 color, int sy, int sx, 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
[all...]
H A Datafb_iplan2p2.c24 void atafb_iplan2p2_copyarea(struct fb_info *info, u_long next_line, argument
51 src = (u8 *)info->screen_base + sy * next_line + (sx & ~15) / (8 / BPL);
52 dst = (u8 *)info->screen_base + dy * next_line + (dx & ~15) / (8 / BPL);
54 memmove32_col(dst, src, 0xff00ff, height, next_line - BPL * 2);
64 l = next_line - w * 4;
74 0xff00ff00, height, next_line - BPL * 2);
76 src = (u8 *)info->screen_base + (sy - 1) * next_line + ((sx + width + 8) & ~15) / (8 / BPL);
77 dst = (u8 *)info->screen_base + (dy - 1) * next_line + ((dx + width + 8) & ~15) / (8 / BPL);
82 memmove32_col(dst, src, 0xff00ff00, colsize, -next_line - BPL * 2);
90 l = next_line
193 atafb_iplan2p2_fillrect(struct fb_info *info, u_long next_line, u32 color, int sy, int sx, 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.c24 void atafb_iplan2p4_copyarea(struct fb_info *info, u_long next_line, argument
51 src = (u8 *)info->screen_base + sy * next_line + (sx & ~15) / (8 / BPL);
52 dst = (u8 *)info->screen_base + dy * next_line + (dx & ~15) / (8 / BPL);
54 memmove32_col(dst, src, 0xff00ff, height, next_line - BPL * 2);
64 l = next_line - w * 4;
74 0xff00ff00, height, next_line - BPL * 2);
76 src = (u8 *)info->screen_base + (sy - 1) * next_line + ((sx + width + 8) & ~15) / (8 / BPL);
77 dst = (u8 *)info->screen_base + (dy - 1) * next_line + ((dx + width + 8) & ~15) / (8 / BPL);
82 memmove32_col(dst, src, 0xff00ff00, colsize, -next_line - BPL * 2);
90 l = next_line
207 atafb_iplan2p4_fillrect(struct fb_info *info, u_long next_line, u32 color, int sy, int sx, 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 Datafb_iplan2p8.c31 void atafb_iplan2p8_copyarea(struct fb_info *info, u_long next_line, argument
58 src = (u8 *)info->screen_base + sy * next_line + (sx & ~15) / (8 / BPL);
59 dst = (u8 *)info->screen_base + dy * next_line + (dx & ~15) / (8 / BPL);
61 memmove32_col(dst, src, 0xff00ff, height, next_line - BPL * 2);
71 l = next_line - w * 4;
81 0xff00ff00, height, next_line - BPL * 2);
83 src = (u8 *)info->screen_base + (sy - 1) * next_line + ((sx + width + 8) & ~15) / (8 / BPL);
84 dst = (u8 *)info->screen_base + (dy - 1) * next_line + ((dx + width + 8) & ~15) / (8 / BPL);
89 memmove32_col(dst, src, 0xff00ff00, colsize, -next_line - BPL * 2);
97 l = next_line
242 atafb_iplan2p8_fillrect(struct fb_info *info, u_long next_line, u32 color, int sy, int sx, int height, int width) argument
288 atafb_iplan2p8_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.c123 u_long next_line; member in struct:atafb_par
610 fix->line_length = par->next_line;
687 par->next_line = linelen;
911 fix->line_length = par->next_line;
1366 par->next_line = linelen;
1817 fix->line_length = par->next_line;
1875 par->next_line = linelen;
2135 fix->line_length = par->next_line;
2151 par->next_line = external_xres_virtual * external_depth / 8;
2507 atafb_mfb_fillrect(info, par->next_line, rec
[all...]
H A Damifb.c731 u_long next_line; /* modulo for next line */ member in struct:amifb_par
1277 info->fix.type_aux = par->next_line;
1961 dst_idx += rect->dy*par->next_line*8+rect->dx;
1975 dst_idx += par->next_line*8;
2056 dst_idx += dy*par->next_line*8+dx;
2057 src_idx += sy*par->next_line*8+sx;
2060 dst_idx -= par->next_line*8;
2061 src_idx -= par->next_line*8;
2071 dst_idx += par->next_line*8;
2072 src_idx += par->next_line*
[all...]
H A Dpmag-aa-fb.c265 disp->next_line = 2048;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/minidlna-1.1.5/tagutils/
H A Dtagutils-plist.c122 goto next_line;
139 goto next_line;
143 goto next_line;
147 goto next_line;
158 next_line:
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/coreutils/
H A Dcut.c85 goto next_line;
97 goto next_line;
102 goto next_line;
109 goto next_line;
120 goto next_line;
158 next_line:
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/minidlna/tagutils/
H A Dtagutils-plist.c164 goto next_line;
168 goto next_line;
172 goto next_line;
184 next_line:
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/editors/
H A Dsed.c846 char *pattern_space, *next_line; local
854 next_line = get_next_line(&next_gets_char);
861 pattern_space = next_line;
867 next_line = get_next_line(&next_gets_char);
888 || (sed_cmd->beg_line == -1 && next_line == NULL);
901 !next_line
1040 if (next_line) {
1042 pattern_space = next_line;
1044 next_line = get_next_line(&next_gets_char);
1053 free(next_line);
[all...]
H A Dvi.c212 static char *next_line(char *); // return pointer to next line B-o-l
923 q = next_line(q);
1045 q = next_line(ls);
1175 screenbegin = next_line(screenbegin);
1177 end_scr = next_line(end_scr);
1186 tp = next_line(tp);
1269 static char *next_line(char * p) // return pointer first char next line function
1286 q = next_line(q);
1315 q = next_line(q);
1363 dot = next_line(do
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/ocsp/
H A Docsp_ht.c403 next_line:
436 goto next_line;
448 goto next_line;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/ocsp/
H A Docsp_ht.c403 next_line:
436 goto next_line;
448 goto next_line;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/dbus-1.6.8/dbus/
H A Ddbus-sha.c835 DBusString next_line; local
841 if (!_dbus_string_init (&next_line))
858 _dbus_string_pop_line (&tests, &next_line))
861 !_dbus_string_move (&next_line, 0, &line,
900 _dbus_string_free (&next_line);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavformat/
H A Drtsp.c508 goto next_line;
519 next_line:
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavformat/
H A Drtsp.c636 goto next_line;
647 next_line:
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-runtime/libasprintf/
H A Dtexi2html547 while ($_ = &next_line) {
1643 sub next_line { subroutine
1660 # used in pass 1, use &next_line
1665 while ($_ = &next_line) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/doc/
H A Dtexi2html547 while ($_ = &next_line) {
1643 sub next_line { subroutine
1660 # used in pass 1, use &next_line
1665 while ($_ = &next_line) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/gperf-3.0.4/doc/
H A Dtexi2html547 while ($_ = &next_line) {
1643 sub next_line { subroutine
1660 # used in pass 1, use &next_line
1665 while ($_ = &next_line) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dvc1dec.c5409 int next_line; local
5415 next_line = FFMIN(yline + 1, (v->sprite_height >> !!plane) - 1) * iline;
5419 src_h[sprite][1] = iplane + (xoff[sprite] >> 16) + next_line;
5432 iplane + next_line, xoff[sprite],
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libunistring-0.9.3/build-aux/
H A Dtexi2html10636 INPUT_LINE: while (defined($_ = next_line($texi_line_number)))
14185 sub next_line($) subroutine

Completed in 463 milliseconds