Searched refs:width (Results 1 - 25 of 335) 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, in
[all...]
H A Dccvt_c.c36 static void ccvt_420i(int width, int height, unsigned char *src, unsigned char *dst, int push) argument
43 linewidth = width + (width >> 1);
61 for (col = 0; col < width; col++) {
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, heigh
141 ccvt_420i_bgr32(int width, int height, void *src, void *dst) argument
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 Dmsgbox.c29 dialog_msgbox (const char *title, const char *prompt, int height, int width, argument
36 x = (COLS - width) / 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);
46 if (title != NULL && strlen(title) >= width-2 ) {
48 char * title2 = malloc(width-2+1);
49 memcpy( title2, title, width-2 );
50 title2[width-2] = '\0';
56 mvwaddch (dialog, 0, (width
[all...]
H A Dyesno.c28 print_buttons(WINDOW *dialog, int height, int width, int selected) argument
30 int x = width / 2 - 10;
44 dialog_yesno (const char *title, const char *prompt, int height, int width) argument
50 x = (COLS - width) / 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);
61 for (i = 0; i < width - 2; i++)
66 if (title != NULL && strlen(title) >= width-2 ) {
68 char * title2 = malloc(width
[all...]
H A Dinputbox.c30 print_buttons(WINDOW *dialog, int height, int width, int selected) argument
32 int x = width / 2 - 11;
46 dialog_inputbox (const char *title, const char *prompt, int height, int width, argument
55 x = (COLS - width) / 2;
59 draw_shadow (stdscr, y, x, height, width);
61 dialog = newwin (height, width, y, x);
64 draw_box (dialog, 0, 0, height, width, dialog_attr, border_attr);
67 for (i = 0; i < width - 2; i++)
72 if (title != NULL && strlen(title) >= width-2 ) {
74 char * title2 = malloc(width
[all...]
H A Ddialog.h143 void attr_clear (WINDOW * win, int height, int width, chtype attr);
146 void print_autowrap (WINDOW * win, const char *prompt, int width, int y, int x);
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);
155 int width, int pause);
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,
161 int width, int list_height, int item_no,
165 int width, cons
[all...]
H A Dtextbox.c25 static void print_page (WINDOW * win, int height, int width);
26 static void print_line (WINDOW * win, int row, 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
82 x = (COLS - width) / 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);
103 for (i = 0; i < width
441 print_page(WINDOW * win, int height, int width) argument
460 print_line(WINDOW * win, int row, 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 Dmsgbox.c29 dialog_msgbox (const char *title, const char *prompt, int height, int width, argument
36 x = (COLS - width) / 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);
46 if (title != NULL && strlen(title) >= width-2 ) {
48 char * title2 = malloc(width-2+1);
49 memcpy( title2, title, width-2 );
50 title2[width-2] = '\0';
56 mvwaddch (dialog, 0, (width
[all...]
H A Dyesno.c28 print_buttons(WINDOW *dialog, int height, int width, int selected) argument
30 int x = width / 2 - 10;
44 dialog_yesno (const char *title, const char *prompt, int height, int width) argument
50 x = (COLS - width) / 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);
61 for (i = 0; i < width - 2; i++)
66 if (title != NULL && strlen(title) >= width-2 ) {
68 char * title2 = malloc(width
[all...]
H A Dinputbox.c30 print_buttons(WINDOW *dialog, int height, int width, int selected) argument
32 int x = width / 2 - 11;
46 dialog_inputbox (const char *title, const char *prompt, int height, int width, argument
55 x = (COLS - width) / 2;
59 draw_shadow (stdscr, y, x, height, width);
61 dialog = newwin (height, width, y, x);
64 draw_box (dialog, 0, 0, height, width, dialog_attr, border_attr);
67 for (i = 0; i < width - 2; i++)
72 if (title != NULL && strlen(title) >= width-2 ) {
74 char * title2 = malloc(width
[all...]
H A Dtextbox.c25 static void print_page (WINDOW * win, int height, int width);
26 static void print_line (WINDOW * win, int row, 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
82 x = (COLS - width) / 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);
103 for (i = 0; i < width
441 print_page(WINDOW * win, int height, int width) argument
460 print_line(WINDOW * win, int row, int width) argument
541 print_position(WINDOW * win, int height, int width) argument
[all...]
/asus-wl-520gu-7.0.1.45/src/cfe/cfe/lib/
H A Dlib_printf.c66 * __atox(buf,num,radix,width)
74 * width - width in characters
79 static int __atox(char *buf,unsigned int num,unsigned int radix,int width, argument
95 if (width && (width > retval)) {
96 width = width - retval;
97 while (width) {
100 width
127 __llatox(char *buf,unsigned long long num,unsigned int radix, int width,const char *digits) argument
198 int width; local
[all...]
/asus-wl-520gu-7.0.1.45/src/router/LPRng/UTILS/
H A Dlinetest.c15 * linetest [width]
99 int width = 132; local
109 width = i;
117 for( j = 0; j < width; ++j ){
130 fprintf( stderr, "%s [width]\n", Name );
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/video/aty/
H A Dmach64_accel.c24 int height, int width);
26 int sx, int height, int width);
176 static inline void draw_rect(s16 x, s16 y, u16 width, u16 height, argument
182 aty_st_le32(DST_HEIGHT_WIDTH, (width << 16) | height, info);
187 u_int width, u_int height,
193 if (!width || !height)
203 width *= 3;
213 dstx += width - 1;
214 srcx += width - 1;
221 aty_st_le32(SRC_HEIGHT1_WIDTH1, (width << 1
186 aty_rectcopy(int srcx, int srcy, int dstx, int dsty, u_int width, u_int height, struct fb_info_aty *info) argument
226 aty_rectfill(int dstx, int dsty, u_int width, u_int height, u_int color, struct fb_info_aty *info) argument
253 fbcon_aty_bmove(struct display *p, int sy, int sx, int dy, int dx, int height, int width) argument
275 fbcon_aty_clear(struct vc_data *conp, struct display *p, int sy, int sx, int height, int width) argument
[all...]
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-m68k/
H A Datari_SLM.h24 int width; member in struct:SLM_paper_size
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-m68k/
H A Datari_SLM.h24 int width; 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/LPRng/DOCS/
H A Dupdateheader5 <td width=25%>
10 <td width=50%></td><td width=25% >
/asus-wl-520gu-7.0.1.45/src/router/LPRng/PrintingCookbook/source/
H A Dupdateheader5 <td width=25%>
10 <td width=50%></td><td width=25% >
/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/linux/linux/arch/mips/ddb5xxx/common/
H A Dnile4.c25 ddb_calc_pdar(u32 phys, u32 size, int width, argument
71 switch (width) {
85 panic("nile4_set_pdar: unsupported width %d", width);
94 ddb_set_pdar(u32 pdar, u32 phys, u32 size, int width, argument
97 u32 temp= ddb_calc_pdar(phys, size, width, on_memory_bus, pci_visible);
/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);

Completed in 398 milliseconds

1234567891011>>