Searched defs:maxY (Results 1 - 25 of 54) sorted by relevance

123

/external/chromium_org/third_party/skia/src/core/
H A DSkBitmapFilter.cpp29 const int maxY = s.fBitmap->height() - 1; local
41 int y0 = SkClampMax(SkScalarCeilToInt(srcPt.fY-s.getBitmapFilter()->width()), maxY);
42 int y1 = SkClampMax(SkScalarFloorToInt(srcPt.fY+s.getBitmapFilter()->width()), maxY);
H A DSkBitmapProcState_shaderproc.h40 const unsigned maxY = s.fBitmap->height() - 1; local
42 subY = TILEY_LOW_BITS(fy, maxY);
43 int y0 = TILEY_PROCF(fy, maxY);
44 int y1 = TILEY_PROCF((fy + s.fFilterOneY), maxY);
H A DSkBitmapProcState_matrix.h61 const unsigned maxY = s.fBitmap->height() - 1; local
62 *xy++ = TILEY_PROCF(SkFractionalIntToFixed(fx), maxY);
128 int maxY = s.fBitmap->height() - 1; local
131 *xy++ = (TILEY_PROCF(SkFractionalIntToFixed(fy), maxY) << 16) |
144 int maxY = s.fBitmap->height() - 1; local
153 *xy++ = (TILEY_PROCF(srcXY[1], maxY) << 16) |
194 const unsigned maxY = s.fBitmap->height() - 1; local
196 *xy++ = PACK_FILTER_Y_NAME(fy, maxY, s.fFilterOneY PREAMBLE_ARG_Y);
236 unsigned maxY = s.fBitmap->height() - 1; local
239 *xy++ = PACK_FILTER_Y_NAME(fy, maxY, one
253 unsigned maxY = s.fBitmap->height() - 1; local
[all...]
/external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/control/ragdoll/
H A DRagdollPreset.java65 private float maxX, minX, maxY, minY, maxZ, minZ; field in class:RagdollPreset.JointPreset
70 public JointPreset(float maxX, float minX, float maxY, float minY, float maxZ, float minZ) { argument
73 this.maxY = maxY;
82 joint.getRotationalLimitMotor(1).setHiLimit(maxY);
H A DRagdollUtils.java29 public static void setJointLimit(SixDofJoint joint, float maxX, float minX, float maxY, float minY, float maxZ, float minZ) { argument
33 joint.getRotationalLimitMotor(1).setHiLimit(maxY);
/external/skia/src/core/
H A DSkBitmapFilter.cpp29 const int maxY = s.fBitmap->height() - 1; local
41 int y0 = SkClampMax(SkScalarCeilToInt(srcPt.fY-s.getBitmapFilter()->width()), maxY);
42 int y1 = SkClampMax(SkScalarFloorToInt(srcPt.fY+s.getBitmapFilter()->width()), maxY);
H A DSkBitmapProcState_shaderproc.h40 const unsigned maxY = s.fBitmap->height() - 1; local
42 subY = TILEY_LOW_BITS(fy, maxY);
43 int y0 = TILEY_PROCF(fy, maxY);
44 int y1 = TILEY_PROCF((fy + s.fFilterOneY), maxY);
H A DSkBitmapProcState_matrix.h61 const unsigned maxY = s.fBitmap->height() - 1; local
62 *xy++ = TILEY_PROCF(SkFractionalIntToFixed(fx), maxY);
128 int maxY = s.fBitmap->height() - 1; local
131 *xy++ = (TILEY_PROCF(SkFractionalIntToFixed(fy), maxY) << 16) |
144 int maxY = s.fBitmap->height() - 1; local
153 *xy++ = (TILEY_PROCF(srcXY[1], maxY) << 16) |
194 const unsigned maxY = s.fBitmap->height() - 1; local
196 *xy++ = PACK_FILTER_Y_NAME(fy, maxY, s.fFilterOneY PREAMBLE_ARG_Y);
236 unsigned maxY = s.fBitmap->height() - 1; local
239 *xy++ = PACK_FILTER_Y_NAME(fy, maxY, one
253 unsigned maxY = s.fBitmap->height() - 1; local
[all...]
/external/chromium_org/android_webview/java/src/org/chromium/android_webview/
H A DOverScrollGlow.java45 * @param maxY Maximum range for vertical scrolling
47 public void pullGlow(int x, int y, int oldX, int oldY, int maxX, int maxY) { argument
69 if (maxY > 0 || mHostView.getOverScrollMode() == View.OVER_SCROLL_ALWAYS) {
76 } else if (pulledToY > maxY) {
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
H A DRegion.cpp83 int maxY = (span + 1)->y; local
87 if (maxY <= point.y())
233 appendSpan(rect.maxY());
343 int maxY = lastSpan->y;
366 ASSERT(minY <= maxY);
368 return IntRect(minX, minY, maxX - minX, maxY - minY);
H A DFloatPolygon.h63 bool overlappingEdges(float minY, float maxY, Vector<const FloatPolygonEdge*>& result) const;
76 EdgeIntervalTree m_edgeTree; // Each EdgeIntervalTree node stores minY, maxY, and a ("UserData") pointer to a FloatPolygonEdge.
90 float maxY() const { return std::max(vertex1().y(), vertex2().y()); } function in class:WebCore::VertexPair
H A DIntRect.h72 int maxY() const { return y() + height(); } function in class:WebCore::IntRect
115 int delta = edge - maxY();
130 { return px >= x() && px < maxX() && py >= y() && py < maxY(); }
H A DRoundedRect.cpp160 int maxY = m_rect.maxY() - max(m_radii.bottomLeft().height(), m_radii.bottomRight().height()); local
161 return IntRect(minX, minY, maxX - minX, maxY - minY);
226 FloatRect rect(m_rect.x(), m_rect.maxY() - bottomLeft.height(), bottomLeft.width(), bottomLeft.height());
228 FloatPoint center(m_rect.x() + bottomLeft.width(), m_rect.maxY() - bottomLeft.height());
237 FloatRect rect(m_rect.maxX() - bottomRight.width(), m_rect.maxY() - bottomRight.height(), bottomRight.width(), bottomRight.height());
239 FloatPoint center(m_rect.maxX() - bottomRight.width(), m_rect.maxY() - bottomRight.height());
H A DFloatRect.cpp65 && isWithinIntRange(maxX()) && isWithinIntRange(maxY());
73 && y() < other.maxY() && other.y() < maxY();
79 && y() <= other.y() && maxY() >= other.maxY();
86 return x() < point.x() && maxX() > point.x() && y() < point.y() && maxY() > point.y();
94 float b = min(maxY(), other.maxY());
125 float maxY = max(this->maxY(), othe local
148 float maxY = max(this->maxY(), p.y()); local
[all...]
H A DFloatRect.h77 float maxY() const { return y() + height(); } function in class:WebCore::FloatRect
120 float delta = edge - maxY();
142 { return px >= x() && px <= maxX() && py >= y() && py <= maxY(); }
H A DLayoutRect.h68 LayoutUnit maxY() const { return y() + height(); } function in class:WebCore::LayoutRect
128 LayoutUnit delta = edge - maxY();
143 { return px >= x() && px < maxX() && py >= y() && py < maxY(); }
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderOverflow.h93 LayoutUnit maxY = std::max(rect.maxY(), m_layoutOverflow.maxY()); local
97 m_layoutOverflow.setHeight(maxY - m_layoutOverflow.y());
103 LayoutUnit maxY = std::max(rect.maxY(), m_visualOverflow.maxY()); local
107 m_visualOverflow.setHeight(maxY - m_visualOverflow.y());
/external/qemu/distrib/sdl-1.2.15/src/events/
H A DSDL_mouse.c106 void SDL_SetMouseRange(int maxX, int maxY) argument
109 SDL_MouseMaxY = (Sint16)maxY;
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
H A DRectangleShape.cpp113 if (y2 < bounds.y() || y1 >= bounds.maxY())
125 } else if (y1 > bounds.maxY() - bounds.ry()) {
126 float yi = y1 - (bounds.maxY() - bounds.ry());
145 if (y1 < bounds.y() || y2 > bounds.maxY())
153 bool y2InterceptsCorner = y2 > bounds.maxY() - bounds.ry();
161 float yi = y2 - (bounds.maxY() - bounds.ry());
168 float yi = y2 - (bounds.maxY() - bounds.ry());
192 float maxY = minY + minIntervalHeight; local
194 if (maxY > bounds.maxY())
[all...]
/external/chromium_org/third_party/skia/src/opts/
H A DSkBitmapProcState_matrix_repeat_neon.h71 const unsigned maxY = s.fBitmap->height() - 1; local
72 *xy++ = TILEY_PROCF(fx, maxY);
179 int maxY = s.fBitmap->height() - 1; local
227 yout = vmulq_s32(yout, vdupq_n_s32(maxY+1));
254 uint32_t val = (TILEY_PROCF(ofy, maxY) << 16) | TILEX_PROCF(ofx, maxX);
266 SkDebugf("maxX %08x maxY %08x\n", maxX, maxY);
273 *xy++ = (TILEY_PROCF(fy, maxY) << 16) | TILEX_PROCF(fx, maxX);
285 int maxY = s.fBitmap->height() - 1; local
356 y = vmulq_s32(y, vdupq_n_s32(maxY
428 const unsigned maxY = s.fBitmap->height() - 1; local
471 unsigned maxY = s.fBitmap->height() - 1; local
490 unsigned maxY = s.fBitmap->height() - 1; local
[all...]
H A DSkBitmapFilter_opts_SSE2.cpp55 const int maxY = s.fBitmap->height() - 1; local
71 int y1 = SkTMin(maxY, int(floor(sy+s.getBitmapFilter()->width() + 0.5f)));
119 const int maxY = s.fBitmap->height() - 1; local
128 int y1 = SkTMin(maxY, int(floor(sy+s.getBitmapFilter()->width() + 0.5f)));
/external/jmonkeyengine/engine/src/bullet-native/
H A Dcom_jme3_bullet_PhysicsSpace.cpp49 (JNIEnv * env, jobject object, jfloat minX, jfloat minY, jfloat minZ, jfloat maxX, jfloat maxY, jfloat maxZ, jint broadphase, jboolean threading) {
57 space->createPhysicsSpace(minX, minY, minZ, maxX, maxY, maxZ, broadphase, threading);
48 Java_com_jme3_bullet_PhysicsSpace_createPhysicsSpace(JNIEnv * env, jobject object, jfloat minX, jfloat minY, jfloat minZ, jfloat maxX, jfloat maxY, jfloat maxZ, jint broadphase, jboolean threading) argument
H A DjmePhysicsSpace.cpp105 void jmePhysicsSpace::createPhysicsSpace(jfloat minX, jfloat minY, jfloat minZ, jfloat maxX, jfloat maxY, jfloat maxZ, jint broadphaseId, jboolean threading) { argument
114 btVector3 max = btVector3(maxX, maxY, maxZ);
/external/skia/src/opts/
H A DSkBitmapProcState_matrix_repeat_neon.h71 const unsigned maxY = s.fBitmap->height() - 1; local
72 *xy++ = TILEY_PROCF(fx, maxY);
179 int maxY = s.fBitmap->height() - 1; local
227 yout = vmulq_s32(yout, vdupq_n_s32(maxY+1));
254 uint32_t val = (TILEY_PROCF(ofy, maxY) << 16) | TILEX_PROCF(ofx, maxX);
266 SkDebugf("maxX %08x maxY %08x\n", maxX, maxY);
273 *xy++ = (TILEY_PROCF(fy, maxY) << 16) | TILEX_PROCF(fx, maxX);
285 int maxY = s.fBitmap->height() - 1; local
356 y = vmulq_s32(y, vdupq_n_s32(maxY
428 const unsigned maxY = s.fBitmap->height() - 1; local
471 unsigned maxY = s.fBitmap->height() - 1; local
490 unsigned maxY = s.fBitmap->height() - 1; local
[all...]
/external/skia/tests/
H A DPathOpsCubicReduceOrderTest.cpp23 int index, minX, maxX, minY, maxY; local
24 minX = maxX = minY = maxY = 0;
35 if (cubic[maxY].fY < cubic[index].fY) {
36 maxY = index;
40 && approximately_equal(cubic[maxY].fY, cubic[minY].fY);

Completed in 411 milliseconds

123