/external/quake/quake/src/QW/client/ |
glquake2.h | 12 void GL_BeginRendering (int *x, int *y, int *width, int *height);
36 void GL_Upload32 (unsigned *data, int width, int height, qboolean mipmap, qboolean alpha, qboolean modulate);
37 void GL_Upload8 (byte *data, int width, int height, qboolean mipmap, qboolean alpha, qboolean modulate);
38 int GL_LoadTexture (char *identifier, int width, int height, byte *data, int mipmap, int alpha, int modulate);
87 unsigned width;
member in struct:surfcache_s 91 byte data[4]; // width*height elements
98 int rowbytes; // destination logical width in bytes
|
glquake.h | 43 void GL_BeginRendering (int *x, int *y, int *width, int *height); 72 void GL_Upload32 (unsigned *data, int width, int height, qboolean mipmap, qboolean alpha); 73 void GL_Upload8 (byte *data, int width, int height, qboolean mipmap, qboolean alpha); 74 void GL_Upload8_EXT (byte *data, int width, int height, qboolean mipmap, qboolean alpha); 75 int GL_LoadTexture (char *identifier, int width, int height, byte *data, qboolean mipmap, qboolean alpha); 81 GLsizei width, 133 unsigned width; member in struct:surfcache_s 137 byte data[4]; // width*height elements 144 int rowbytes; // destination logical width in bytes
|
vid_x.c | 159 void st2_fixup( XImage *framebuf, int x, int y, int width, int height)
170 for(xi = (x+width-1); xi >= x; xi--) {
234 X11_buffersize = vid.width * vid.height * sizeof (*d_pzbuffer);
236 vid_surfcachesize = D_SurfaceCacheForRes (vid.width, vid.height);
245 + vid.width * vid.height * sizeof (*d_pzbuffer);
251 mem = ((vid.width*pwidth+7)&~7) * vid.height;
259 vid.width, vid.height,
289 X11_buffersize = vid.width * vid.height * sizeof (*d_pzbuffer);
291 vid_surfcachesize = D_SurfaceCacheForRes (vid.width, vid.height);
300 + vid.width * vid.height * sizeof (*d_pzbuffer); [all...] |
/external/skia/src/core/ |
SkCoreBlitters.h | 56 virtual void blitH(int x, int y, int width); 59 virtual void blitRect(int x, int y, int width, int height); 76 virtual void blitH(int x, int y, int width); 96 virtual void blitH(int x, int y, int width); 99 virtual void blitRect(int x, int y, int width, int height); 140 virtual void blitH(int x, int y, int width); 160 virtual void blitH(int x, int y, int width);
|
/external/webkit/WebCore/css/ |
mediaControlsQt.css | 32 width: 400px; 42 width: 100%; 56 width: 12px; 64 width: 9px; 103 width: 0px; 114 width: 0px; 125 width: 0px;
|
/external/webkit/WebCore/platform/graphics/ |
FloatRect.cpp | 44 FloatRect FloatRect::narrowPrecision(double x, double y, double width, double height) 46 return FloatRect(narrowPrecisionToFloat(x), narrowPrecisionToFloat(y), narrowPrecisionToFloat(width), narrowPrecisionToFloat(height)); 109 m_size.setWidth(width() * sx); 124 if (srcRect.width() == 0 || srcRect.height() == 0) 127 float widthScale = destRect.width() / srcRect.width(); 131 r.width() * widthScale, r.height() * heightScale);
|
GlyphBuffer.h | 65 // so we can save memory space on embedded devices by storing only the width 126 return m_advances[index].width; 130 return m_advances[index].width(); 144 void add(Glyph glyph, const SimpleFontData* font, float width, const FloatSize* offset = 0) 157 CGSize advance = { width, 0 }; 160 m_advances.append(width); 162 m_advances.append(FloatSize(width, 0));
|
/external/webkit/WebCore/platform/graphics/qt/ |
ImageQt.cpp | 105 if (tr.x() || tr.y() || tr.width() != pixmap.width() || tr.height() != pixmap.height()) 143 int width = pixmap->width(); local 145 m_decodedSize = width * height * 4; 146 m_size = IntSize(width, height); 209 if (!framePixmap || framePixmap->width() != 1 || framePixmap->height() != 1)
|
/external/webkit/WebCore/platform/gtk/ |
ScrollViewGtk.cpp | 104 m_horizontalAdjustment->upper = resetValues ? 0 : frameRect().width(); 105 m_horizontalAdjustment->value = resetValues ? 0 : scrollOffset().width(); 153 return IntRect(IntPoint(m_scrollOffset.width(), m_scrollOffset.height()), 154 IntSize(max(0, width() - (verticalScrollbar() && !includeScrollbars ? verticalScrollbar()->width() : 0)), 166 return IntRect(IntPoint(m_scrollOffset.width(), m_scrollOffset.height()), 167 IntSize(measuredWidget->allocation.width,
|
/external/webkit/WebCore/svg/graphics/ |
SVGPaintServerPattern.cpp | 117 if (tileRect.width() > patternBoundaries().width() || tileRect.height() > patternBoundaries().height()) { 119 int tileWidth = static_cast<int>(patternBoundaries().width() + 0.5f); 126 int numX = static_cast<int>(ceilf(tileRect.width() / tileWidth)) + 1; 129 tileImageContext->translate(-patternBoundaries().width() * numX, -patternBoundaries().height() * numY); 133 tileImageContext->translate(patternBoundaries().width(), 0); 136 tileImageContext->translate(-patternBoundaries().width() * numX, 0);
|
/external/webkit/WebKit/mac/WebView/ |
WebRenderNode.mm | 105 int width = 0; 111 width = box->width(); 119 width = box.width(); 124 position:absPos rect:NSMakeRect(x, y, width, height) 167 return [NSString stringWithFormat:@"%.0f", rect.size.width];
|
/frameworks/base/opengl/java/android/opengl/ |
ETC1.java | 86 public static native int getEncodedDataSize(int width, int height); 97 public static native void encodeImage(Buffer in, int width, int height, 110 int width, int height, int pixelSize, int stride); 115 * @param width the width of the image in pixels. 118 public static native void formatHeader(Buffer header, int width, int height); 127 * Read the image width from a PKM header
|
/packages/apps/Camera/src/com/android/camera/ui/ |
Texture.java | 59 protected void setSize(int width, int height) { 60 mWidth = width; 64 protected void setTexCoordSize(float width, float height) { 65 mTexCoordWidth = width; 176 protected Bitmap generateGLCompatibleBitmap(int width, int height) { 177 int newWidth = Util.nextPowerOf2(width); 179 mTexCoordWidth = (float) width / newWidth;
|
/packages/apps/Phone/src/com/android/phone/ |
ButtonGridLayout.java | 75 // Width and height of a button 79 // Width and height of a button + padding. 103 * the measurements for the width/height of buttons. The inflate 166 * width is still AT_MOST and the height is EXACTLY. Either way 167 * the full width/height should be in mWidth and mHeight and we 173 final int width = resolveSize(mWidth, widthMeasureSpec); local 175 setMeasuredDimension(width, height);
|
/packages/inputmethods/PinyinIME/res/xml/ |
skb_template1.xml | 76 width="20%p" height="25%p" code="66" key_type="1"> 87 width="25%p" height="25%p" code="66" key_type="1" balloon="false"> 98 width="14.286%p" height="25%p" code="67" key_type="1" 103 width="14.696%p" height="25%p" key_type="2" label="\?123"/> 107 width="14.696%p" height="25%p" key_type="3" label="\?123"/> 111 width="20%p" height="25%p" code="-2" label="? ?" key_type="1" 119 width="14.696%p" height="25%p" label="." key_type="0"
|
/external/opencore/codecs_v2/utilities/pv_config_parser/src/ |
pv_video_config_parser.cpp | 83 int32 width, height, display_width, display_height = 0; local 86 retval = iDecodeVOLHeader(&psBits, &width, &height, &display_width, &display_height, &profile_level); 91 aOutputs->width = (uint32)display_width; 100 aOutputs->width = 0; 108 int32 width, height, display_width, display_height = 0; local 141 (int*) & width, 151 aOutputs->width = (uint32)display_width; 163 LoadDWORD(dwdat, pData); // Window width 171 aOutputs->width = dwdat;
|
/external/tcpdump/ |
print-dvmrp.c | 174 register u_int i, width; local 183 width = 1; 185 width = 2; 187 width = 3; 189 width = 4; 195 if (bp + width + 1 > ep) { 199 if (len < width + 1) { 204 for (i = 0; i < width; ++i) { 217 len -= width + 1;
|
/external/webkit/WebCore/platform/chromium/ |
ScrollbarThemeChromiumLinux.cpp | 70 const int right = rect.x() + rect.width() - 1; 137 return IntRect(scrollbar->x() + bs.width(), scrollbar->y(), scrollbar->width(), thickness); 147 skrect.set(rect.x(), rect.y(), rect.x() + rect.width(), rect.y() + rect.height()); 169 const int midx = rect.x() + rect.width() / 2; 187 skrect.set(rect.x(), rect.y(), rect.x() + rect.width(), midy + 1); 194 skrect.set(midx + 1, rect.y(), rect.x() + rect.width(), rect.y() + rect.height()); 196 skrect.set(rect.x(), midy + 1, rect.x() + rect.width(), rect.y() + rect.height()); 205 if (rect.height() > 10 && rect.width() > 10) {
|
/external/webkit/WebCore/platform/graphics/android/ |
FontAndroid.cpp | 137 point.xy + [width, height, width, height, ...], so we have to convert 160 x += SkFloatToScalar(adv[i].width()); 171 x += SkFloatToScalar(adv[i].width()); 182 SkScalar width, left; local 187 width = paint.measureText(run.characters(), run.length() << 1); 192 roundf(SkScalarToFloat(width)), 222 SkScalar width = paint.measureText(run.characters(), run.length() << 1); local 223 return SkScalarToFloat(width);
|
/external/webkit/WebCore/platform/graphics/mac/ |
GraphicsContext3DMac.cpp | 199 void GraphicsContext3D::reshape(int width, int height) 201 if (width == m_currentWidth && height == m_currentHeight || !m_contextObj) 204 m_currentWidth = width; 210 ::glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA8, width, height, 0, GL_RGBA, GL_UNSIGNED_BYTE, 0); 215 ::glRenderbufferStorageEXT(GL_RENDERBUFFER_EXT, GL_DEPTH_COMPONENT, width, height); 384 void GraphicsContext3D::copyTexImage2D(unsigned long target, long level, unsigned long internalformat, long x, long y, unsigned long width, unsigned long height, long border) 387 ::glCopyTexImage2D(target, level, internalformat, x, y, width, height, border); 390 void GraphicsContext3D::copyTexSubImage2D(unsigned long target, long level, long xoffset, long yoffset, long x, long y, unsigned long width, unsigned long height) 393 ::glCopyTexSubImage2D(target, level, xoffset, yoffset, x, y, width, height); 643 void GraphicsContext3D::lineWidth(double width) 1170 size_t width; local 1198 size_t width; local [all...] |
/external/webkit/WebKit/chromium/src/ |
GraphicsContext3D.cpp | 109 void reshape(int width, int height); 130 void viewportImpl(long x, long y, unsigned long width, unsigned long height); 148 unsigned int width, 179 // If the width and height of the Canvas's backing store don't 653 void GraphicsContext3DInternal::reshape(int width, int height) 656 SetWindowPos(m_canvasWindow, HWND_TOP, 0, 0, width, height, 661 m_cachedWidth = width; 683 glTexImage2D(target, 0, GL_RGBA8, width, height, 0, GL_RGBA, GL_UNSIGNED_BYTE, 0); 689 glRenderbufferStorageEXT(GL_RENDERBUFFER_EXT, GL_DEPTH_COMPONENT, width, height); 708 m_scanline = new unsigned char[width * 4] 2010 int width = skiaImage->width(); local 2028 int width = CGImageGetWidth(cgImage); local [all...] |
/frameworks/base/awt/org/apache/harmony/awt/gl/ |
CommonGraphics2D.java | 71 * Graphics.copyArea(int x, int y, int width, int height, int dx, int dy) 184 public void clearRect(int x, int y, int width, int height) { 188 fillRect(x, y, width, height); 192 System.err.println("CommonGraphics2D.clearRect("+x+", "+y+", "+width+", "+height+")"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ //$NON-NLS-5$ 197 public void clipRect(int x, int y, int width, int height) { 198 clip(new Rectangle(x, y, width, height)); 294 public void drawArc(int x, int y, int width, int height, int sa, int ea) { 300 MultiRectArea mra = JavaArcRasterizer.rasterize(x, y, width, height, sa, ea, clip); 304 draw(new Arc2D.Float(x, y, width, height, sa, ea, Arc2D.OPEN)); 347 public boolean drawImage(Image image, int x, int y, int width, int height 591 int width = (int)Math.round(img.getWidth()*scaleX); local [all...] |
/frameworks/base/docs/html/sdk/api_diff/3/changes/ |
android.widget.CursorAdapter.html | 80 <TABLE summary="Added Methods" WIDTH="100%"> 85 <TD VALIGN="TOP" WIDTH="25%"> 95 <TABLE summary="Changed Methods" WIDTH="100%"> 100 <TD VALIGN="TOP" WIDTH="25%"> 104 <TD VALIGN="TOP" WIDTH="30%"> 110 <TD VALIGN="TOP" WIDTH="25%"> 114 <TD VALIGN="TOP" WIDTH="30%"> 120 <TD VALIGN="TOP" WIDTH="25%"> 124 <TD VALIGN="TOP" WIDTH="30%">
|
pkg_android.hardware.html | 78 <TABLE summary="Added Classes and Interfaces" WIDTH="100%"> 83 <TD VALIGN="TOP" WIDTH="25%"> 90 <TD VALIGN="TOP" WIDTH="25%"> 97 <TD VALIGN="TOP" WIDTH="25%"> 104 <TD VALIGN="TOP" WIDTH="25%"> 114 <TABLE summary="Changed Classes and Interfaces" WIDTH="100%"> 119 <TD VALIGN="TOP" WIDTH="25%"> 126 <TD VALIGN="TOP" WIDTH="25%"> 133 <TD VALIGN="TOP" WIDTH="25%">
|
pkg_android.webkit.html | 78 <TABLE summary="Added Classes" WIDTH="100%"> 83 <TD VALIGN="TOP" WIDTH="25%"> 93 <TABLE summary="Changed Classes and Interfaces" WIDTH="100%"> 98 <TD VALIGN="TOP" WIDTH="25%"> 105 <TD VALIGN="TOP" WIDTH="25%"> 112 <TD VALIGN="TOP" WIDTH="25%"> 119 <TD VALIGN="TOP" WIDTH="25%"> 126 <TD VALIGN="TOP" WIDTH="25%"> 133 <TD VALIGN="TOP" WIDTH="25%">
|