Searched refs:height (Results 1 - 25 of 252) sorted by relevance

1234567891011

/asus-wl-520gu-7.0.1.45/src/router/rcamdmips/
H A Dccvt.h62 void ccvt_420i_bgr24(int width, int height, void *src, void *dst);
63 void ccvt_420i_rgb24(int width, int height, void *src, void *dst);
64 void ccvt_420i_bgr32(int width, int height, void *src, void *dst);
65 void ccvt_420i_rgb32(int width, int height, void *src, void *dst);
68 void ccvt_420p_bgr24(int width, int height, void *src, void *srcu, void *srcv, void *dst);
69 void ccvt_420p_rgb24(int width, int height, void *src, void *srcu, void *srcv, void *dst);
70 void ccvt_420p_bgr32(int width, int height, void *src, void *srcu, void *srcv, void *dst);
71 void ccvt_420p_rgb32(int width, int height, void *src, void *srcu, void *srcv, void *dst);
74 void ccvt_yuyv_rgb32(int width, int height, void *src, void *dst);
75 void ccvt_yuyv_bgr32(int width, int height, voi
[all...]
H A Dccvt_c.c36 static void ccvt_420i(int width, int height, unsigned char *src, unsigned char *dst, int push) argument
60 for (line = 0; line < height; line++) {
126 void ccvt_420i_rgb24(int width, int height, void *src, void *dst) argument
128 ccvt_420i(width, height, (unsigned char *)src, (unsigned char *)dst, PUSH_RGB24);
131 void ccvt_420i_bgr24(int width, int height, void *src, void *dst) argument
133 ccvt_420i(width, height, (unsigned char *)src, (unsigned char *)dst, PUSH_BGR24);
136 void ccvt_420i_rgb32(int width, int height, void *src, void *dst) argument
138 ccvt_420i(width, height, (unsigned char *)src, (unsigned char *)dst, PUSH_RGB32);
141 void ccvt_420i_bgr32(int width, int height, void *src, void *dst) argument
143 ccvt_420i(width, height, (unsigne
149 ccvt_420p(int width, int height, unsigned char *src, unsigned char *srcu, unsigned char *srcv, unsigned char *dst, int push) argument
226 ccvt_420p_rgb24(int width, int height, void *src, void *srcu, void *srcv, void *dst) argument
232 ccvt_420p_bgr24(int width, int height, void *src, void *srcu, void *srcv, void *dst) argument
238 ccvt_420p_rgb32(int width, int height, void *src, void *srcu, void *srcv, void *dst) argument
244 ccvt_420p_bgr32(int width, int height, void *src, void *srcu, void *srcv, void *dst) argument
254 ccvt_yuyv(int width, int height, unsigned char *src, unsigned char *dst, int push) argument
327 ccvt_yuyv_rgb24(int width, int height, void *src, void *dst) argument
332 ccvt_yuyv_bgr24(int width, int height, void *src, void *dst) argument
337 ccvt_yuyv_rgb32(int width, int height, void *src, void *dst) argument
342 ccvt_yuyv_bgr32(int width, int height, void *src, void *dst) argument
348 ccvt_420i_420p(int width, int height, void *src, void *dsty, void *dstu, void *dstv) argument
369 ccvt_420i_yuyv(int width, int height, void *src, void *dst) argument
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/scripts/lxdialog/
H A Dyesno.c28 print_buttons(WINDOW *dialog, int height, int width, int selected) argument
31 int y = height - 2;
44 dialog_yesno (const char *title, const char *prompt, int height, int width) argument
51 y = (LINES - height) / 2;
53 draw_shadow (stdscr, y, x, height, width);
55 dialog = newwin (height, width, y, x);
58 draw_box (dialog, 0, 0, height, width, dialog_attr, border_attr);
60 mvwaddch (dialog, height-3, 0, ACS_LTEE);
84 print_buttons(dialog, height, width, 0);
104 print_buttons(dialog, height, widt
[all...]
H A Dmsgbox.c29 dialog_msgbox (const char *title, const char *prompt, int height, int width, argument
37 y = (LINES - height) / 2;
39 draw_shadow (stdscr, y, x, height, width);
41 dialog = newwin (height, width, y, x);
44 draw_box (dialog, 0, 0, height, width, dialog_attr, border_attr);
65 mvwaddch (dialog, height - 3, 0, ACS_LTEE);
72 height - 2, width / 2 - 4, TRUE);
H A Ddialog.h143 void attr_clear (WINDOW * win, int height, int width, chtype attr);
148 void draw_box (WINDOW * win, int y, int x, int height, int width, chtype box,
150 void draw_shadow (WINDOW * win, int y, int x, int height, int width);
153 int dialog_yesno (const char *title, const char *prompt, int height, int width);
154 int dialog_msgbox (const char *title, const char *prompt, int height,
156 int dialog_textbox (const char *title, const char *file, int height, int width);
157 int dialog_menu (const char *title, const char *prompt, int height, int width,
160 int dialog_checklist (const char *title, const char *prompt, int height,
164 int dialog_inputbox (const char *title, const char *prompt, int height,
H A Dtextbox.c25 static void print_page (WINDOW * win, int height, int width);
28 static void print_position (WINDOW * win, int height, int width);
38 dialog_textbox (const char *title, const char *file, int height, int width) argument
83 y = (LINES - height) / 2;
86 draw_shadow (stdscr, y, x, height, width);
88 dialog = newwin (height, width, y, x);
92 text = subwin (dialog, height - 4, width - 2, y + 1, x + 1);
99 draw_box (dialog, 0, 0, height, width, dialog_attr, border_attr);
102 mvwaddch (dialog, height-3, 0, ACS_LTEE);
123 print_button (dialog, " Exit ", height
441 print_page(WINDOW * win, int height, int width) argument
541 print_position(WINDOW * win, int height, int width) argument
[all...]
/asus-wl-520gu-7.0.1.45/src/router/config/
H A Dyesno.c28 print_buttons(WINDOW *dialog, int height, int width, int selected) argument
31 int y = height - 2;
44 dialog_yesno (const char *title, const char *prompt, int height, int width) argument
51 y = (LINES - height) / 2;
53 draw_shadow (stdscr, y, x, height, width);
55 dialog = newwin (height, width, y, x);
58 draw_box (dialog, 0, 0, height, width, dialog_attr, border_attr);
60 mvwaddch (dialog, height-3, 0, ACS_LTEE);
84 print_buttons(dialog, height, width, 0);
104 print_buttons(dialog, height, widt
[all...]
H A Dmsgbox.c29 dialog_msgbox (const char *title, const char *prompt, int height, int width, argument
37 y = (LINES - height) / 2;
39 draw_shadow (stdscr, y, x, height, width);
41 dialog = newwin (height, width, y, x);
44 draw_box (dialog, 0, 0, height, width, dialog_attr, border_attr);
65 mvwaddch (dialog, height - 3, 0, ACS_LTEE);
72 height - 2, width / 2 - 4, TRUE);
H A Dtextbox.c25 static void print_page (WINDOW * win, int height, int width);
28 static void print_position (WINDOW * win, int height, int width);
38 dialog_textbox (const char *title, const char *file, int height, int width) argument
83 y = (LINES - height) / 2;
86 draw_shadow (stdscr, y, x, height, width);
88 dialog = newwin (height, width, y, x);
92 text = subwin (dialog, height - 4, width - 2, y + 1, x + 1);
99 draw_box (dialog, 0, 0, height, width, dialog_attr, border_attr);
102 mvwaddch (dialog, height-3, 0, ACS_LTEE);
123 print_button (dialog, " Exit ", height
441 print_page(WINDOW * win, int height, int width) argument
541 print_position(WINDOW * win, int height, int width) argument
[all...]
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-m68k/
H A Datari_SLM.h25 int height; member in struct:SLM_paper_size
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-m68k/
H A Datari_SLM.h25 int height; member in struct:SLM_paper_size
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-ppc/
H A Dbtext.h26 void btext_setup_display(int width, int height, int depth, int pitch,
29 void btext_update_display(unsigned long phys, int width, int height,
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-ppc/
H A Dbtext.h26 void btext_setup_display(int width, int height, int depth, int pitch,
29 void btext_update_display(unsigned long phys, int width, int height,
/asus-wl-520gu-7.0.1.45/src/router/www/asus/web_asus_en/
H A DUploading.asp27 <table width="666" border="0" cellpadding="2" cellspacing="0" vspace="30" height="1">
29 <td width="666" height="125">
30 <table width="660" height="125" cellpadding="2" cellspacing="0" border="0">
33 <td bgcolor="#FF0000" height="50" width="652"><b><font size="5" face="Arial" color="#FFFFFF"><#SET_ok_title#></font></b></td>
36 <td width="652" height="25" bgcolor="#FFFFFF" colspan="2"><font face="Arial"><#SET_ok_desc#></font></td>
39 <td width="652" height="25" bgcolor="#FFFFFF" colspan="2"></td>
42 <td width="652" height="25" bgcolor="#FFFFFF" colspan="2"><font face="Arial">
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/video/
H A Dfbcon-afb.h23 int height, int width);
25 int sx, int height, int width);
H A Dfbcon-cfb2.h23 int height, int width);
25 int sx, int height, int width);
H A Dfbcon-cfb4.h23 int height, int width);
25 int sx, int height, int width);
H A Dfbcon-hga.h23 int height, int width);
25 int sx, int height, int width);
H A Dfbcon-ilbm.h23 int height, int width);
25 int sx, int height, int width);
H A Dfbcon-iplan2p2.h23 int dx, int height, int width);
25 int sy, int sx, int height, int width);
H A Dfbcon-iplan2p4.h23 int dx, int height, int width);
25 int sy, int sx, int height, int width);
H A Dfbcon-iplan2p8.h23 int dx, int height, int width);
25 int sy, int sx, int height, int width);
H A Dfbcon-mac.h23 int height, int width);
25 int sx, int height, int width);
H A Dfbcon-mfb.h23 int height, int width);
25 int sx, int height, int width);
H A Dfbcon-vga.h23 int height, int width);
25 int sx, int height, int width);

Completed in 189 milliseconds

1234567891011