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

1234567891011>>

/external/skia/gpu/src/
H A DGrRectanizer.cpp37 return fAreaSoFar / ((float)this->width() * this->height());
40 virtual int stripToPurge(int height) const { return -1; }
56 static int HeightToRowIndex(int height) { argument
57 GrAssert(height >= MIN_HEIGHT_POW2);
58 return 32 - Gr_clz(height - 1);
64 bool canAddStrip(int height) const {
65 return fNextStripY + height <= this->height();
75 bool GrRectanizerPow2::addRect(int width, int height, GrIPoint16* loc) { argument
77 (unsigned)height > (unsigne
126 Factory(int width, int height) argument
[all...]
H A DGrRectanizer_fifo.cpp37 return fAreaSoFar / ((float)this->width() * this->height());
40 virtual int stripToPurge(int height) const { return -1; }
56 static int HeightToRowIndex(int height) { argument
57 GrAssert(height >= MIN_HEIGHT_POW2);
58 return 32 - Gr_clz(height - 1);
64 bool canAddStrip(int height) const {
65 return fNextStripY + height <= this->height();
75 bool GrRectanizerFIFO::addRect(int width, int height, GrIPoint16* loc) { argument
77 (unsigned)height > (unsigne
126 Factory(int width, int height) argument
[all...]
/external/webkit/Source/WebKit/chromium/public/
H A DWebSize.h46 int height; member in struct:WebKit::WebSize
48 bool isEmpty() const { return width <= 0 || height <= 0; }
52 , height(0)
56 WebSize(int width, int height) argument
58 , height(height)
65 , height(s.height())
72 height = s.height();
[all...]
H A DWebRect.h48 int height; member in struct:WebKit::WebRect
50 bool isEmpty() const { return width <= 0 || height <= 0; }
56 , height(0)
60 WebRect(int x, int y, int width, int height) argument
64 , height(height)
73 , height(r.height())
82 height = r.height();
[all...]
H A DWebFloatRect.h46 float height; member in struct:WebKit::WebFloatRect
48 bool isEmpty() const { return width <= 0 || height <= 0; }
54 , height(0.0f)
58 WebFloatRect(float x, float y, float width, float height) argument
62 , height(height)
71 , height(r.height())
80 height = r.height();
[all...]
/external/skia/src/utils/
H A DSkEGLContext_none.cpp9 bool SkEGLContext::init(int width, int height) { argument
/external/v8/test/mjsunit/compiler/
H A Dregress-3136962.js29 // value of global variable height was reused even after reassignment.
31 var height = 267; variable
34 function inner() { height = 0; ++count; }
38 for (var i = 0; i < height; ++i) {
40 if (i + j < 0 || i + j >= height) continue;
/external/skia/gpu/include/
H A DGrRectanizer.h33 GrRectanizer(int width, int height) : fWidth(width), fHeight(height) { argument
35 GrAssert(height >= 0);
41 int height() const { return fHeight; } function in class:GrRectanizer
43 virtual bool addRect(int width, int height, GrIPoint16* loc) = 0;
46 // return the Y-coordinate of a strip that should be purged, given height
49 virtual int stripToPurge(int height) const = 0;
55 static GrRectanizer* Factory(int width, int height);
/external/chromium/chrome/browser/resources/options/
H A Dcertificate_manager.css13 height: 300px;
/external/libvpx/vp8/common/arm/
H A Dbilinearfilter_arm.h20 unsigned int height,
30 unsigned int height,
/external/replicaisland/src/com/replica/replicaisland/
H A DTexture.java29 public int height; field in class:Texture
41 height = 0;
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DIntSizeQt.cpp38 , m_height(r.height())
44 return QSize(width(), height());
H A DFloatRectQt.cpp38 , r.height())
44 return QRectF(x(), y(), width(), height());
55 if (height() < 0) {
56 normalizedRect.setY(y() + height());
57 normalizedRect.setHeight(-height());
/external/webkit/Source/WebCore/platform/graphics/
H A DFloatSize.cpp36 FloatSize::FloatSize(const IntSize& size) : m_width(size.width()), m_height(size.height())
45 FloatSize FloatSize::narrowPrecision(double width, double height) argument
47 return FloatSize(narrowPrecisionToFloat(width), narrowPrecisionToFloat(height));
H A DPath.cpp74 float slope = atan2f(change.height(), change.width());
118 FloatSize halfSize(rect.width() / 2, rect.height() / 2);
125 // If ry is greater than half of the height of the rectangle
126 // then set ry to half of the height (required in SVG spec)
127 if (radius.height() > halfSize.height())
128 radius.setHeight(halfSize.height());
135 addBezierCurveTo(FloatPoint(rect.x() + rect.width() - radius.width() * gCircleControlPoint, rect.y()), FloatPoint(rect.x() + rect.width(), rect.y() + radius.height() * gCircleControlPoint), FloatPoint(rect.x() + rect.width(), rect.y() + radius.height()));
137 if (radius.height() < halfSiz
[all...]
/external/webkit/Source/WebCore/platform/
H A DLengthSize.h34 LengthSize(Length width, Length height) argument
36 , m_height(height)
48 void setHeight(Length height) { m_height = height; } argument
49 Length height() const { return m_height; } function in struct:WebCore::LengthSize
/external/skia/src/gpu/
H A DSkGrTexturePixelRef.cpp36 int left, top, width, height; local
41 height = subset->height();
46 height = fTexture->height();
48 dst->setConfig(SkBitmap::kARGB_8888_Config, width, height);
52 return fTexture->readPixels(left, top, width, height,
80 int left, top, width, height; local
85 height = subset->height();
[all...]
/external/webkit/Source/WebCore/rendering/style/
H A DStyleGeneratedImage.cpp45 int height = fixedSize.height() * multiplier; local
47 // Don't let images that have a width/height >= 1 shrink below 1 when zoomed.
51 if (fixedSize.height() > 0)
52 height = max(1, height);
54 return IntSize(width, height);
/external/opencv/cvaux/src/
H A D_cvaux.h57 return size1.width == size2.width && size1.height == size2.height;
63 return size1.width != size2.width || size1.height != size2.height;
/external/skia/tests/
H A DFillPathTest.cpp46 int height = 100; local
49 clip.setRect(0, height - expected_lines, width, height);
51 path.quadTo(width/2, height, width, 0.0);
/external/webkit/Source/WebCore/platform/image-decoders/cairo/
H A DImageDecoderCairo.cpp37 m_bytes)), CAIRO_FORMAT_ARGB32, width(), height(),
/external/webkit/Source/WebKit/android/benchmark/
H A Dmain.cpp39 int height = 600; local
49 height = atoi(x + 1);
50 LOGD("Rendering page at %dx%d", width, height);
64 android::benchmark(argv[optind], reloadCount, width, height);
/external/skia/src/core/
H A DSkBitmap_scroll.cpp35 int height = this->height(); local
38 if ((dx | dy) == 0 || width <= 0 || height <= 0) {
49 r.set(0, 0, width, height);
80 height += dy;
83 height -= dy;
85 src += (height - 1) * rowBytes;
86 dst += (height - 1) * rowBytes;
100 while (--height >= 0) {
/external/chromium/chrome/browser/
H A Dntp_background_util.cc23 int height = area.height() + ntp_background->height(); local
26 y_pos += area.height() + tab_contents_height - ntp_background->height();
45 height = ntp_background->height();
47 y_pos = y_pos % ntp_background->height() - ntp_background->height();
53 canvas->TileImageInt(*ntp_background, x_pos, y_pos, width, height);
[all...]
/external/libyuv/files/include/libyuv/
H A Dplanar_functions.h26 int width, int height);
33 int width, int height,
43 int width, int height);
51 int width, int height);
59 int width, int height);
67 int width, int height);
74 int width, int height);
81 int width, int height);
88 int width, int height);
95 int width, int height);
[all...]

Completed in 456 milliseconds

1234567891011>>