Searched refs:width (Results 51 - 75 of 2946) sorted by relevance

1234567891011>>

/macosx-10.10/bless-103/libbless/Misc/
H A DBLGenerateOFLabel.c69 uint16_t width, uint16_t height, int scale, uint16_t *newwidth);
72 uint16_t width, uint16_t height, uint16_t newwidth);
78 uint16_t width = 340 * scale; local
90 bitmapData = (unsigned char *)malloc(width*height+5);
96 bzero(bitmapData, width*height+5);
98 err = makeLabelOfSize(label, bitmapData+5, width, height, scale, &newwidth);
106 if (newwidth > width) newwidth = width;
108 contextprintf(context, kBLLogLevelVerbose, "Refitting to width %d\n", newwidth);
110 err = refitToWidth(bitmapData+5, width, heigh
154 uint16_t width = 340; local
231 makeLabelOfSize(const char *label, unsigned char *bitmapData, uint16_t width, uint16_t height, int scale, uint16_t *newwidth) argument
366 makeLabelOfSize(const char *label, unsigned char *bitmapData, uint16_t width, uint16_t height, int scale, uint16_t *newwidth) argument
381 refitToWidth(unsigned char *bitmapData, uint16_t width, uint16_t height, uint16_t newwidth) argument
[all...]
/macosx-10.10/cups-408/cups/cups/
H A Dpwg.h55 int width, /* Width in 2540ths */ member in struct:pwg_media_s
62 int width, /* Width in 2540ths */ member in struct:pwg_size_s
77 int width, int length,
84 extern pwg_media_t *pwgMediaForSize(int width, int length) _CUPS_API_1_7;
/macosx-10.10/emacs-93/emacs/oldXMenu/
H A DLocate.c20 XMenuLocate(display, menu, p_num, s_num, x_pos, y_pos, ul_x, ul_y, width, height)
29 int *width; /* Returned menu width. */
70 *width = menu->width;
/macosx-10.10/tcl-105/tcl_ext/snack/snack/demos/tcl/
H A DMinSect.tcl7 pack [canvas .c -width 300 -height 300]
11 .c create section 0 0 -sound s -start 6000 -end 6100 -height 300 -width 300
H A DMinSpeg.tcl7 pack [canvas .c -height 200 -width 400]
11 .c create spectrogram 0 0 -sound s -height 200 -width 400
/macosx-10.10/tcl-105/tk84/tk/xlib/
H A Dxdraw.c69 XFillRectangle(display, d, gc, x, y, width, height)
75 unsigned int width;
81 rectangle.width = width;
/macosx-10.10/CommonCrypto-60061/libcn/
H A Dgen_std_crc_table.c36 uint64_t topbit = 1LL << ((desc->width * 8) - 1);
40 retval <<= (desc->width*8-8);
45 retval = (desc->reflect_reverse) ?reflect(retval, desc->width*8): retval;
52 size_t width = crc->descriptor->def.parms.width; local
53 if((crc->table.bytes = malloc(width * 256)) == NULL) return -1;
55 switch (width) {
67 size_t width = crc->descriptor->def.parms.width; local
73 switch (width) {
[all...]
/macosx-10.10/tcl-105/tcl_ext/tklib/tklib/modules/controlwidget/
H A Dtachometer.tcl79 option -width -default 50m
97 canvas $win.c -background $options(-background) -width $options(-width) -height $options(-height) \
108 set width [$win.c cget -width]
114 set x1 [expr {$width/50.0*2.0}]
115 set y1 [expr {$width/50.0*2.0}]
116 set x2 [expr {$width/50.0*48.0}]
117 set y2 [expr {$width/50.0*48.0}]
118 $win.c create oval $x1 $y1 $x2 $y2 -fill $options(-dialcolor) -width
[all...]
/macosx-10.10/ICU-531.30/icuSources/samples/layout/
H A Drsurface.cpp17 const float *positions, le_int32 x, le_int32 y, le_int32 width, le_int32 height)
21 rs->drawGlyphs((const LEFontInstance *) font, glyphs, count, positions, x, y, width, height);
16 rs_drawGlyphs(rs_surface *surface, const le_font *font, const LEGlyphID *glyphs, le_int32 count, const float *positions, le_int32 x, le_int32 y, le_int32 width, le_int32 height) argument
/macosx-10.10/WebCore-7600.1.25/html/
H A DHTMLHRElement.idl24 [Reflect] attribute DOMString width;
/macosx-10.10/WebCore-7600.1.25/svg/
H A DSVGForeignObjectElement.idl29 readonly attribute SVGAnimatedLength width;
H A DSVGRect.idl26 [StrictTypeChecking] attribute unrestricted float width;
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Controllers/
H A DCodeMirrorTokenTrackingController.css30 -webkit-text-stroke-width: 0 !important;
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DConsolePrompt.css31 width: 100%;
H A DContentView.css31 width: 32px;
/macosx-10.10/tcl-105/tcl_ext/snack/snack/demos/python/
H A DMinSect.py11 c = SnackCanvas(height=300, width=300)
13 c.create_section(0, 0, sound=s, start=6000, end=6100, height=300, width=300)
/macosx-10.10/WebCore-7600.1.25/rendering/
H A DRenderFrameBase.cpp41 inline bool shouldExpandFrame(LayoutUnit width, LayoutUnit height, bool hasFixedWidth, bool hasFixedHeight) argument
44 if (!width || !height)
48 if (hasFixedWidth && width < LayoutUnit(smallestUsefullyScrollableDimension))
60 if (!childRoot || !shouldExpandFrame(width(), height(), hasFixedWidth, hasFixedHeight)) {
71 // if scrollbars are off, and the width or height are fixed
81 // make sure minimum preferred width is enforced
83 setWidth(std::max(width(), childRoot->minPreferredLogicalWidth() + hBorder));
84 // update again to pass the new width to the child frame
93 setWidth(std::max<LayoutUnit>(width(), childFrameView->contentsWidth() + hBorder));
/macosx-10.10/ncurses-44/ncurses/form/
H A Dfty_alnum.c43 int width; member in struct:__anon11198
63 argp->width = va_arg(*ap, int);
142 int width = ((const thisARG *)argp)->width; local
144 bool result = (width < 0);
146 Check_CTYPE_Field(result, bp, width, Check_This_Character);
H A Dfty_alpha.c43 int width; member in struct:__anon11199
63 argp->width = va_arg(*ap, int);
142 int width = ((const thisARG *)argp)->width; local
144 bool result = (width < 0);
146 Check_CTYPE_Field(result, bp, width, Check_This_Character);
/macosx-10.10/ruby-106/ruby/lib/
H A Dprettyprint.rb5 # byte in the strings have single column in width. But it can be used for
8 # * optional width argument for PrettyPrint#text
75 # The block is used to generate spaces. {|width| ' ' * width} is used if it
130 @buffer_width -= data.width
135 @buffer_width -= text.width
140 # This adds +obj+ as a text of +width+ columns in width.
142 # If +width+ is not specified, obj.length is used.
144 def text(obj, width
[all...]
/macosx-10.10/tcl-105/tcl_ext/quicktimetcl/quicktimetcl/ExampleCode/
H A DTestAddImage.tcl4 set width [image width $firstImage]
11 .m tracks new video $width $height
/macosx-10.10/top-100.1.2/
H A Dlayout.c42 if(s->request_size.width > s->minimum_size.width) {
43 size = s->request_size.width;
45 size = s->minimum_size.width;
51 s->actual_size.width = size;
53 s->actual_size.width += data->add;
82 struct statistic_size firstsize = {.width = 1, .height = 1};
101 top_log("error info: data->x %d s->actual_size.width %d "
102 "s->actual_size.height %d\n", data->x, s->actual_size.width,
110 data->x += s->actual_size.width;
[all...]
/macosx-10.10/xnu-2782.1.97/libkern/stdio/
H A Dscanf.c136 size_t width; /* field width, or 0 */ local
169 width = 0;
210 width = width * 10 + c - '0';
317 if (width == 0)
318 width = 1;
322 if ((n = inr) < (int)width) {
324 width -= n;
330 sum += width;
[all...]
/macosx-10.10/tcl-105/tk/tk/unix/
H A DtkUnixMenubu.c86 int width = 0, height = 0;
109 Tk_SizeOfImage(mbPtr->image, &width, &height);
112 Tk_SizeOfBitmap(mbPtr->display, mbPtr->bitmap, &width, &height);
115 imageWidth = width;
153 fullWidth = (width > mbPtr->textWidth ? width : mbPtr->textWidth);
155 imageXOffset = (fullWidth - width)/2;
164 textXOffset = width + mbPtr->padX;
168 fullWidth = mbPtr->textWidth + mbPtr->padX + width;
179 fullWidth = (width > mbPt
84 int width = 0, height = 0; local
359 int width, height, mm, pixels; local
[all...]
/macosx-10.10/tcl-105/tk84/tk/unix/
H A DtkUnixMenubu.c81 int width, height, fullWidth, fullHeight;
106 Tk_SizeOfImage(mbPtr->image, &width, &height);
109 Tk_SizeOfBitmap(mbPtr->display, mbPtr->bitmap, &width, &height);
112 imageWidth = width;
147 fullWidth = (width > mbPtr->textWidth ? width :
150 imageXOffset = (fullWidth - width)/2;
157 textXOffset = width + mbPtr->padX;
161 fullWidth = mbPtr->textWidth + mbPtr->padX + width;
170 fullWidth = (width > mbPt
79 int width, height, fullWidth, fullHeight; local
350 int width, height, mm, pixels; local
[all...]

Completed in 204 milliseconds

1234567891011>>