HomeSort by: relevance | last modified time | path
    Searched defs:width (Results 1 - 25 of 324) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/sys/arch/hp300/stand/common/
ite_tvrx.c 53 int width; local in function:tvrx_init
57 width = ((ip->ftwidth + 7) / 8) * 8;
58 ip->cpl = (ip->fbwidth - ip->dwidth) / width;
ite_hy.c 56 int width; local in function:hyper_init
60 width = ((ip->ftwidth + 7) / 8) * 8;
61 ip->cpl = (ip->fbwidth - ip->dwidth) / width;
  /src/usr.bin/mkcsmapper/
ldef.h 32 u_int32_t width; member in struct:__anonc97882b00108
  /src/lib/libc/quad/
floatunditf_ieee754.c 73 unsigned int width = 64; local in function:__floatunditf
83 width >>= 1;
84 mask <<= width;
86 tmp <<= width;
87 bit += width;
  /src/sys/arch/atari/dev/
font.h 35 unsigned char width; member in struct:__anon192550030108
viewioctl.h 47 u_int width; member in struct:view_size
  /src/sys/dev/sun/
pfour_subr.c 53 int width, height; local in function:fb_setsize_pfour
83 width = 1152;
88 width = 1024;
93 width = 1280;
98 width = 1600;
103 width = 1440;
108 width = 640;
121 fb->fb_type.fb_width = width;
  /src/lib/libform/
type_alnum.c 45 unsigned width; member in struct:__anonc4070a3c0108
60 new->width = va_arg(*args, int);
76 new->width = ((alnum_args *) (void *)args)->width;
97 int width, start, cur, end; local in function:alnum_check_field
100 width = ((alnum_args *) (void *) field->args)->width;
121 /* no good if it exceeds the width */
122 if ((cur - start) > width)
type_alpha.c 47 unsigned width; member in struct:__anonc423e7450108
62 new->width = va_arg(*args, int);
78 new->width = ((alpha_args *) (void *) args)->width;
99 int width, start, cur, end; local in function:alpha_check_field
102 width = ((alpha_args *) (void *) field->args)->width;
123 /* no good if it exceeds the width */
124 if ((cur - start) > width)
  /src/sys/arch/arm/nvidia/
tegra_drm_fb.c 125 const u_int width = sizes->surface_width; local in function:tegra_fb_init
127 const u_int pitch = width * (32 / 8);
137 fb->width = width;
  /src/sys/arch/evbppc/pmppc/dev/
mainbus.h 48 u_int width; member in struct:mainbus_attach_args::__anonce21cfd9010a::__anonce21cfd90208
  /src/sys/arch/hpc/stand/hpcboot/
framebuffer.h 36 int bpp, width, height, linebytes; member in struct:FrameBufferInfo::framebuffer_info
54 int width(void) { return _fb->width; } function in class:FrameBufferInfo
  /src/sys/arch/m68k/fpe/
fpu_subr.c 69 int width = 32; local in function:bfffo
70 for (offset = 0; width-- > 0 && (int)src >= 0; src <<= 1) {
  /src/sys/arch/powerpc/tools/chrpicon/
chrpicon.h 47 int width; member in struct:chrpi_spec_s
  /src/sys/external/bsd/drm2/dist/drm/xen/
xen_drm_front_cfg.h 21 int width; member in struct:xen_drm_front_cfg_connector
xen_drm_front_conn.c 71 int width, height; local in function:connector_get_modes
78 videomode.hactive = pipeline->width;
80 width = videomode.hactive + videomode.hfront_porch +
84 videomode.pixelclock = width * height * XEN_DRM_CRTC_VREFRESH_HZ;
  /src/sys/arch/amiga/dev/
viewioctl.h 47 u_int width; member in struct:view_size
  /src/sys/arch/hp300/dev/
diofb_mono.c 122 int width; /* add to get to same position in next line */ local in function:diofb_mono_windowmove
140 width = fb->fbwidth >> 5;
143 psrcLine = ((uint32_t *)fb->fbkva) + ((sy + cy - 1) * width);
144 pdstLine = ((uint32_t *)fb->fbkva) + ((dy + cy - 1) * width);
145 width = -width;
147 psrcLine = ((uint32_t *)fb->fbkva) + (sy * width);
148 pdstLine = ((uint32_t *)fb->fbkva) + (dy * width);
165 pdst += width;
166 psrc += width;
    [all...]
  /src/sys/ddb/
db_examine.c 75 int width; local in function:db_examine
83 width = 12;
94 width = 4;
98 width = 8;
102 width = 12;
106 width = 24;
110 width = 12 * (sizeof value / 4);
127 db_printf("%-*s", width, tbuf);
132 db_printf("%-*" PRIx64, width, value);
180 db_printf("%-*s", width, tbuf)
    [all...]
  /src/sys/dev/hpc/
fontconv.c 9 int width, height, ascent; variable in typeref:typename:int
23 width = 8;
43 width_in_bytes = (width + 7) / 8;
47 fontname, width, height, code);
74 for (m = 0x80000000, j = 0; j < width; j++, m >>= 1) {
91 fontname, width, height);
96 fprintf(ofp, " %d,\t\t\t\t/* width */\n", width);
102 fontname, width, height);
115 width_in_bytes = (width + 7) / 8
    [all...]
  /src/sys/miscfs/procfs/
procfs_map.c 123 int width = (int)((curl->l_proc->p_flag & PK_32) ? sizeof(int32_t) : local in function:procfs_domap
171 width, entry->start,
172 width, entry->end,
177 width, (unsigned long)entry->offset,
  /src/usr.bin/fold/
fold.c 69 int width; local in function:main
75 width = -1;
85 if ((width = atoi(optarg)) <= 0)
86 errx(1, "illegal width value");
90 if (width == -1) {
93 width = atoi(++p);
95 width = atoi(argv[optind] + 1);
104 if (width == -1)
105 width = DEFLINEWIDTH;
108 fold(width);
    [all...]
  /src/tests/lib/libc/locale/
t_mbstowcs.c 80 int width; member in struct:test
203 if (wcswidth(wbuf, SIZE-1) != t->width) {
205 (void)printf(" expected: %d\n", t->width);
  /src/lib/libc/locale/
iswctype_mb.c 215 int width; local in function:wcswidth_l
220 width = 0;
225 width += ((unsigned)x & _RUNETYPE_SWM) >> _RUNETYPE_SWS;
228 return width;
  /src/games/banner/
banner.c 48 * banner [-dt] [-w width] [message]
1026 static int width = DWIDTH; /* -w option: scrunch letters to 80 columns */ variable in typeref:typename:int
1051 width = atoi(optarg);
1052 if (width <= 0 || width > DWIDTH)
1057 (void)fprintf(stderr, "usage: banner [-w width] [message]\n");
1063 for (i = 0; i < width; i++) {
1064 j = i * DWIDTH / width;
1165 x = (x*width + (DWIDTH/2)) / DWIDTH;
1166 y = (y*width + (DWIDTH/2)) / DWIDTH
    [all...]

Completed in 18 milliseconds

1 2 3 4 5 6 7 8 91011>>