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

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/lib/
H A Dradix-tree.c50 unsigned int height; /* Height from the bottom */ member in struct:radix_tree_node
210 * radix tree with height HEIGHT.
212 static inline unsigned long radix_tree_maxindex(unsigned int height) argument
214 return height_to_maxindex[height];
223 unsigned int height; local
226 /* Figure out what the height should be. */
227 height = root->height + 1;
228 while (index > radix_tree_maxindex(height))
229 height
272 unsigned int height, shift; local
345 unsigned int height, shift; local
393 unsigned int height, shift; local
443 unsigned int height, shift; local
491 unsigned int height, shift; local
552 unsigned int height, shift; local
606 unsigned int shift, height; local
716 unsigned int shift, height; local
883 unsigned int height, shift; local
977 __maxindex(unsigned int height) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/video/console/
H A Dfbcon_rotate.h40 static inline void rotate_ud(const char *in, char *out, u32 width, u32 height) argument
47 for (i = 0; i < height; i++) {
51 height - (1 + i),
58 static inline void rotate_cw(const char *in, char *out, u32 width, u32 height) argument
60 int i, j, h = height, w = width;
61 int shift = (8 - (height % 8)) & 7;
64 height = (height + 7) & ~7;
69 pattern_set_bit(height - 1 - i - shift, j,
70 height, ou
76 rotate_ccw(const char *in, char *out, u32 width, u32 height) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/scripts/kconfig/lxdialog/
H A Dyesno.c27 static void print_buttons(WINDOW * dialog, int height, int width, int selected) argument
30 int y = height - 2;
42 int dialog_yesno(const char *title, const char *prompt, int height, int width) argument
48 if (getmaxy(stdscr) < (height + 4))
55 y = (LINES - height) / 2;
57 draw_shadow(stdscr, y, x, height, width);
59 dialog = newwin(height, width, y, x);
62 draw_box(dialog, 0, 0, height, width,
65 mvwaddch(dialog, height - 3, 0, ACS_LTEE);
76 print_buttons(dialog, height, widt
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-powerpc/
H A Dbtext.h11 extern void btext_update_display(unsigned long phys, int width, int height,
13 extern void btext_setup_display(int width, int height, int depth, int pitch,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/scripts/kconfig/lxdialog/
H A Dyesno.c27 static void print_buttons(WINDOW * dialog, int height, int width, int selected) argument
30 int y = height - 2;
42 int dialog_yesno(const char *title, const char *prompt, int height, int width) argument
49 y = (LINES - height) / 2;
51 draw_shadow(stdscr, y, x, height, width);
53 dialog = newwin(height, width, y, x);
56 draw_box(dialog, 0, 0, height, width, dialog_attr, border_attr);
58 mvwaddch(dialog, height - 3, 0, ACS_LTEE);
69 print_buttons(dialog, height, width, 0);
88 print_buttons(dialog, height, widt
[all...]
H A Dmsgbox.c28 int dialog_msgbox(const char *title, const char *prompt, int height, int width, argument
36 y = (LINES - height) / 2;
38 draw_shadow(stdscr, y, x, height, width);
40 dialog = newwin(height, width, y, x);
43 draw_box(dialog, 0, 0, height, width, dialog_attr, border_attr);
52 mvwaddch(dialog, height - 3, 0, ACS_LTEE);
58 print_button(dialog, " Ok ", 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);
37 int dialog_textbox(const char *title, const char *file, int height, int width) argument
81 y = (LINES - height) / 2;
83 draw_shadow(stdscr, y, x, height, width);
85 dialog = newwin(height, width, y, x);
89 text = subwin(dialog, height - 4, width - 2, y + 1, x + 1);
96 draw_box(dialog, 0, 0, height, width, dialog_attr, border_attr);
99 mvwaddch(dialog, height - 3, 0, ACS_LTEE);
108 print_button(dialog, " Exit ", height
420 print_page(WINDOW * win, int height, int width) argument
518 print_position(WINDOW * win, int height, int width) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/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...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A Dcscd.c33 int linelen, height, bpp; member in struct:__anon506
39 int linelen, int height) {
42 dst += (height - 1) * f->linesize[0];
43 for (i = height; i; i--) {
51 int linelen, int height) {
54 dst += (height - 1) * f->linesize[0];
55 for (i = height; i; i--) {
69 int linelen, int height) {
72 dst += (height - 1) * f->linesize[0];
73 for (i = height;
38 copy_frame_default(AVFrame *f, const uint8_t *src, int linelen, int height) argument
50 add_frame_default(AVFrame *f, const uint8_t *src, int linelen, int height) argument
68 copy_frame_16(AVFrame *f, const uint8_t *src, int linelen, int height) argument
84 copy_frame_32(AVFrame *f, const uint8_t *src, int linelen, int height) argument
102 add_frame_16(AVFrame *f, const uint8_t *src, int linelen, int height) argument
118 add_frame_32(AVFrame *f, const uint8_t *src, int linelen, int height) argument
[all...]
H A Dnuv.c34 int width, height; member in struct:__anon545
69 * \param height height of the video frame
72 int width, int height) {
74 avpicture_fill(&pic, src, PIX_FMT_YUV420P, width, height);
75 av_picture_copy((AVPicture *)f, &pic, PIX_FMT_YUV420P, width, height);
107 static int codec_reinit(AVCodecContext *avctx, int width, int height, int quality) { argument
110 height = (height + 1) & ~1;
113 if (width != c->width || height !
71 copy_frame(AVFrame *f, const uint8_t *src, int width, int height) argument
215 int height = c->height; local
[all...]
H A Dfaxcompr.h43 uint8_t *dst, int height, int stride, enum TiffCompr compr);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/vhook/
H A Dnull.c59 void Process(void *ctx, AVPicture *picture, enum PixelFormat pix_fmt, int width, int height, int64_t pts) argument
71 size = avpicture_get_size(PIX_FMT_RGB24, width, height);
74 avpicture_fill(&picture1, buf, PIX_FMT_RGB24, width, height);
78 width, height, pix_fmt,
79 width, height, PIX_FMT_RGB24,
89 picture->data, picture->linesize, 0, height,
99 width, height, PIX_FMT_RGB24,
100 width, height, pix_fmt,
110 picture1.data, picture1.linesize, 0, height,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/minidlna/
H A Dimage_utils.h16 int32_t height; member in struct:__anon1106
27 image_get_jpeg_resolution(const char * path, int * width, int * height);
33 image_resize(image * src_image, int32_t width, int32_t height);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/minidlna.03.14/
H A Dimage_utils.h35 int32_t height; member in struct:__anon1119
46 image_get_jpeg_resolution(const char * path, int * width, int * height);
52 image_resize(image_s * src_image, int32_t width, int32_t height);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/minidlna.07.26/
H A Dimage_utils.h16 int32_t height; member in struct:__anon1132
27 image_get_jpeg_resolution(const char * path, int * width, int * height);
33 image_resize(image * src_image, int32_t width, int32_t height);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-m68k/
H A Datari_SLM.h25 int height; member in struct:SLM_paper_size
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Dlinux_logo.h29 unsigned int height; member in struct:linux_logo
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/mlib/
H A Ddsputil_mlib.c63 /* put block, width 16 pixel, height 8/16 */
66 int stride, int height)
68 switch (height) {
83 int stride, int height)
85 switch (height) {
100 int stride, int height)
102 switch (height) {
117 int stride, int height)
119 switch (height) {
133 /* put block, width 8 pixel, height
65 put_pixels16_mlib(uint8_t * dest, const uint8_t * ref, int stride, int height) argument
82 put_pixels16_x2_mlib(uint8_t * dest, const uint8_t * ref, int stride, int height) argument
99 put_pixels16_y2_mlib(uint8_t * dest, const uint8_t * ref, int stride, int height) argument
116 put_pixels16_xy2_mlib(uint8_t * dest, const uint8_t * ref, int stride, int height) argument
135 put_pixels8_mlib(uint8_t * dest, const uint8_t * ref, int stride, int height) argument
156 put_pixels8_x2_mlib(uint8_t * dest, const uint8_t * ref, int stride, int height) argument
177 put_pixels8_y2_mlib(uint8_t * dest, const uint8_t * ref, int stride, int height) argument
198 put_pixels8_xy2_mlib(uint8_t * dest, const uint8_t * ref, int stride, int height) argument
221 avg_pixels16_mlib(uint8_t * dest, const uint8_t * ref, int stride, int height) argument
238 avg_pixels16_x2_mlib(uint8_t * dest, const uint8_t * ref, int stride, int height) argument
255 avg_pixels16_y2_mlib(uint8_t * dest, const uint8_t * ref, int stride, int height) argument
272 avg_pixels16_xy2_mlib(uint8_t * dest, const uint8_t * ref, int stride, int height) argument
291 avg_pixels8_mlib(uint8_t * dest, const uint8_t * ref, int stride, int height) argument
312 avg_pixels8_x2_mlib(uint8_t * dest, const uint8_t * ref, int stride, int height) argument
333 avg_pixels8_y2_mlib(uint8_t * dest, const uint8_t * ref, int stride, int height) argument
354 avg_pixels8_xy2_mlib(uint8_t * dest, const uint8_t * ref, int stride, int height) argument
[all...]
/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);
7 int sy, int sx, int height, int width);
13 int dx, int height, int width);
15 int sy, int sx, int height, int width);
21 int dx, int height, int width);
23 int sy, int sx, int height, int width);
29 int dx, int height, int width);
31 int sy, int sx, int height, int width);
H A Datafb_mfb.c26 int height, int width)
34 fb_memmove(dest, src, height * (width >> 3));
38 for (rows = height; rows--;) {
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);
46 for (rows = height; rows--;) {
55 int sy, int sx, int height, int width)
64 fb_memset255(dest, height * (width >> 3));
66 fb_memclear(dest, height * (width >> 3));
68 for (rows = height; row
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
54 atafb_mfb_fillrect(struct fb_info *info, u_long next_line, u32 color, int sy, int sx, int height, int width) argument
[all...]
H A Dc2p.h13 extern void c2p(u8 *dst, const u8 *src, u32 dx, u32 dy, u32 width, u32 height,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-ppc/
H A Dbtext.h23 extern void btext_setup_display(int width, int height, int depth, int pitch,
26 extern void btext_update_display(unsigned long phys, int width, int height,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/testsuite/build_farm/
H A Dbacktrace9 set height 0

Completed in 281 milliseconds

1234567891011>>