Searched refs:width (Results 76 - 100 of 2946) sorted by relevance

1234567891011>>

/macosx-10.10/bind9-45.101/bind9/contrib/idn/idnkit-1.0-src/lib/
H A Dutf8.c85 int width = UTF8_WIDTH(*p); local
95 if (width == 0 || len < width)
102 w = width;
108 return (width);
117 int width; local
128 width = UTF8_WIDTH(c);
130 switch (width) {
162 if (len < width)
165 rest = width
241 int width; local
[all...]
/macosx-10.10/ncurses-44/ncurses/ncurses/trace/
H A Dlib_tracedmp.c52 int i, j, n, width; local
54 /* compute narrowest possible display width */
55 for (width = i = 0; i <= win->_maxy; ++i) {
65 if (n > width)
66 width = n;
68 if (width < win->_maxx)
69 ++width;
70 if (++width + 1 > (int) my_length) {
71 my_length = 2 * (width + 1);
84 for (j = 0; j < width;
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/graphics/
H A DImage.cpp112 intrinsicTileSize.setWidth(scaledTileSize.width());
116 FloatSize scale(scaledTileSize.width() / intrinsicTileSize.width(),
120 FloatSize actualTileSize(scaledTileSize.width() + spaceSize().width(), scaledTileSize.height() + spaceSize().height());
121 oneTileRect.setX(destRect.x() + fmodf(fmodf(-srcPoint.x(), actualTileSize.width()) - actualTileSize.width(), actualTileSize.width()));
128 visibleSrcRect.setX((destRect.x() - oneTileRect.x()) / scale.width());
130 visibleSrcRect.setWidth(destRect.width() / scal
[all...]
H A DPath.cpp101 FloatSize halfSize(rect.width() / 2, rect.height() / 2);
105 // negative then rx = ry = 0. If rx is greater than half of the width of the rectangle
106 // then set rx to half of the width; ry is handled similarly.
108 if (radius.width() < 0)
112 radius.setHeight(radius.width());
114 if (radius.width() > halfSize.width())
115 radius.setWidth(halfSize.width());
158 moveTo(FloatPoint(rect.x() + topLeftRadius.width(), rect.y()));
160 addLineTo(FloatPoint(rect.maxX() - topRightRadius.width(), rec
[all...]
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DBreakpoint.css27 width: 420px;
32 width: 460px;
43 width: 100%;
50 width: 1px; /* Shrink to fit. */
60 width: 100%;
H A DHierarchicalPathComponent.css30 min-width: 32px;
34 min-width: 44px;
38 min-width: 24px;
56 width: 16px;
63 width: 5px;
83 min-width: 0;
84 max-width: 400px;
88 min-width: 0;
89 width: 100%;
120 width
[all...]
/macosx-10.10/tcl-105/tcl_ext/tklib/tklib/modules/controlwidget/
H A Dvoltmeter.tcl75 option -width -default 50m
92 canvas $win.c -background $options(-background) -width $options(-width) -height $options(-height) \
100 set width [$win.c cget -width]
102 set xcentre [expr {$width*0.5}]
103 set ycentre [expr {$width*1.4}]
108 [expr {$xcentre-$width*$t}] [expr {$ycentre-$width*$t}] \
109 [expr {$xcentre+$width*
[all...]
/macosx-10.10/tcl-105/tcl_ext/tkimg/tkimg/compat/libtiff/tools/
H A Dtiff2rgba.c135 uint32 width, height; /* image width & height */ local
142 TIFFGetField(in, TIFFTAG_IMAGEWIDTH, &width);
185 for( col = 0; ok && col < width; col += tile_width )
246 uint32 width, height; /* image width & height */ local
252 TIFFGetField(in, TIFFTAG_IMAGEWIDTH, &width);
265 raster_size = multiply(multiply(width, rowsperstrip), sizeof (uint32));
269 (unsigned long) width, (unsigned long) rowsperstrip);
282 wrk_line = (uint32*)_TIFFmalloc(width * sizeo
365 uint32 width, height; /* image width & height */ local
467 uint32 width, height; /* image width & height */ local
[all...]
/macosx-10.10/WebCore-7600.1.25/html/canvas/
H A DWebGLTexture.cpp144 void WebGLTexture::setLevelInfo(GC3Denum target, GC3Dint level, GC3Denum internalFormat, GC3Dsizei width, GC3Dsizei height, GC3Denum type) argument
148 // We assume level, internalFormat, width, height, and type have all been
153 m_info[index][level].setInfo(internalFormat, width, height, type);
166 GC3Dsizei width = info0.width; local
168 GC3Dint levelCount = computeLevelCount(width, height);
170 width = std::max(1, width >> 1);
173 info.setInfo(info0.internalFormat, width, height, info0.type);
202 return info->width;
230 isNPOT(GC3Dsizei width, GC3Dsizei height) argument
317 computeLevelCount(GC3Dsizei width, GC3Dsizei height) argument
360 GC3Dsizei width = info0.width; local
[all...]
/macosx-10.10/WebCore-7600.1.25/rendering/style/
H A DStyleGeneratedImage.cpp52 float width = fixedSize.width() * multiplier; local
55 // Don't let images that have a width/height >= 1 shrink below 1 device pixel when zoomed.
57 if (fixedSize.width() > 0)
58 width = std::max<float>(1 / deviceScaleFactor, width);
63 return FloatSize(width, height);
73 intrinsicWidth = Length(size.width(), Fixed);
/macosx-10.10/WebCore-7600.1.25/svg/
H A DSVGFitToViewBox.cpp51 float width = 0.0f; local
53 bool valid = parseNumber(c, end, x) && parseNumber(c, end, y) && parseNumber(c, end, width) && parseNumber(c, end, height, false);
55 viewBox = FloatRect(x, y, width, height);
63 if (width < 0.0) { // check that width is positive
64 doc->accessSVGExtensions()->reportError("A negative value for ViewBox width is not allowed");
77 viewBox = FloatRect(x, y, width, height);
83 if (!viewBoxRect.width() || !viewBoxRect.height())
86 return preserveAspectRatio.getCTM(viewBoxRect.x(), viewBoxRect.y(), viewBoxRect.width(), viewBoxRect.height(), viewWidth, viewHeight);
/macosx-10.10/WebKit2-7600.1.25/Shared/API/c/
H A DWKGeometry.h50 double width; member in struct:WKSize
55 WK_INLINE WKSize WKSizeMake(double width, double height) argument
58 size.width = width;
69 WK_INLINE WKRect WKRectMake(double x, double y, double width, double height) argument
74 rect.size.width = width;
/macosx-10.10/IOGraphics-485/tools/
H A Dgaussblur.c34 uint32_t width, height; local
70 width = CGDisplayPixelsWide(displayIDs[0]);
73 buffer = malloc(width * height * sizeof(uint32_t));
76 bcopy(screen + j * rowBytes, buffer + j * width, width * sizeof(uint32_t));
80 printf("copy Mbs %f\n", ((double) width * height * sizeof(uint32_t)) / 1024.0 / 1024.0 / ((end - start) * scale / NSEC_PER_SEC) );
85 compressBuffer = malloc(width * height * sizeof(uint32_t) * 2);
88 //rowBytes = width;
93 width, height, rowBytes << 2,
94 (UInt8 *) compressBuffer, width * heigh
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/graphics/opengl/
H A DGraphicsContext3DOpenGLES.cpp48 void GraphicsContext3D::readPixels(GC3Dint x, GC3Dint y, GC3Dsizei width, GC3Dsizei height, GC3Denum format, GC3Denum type, void* data) argument
55 resolveMultisamplingIfNecessary(IntRect(x, y, width, height));
60 ::glReadPixels(x, y, width, height, format, type, data);
66 void GraphicsContext3D::readPixelsAndConvertToBGRAIfNecessary(int x, int y, int width, int height, unsigned char* pixels) argument
68 ::glReadPixels(x, y, width, height, GL_RGBA, GL_UNSIGNED_BYTE, pixels);
69 int totalBytes = width * height * 4;
78 const int width = size.width(); local
104 ::glTexImage2D(GL_TEXTURE_2D, 0, m_internalColorFormat, width, height, 0, colorFormat, pixelDataType, 0);
109 ::glTexImage2D(GL_TEXTURE_2D, 0, m_internalColorFormat, width, heigh
183 renderbufferStorage(GC3Denum target, GC3Denum internalformat, GC3Dsizei width, GC3Dsizei height) argument
204 texImage2D(GC3Denum target, GC3Dint level, GC3Denum internalformat, GC3Dsizei width, GC3Dsizei height, GC3Dint border, GC3Denum format, GC3Denum type, const void* pixels) argument
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/graphics/filters/
H A DFEConvolveMatrix.cpp50 ASSERT(m_kernelSize.width() > 0);
70 ASSERT(kernelSize.width() > 0);
187 Image size: width: 10, height: 10
189 Order (kernel matrix size): width: 3, height 4
256 int pixel = (m_targetOffset.y() * paintingData.width + m_targetOffset.x()) * 4;
258 int xIncrease = (m_kernelSize.width() - 1) * 4;
273 int width = m_kernelSize.width(); local
289 if (!--width) {
291 width
338 int width = x2 - x1; local
354 int width = m_kernelSize.width(); local
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/graphics/texmap/coordinated/
H A DAreaAllocator.cpp60 int width = size.width() + m_margin.width(); local
62 int extra = width % m_minAlloc.width();
64 width += m_minAlloc.width() - extra;
69 return IntSize(width, height);
76 m_root->rect = IntRect(0, 0, m_size.width(), m_size.height());
106 if (!m_root->left && m_root->largestFree.width() >
[all...]
/macosx-10.10/dcerpc-61/www/content/css/blueprint/src/
H A Dgrid.css19 width: 950px;
42 /* Use these classes to set the width of a column. */
43 .span-1 { width: 30px; }
44 .span-2 { width: 70px; }
45 .span-3 { width: 110px; }
46 .span-4 { width: 150px; }
47 .span-5 { width: 190px; }
48 .span-6 { width: 230px; }
49 .span-7 { width: 270px; }
50 .span-8 { width
[all...]
/macosx-10.10/tcl-105/tcl_ext/tkimg/tkimg/base/
H A DtkimgPPB.c53 int width, /* Dimensions of the area of the image */
58 return Tk_PhotoPutBlock(interp, handle, blockPtr, x, y, width, height, flags);
61 Tk_PhotoPutBlock_Panic(handle, blockPtr, x, y, width, height, flags);
90 while (X < width) {
92 while ((X < width) && !(*pixelPtr)) {
97 while ((end < width) && *pixelPtr) {
112 Tk_PhotoPutBlock_NoComposite(handle, blockPtr, x, y, width, height);
120 int width, /* Dimensions of the area of the image */
124 return Tk_PhotoExpand(interp, handle, width, height);
126 Tk_PhotoExpand_Panic(handle, width, heigh
46 tkimg_PhotoPutBlock( Tcl_Interp *interp, Tk_PhotoHandle handle, Tk_PhotoImageBlock *blockPtr, int x, int y, int width, int height, int flags ) argument
116 tkimg_PhotoExpand( Tcl_Interp *interp, Tk_PhotoHandle handle, int width, int height ) argument
130 tkimg_PhotoSetSize( Tcl_Interp *interp, Tk_PhotoHandle handle, int width, int height ) argument
[all...]
/macosx-10.10/tcl-105/tk84/tk/unix/
H A DtkUnixButton.c90 int width, height, fullWidth, fullHeight;
179 Tk_SizeOfImage(butPtr->image, &width, &height);
182 Tk_SizeOfBitmap(butPtr->display, butPtr->bitmap, &width, &height);
185 imageWidth = width;
206 fullWidth = (width > butPtr->textWidth ? width :
209 imageXOffset = (fullWidth - width)/2;
216 textXOffset = width + butPtr->padX;
220 fullWidth = butPtr->textWidth + butPtr->padX + width;
229 fullWidth = (width > butPt
88 int width, height, fullWidth, fullHeight; local
618 int width, height, avgWidth, txtWidth, txtHeight; local
[all...]
/macosx-10.10/Heimdal-398.1.2/lib/roken/
H A Dsnprintf.c123 pad(struct snprintf_state *state, int width, char c) argument
126 while(width-- > 0){
143 int width, int prec, int flags, int minusp)
208 width -= prec;
210 width -= nlen;
213 width -= 2;
216 width--;
218 /* pad to width */
219 len += pad(state, width, ' ');
231 /* pad to width wit
141 append_number(struct snprintf_state *state, u_longest num, unsigned base, const char *rep, int width, int prec, int flags, int minusp) argument
256 append_string(struct snprintf_state *state, const unsigned char *arg, int width, int prec, int flags) argument
291 append_char(struct snprintf_state *state, unsigned char arg, int width, int flags) argument
357 int width = 0; local
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/graphics/gpu/
H A DTexture.cpp46 Texture::Texture(GraphicsContext3D* context, PassOwnPtr<Vector<unsigned int>> tileTextureIds, Format format, int width, int height, int maxTextureSize) argument
49 , m_tiles(IntSize(maxTextureSize, maxTextureSize), IntSize(width, height), true)
84 PassRefPtr<Texture> Texture::create(GraphicsContext3D* context, Format format, int width, int height) argument
88 TilingData tiling(IntSize(maxTextureSize, maxTextureSize), IntSize(width, height), true);
119 tileBoundsWithBorder.width(),
123 return adoptRef(new Texture(context, textureIds.release(), format, width, height, maxTextureSize));
127 static uint32_t* copySubRect(uint32_t* src, int srcX, int srcY, uint32_t* dst, int width, int height, int srcStride) argument
131 if (!swizzle && width == srcStride)
137 for (int x = 0; x < width ; ++x) {
145 memcpy(dst + y * width, srcOffse
[all...]
/macosx-10.10/curl-83.1.2/curl/tests/unit/
H A Dunit1398.c34 int width = 3; variable
40 rc = curl_msnprintf(output, 4, "%.*s", width, buf);
45 rc = curl_msnprintf(output, 4, "%.*s", width, str);
49 width = 2;
51 rc = curl_msnprintf(output, 4, "%.*s", width, buf);
65 /* negative width */
70 /* larger width that string length */
/macosx-10.10/tcl-105/tcl_ext/quicktimetcl/quicktimetcl/ExampleCode/tests/
H A DtestCreateDestroy2.tcl17 set width [winfo width .m1.m]
25 set x [expr 20 + ($no-1) * ($width + 10)]
32 global height width num
33 for {set x 0} {$x<[expr $width*$num/2+100]} {incr x 50} {
/macosx-10.10/tcl-105/tk/tk/macosx/
H A DtkMacOSXButton.c387 TKLog(@"button %s frame %@ width %d height %d",
426 int width, height, border = 0;
536 int width, height;
541 Tk_SizeOfImage(butPtr->image, &width, &height);
543 butPtr->image, width, height);
546 butPtr->selectImage, width, height);
550 butPtr->tristateImage, width, height);
553 Tk_SizeOfBitmap(butPtr->display, butPtr->bitmap, &width, &height);
555 butPtr->bitmap, butPtr->normalTextGC, width, height);
557 butPtr->bitmap, butPtr->activeTextGC, width, heigh
419 int width, height, border = 0; local
529 int width, height; local
700 int width = 0, height = 0, fullWidth, fullHeight; local
1054 int width, height, avgWidth, txtWidth, txtHeight; local
[all...]
/macosx-10.10/WebCore-7600.1.25/css/
H A DCSSToLengthConversionData.cpp54 return m_renderView->viewportSizeForCSSViewportUnits().width() / 100.0;
77 return std::min(viewportSizeForCSSViewportUnits.width(), viewportSizeForCSSViewportUnits.height()) / 100.0;
89 return std::max(viewportSizeForCSSViewportUnits.width(), viewportSizeForCSSViewportUnits.height()) / 100.0;

Completed in 215 milliseconds

1234567891011>>