HomeSort by relevance Sort by last modified time
    Searched full:maxy (Results 1 - 25 of 293) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_atom_scissor.c 49 GLint miny, maxy; local
54 scissor.maxy = fb->Height;
68 if (ymax < (GLint) scissor.maxy)
69 scissor.maxy = ymax;
72 if (scissor.minx >= scissor.maxx || scissor.miny >= scissor.maxy)
73 scissor.minx = scissor.miny = scissor.maxx = scissor.maxy = 0;
80 miny = fb->Height - scissor.maxy;
81 maxy = fb->Height - scissor.miny;
83 scissor.maxy = maxy;
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_atom_scissor.c 49 GLint miny, maxy; local
54 scissor.maxy = fb->Height;
68 if (ymax < (GLint) scissor.maxy)
69 scissor.maxy = ymax;
72 if (scissor.minx >= scissor.maxx || scissor.miny >= scissor.maxy)
73 scissor.minx = scissor.miny = scissor.maxx = scissor.maxy = 0;
80 miny = fb->Height - scissor.maxy;
81 maxy = fb->Height - scissor.miny;
83 scissor.maxy = maxy;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
IntRect.cpp 54 && y() < other.maxY() && other.y() < maxY();
60 && y() <= other.y() && maxY() >= other.maxY();
68 int bottom = std::min(maxY(), other.maxY());
97 int bottom = std::max(maxY(), other.maxY());
118 int bottom = std::max(maxY(), other.maxY());
    [all...]
LayoutRect.cpp 51 && y() < other.maxY() && other.y() < maxY();
57 && y() <= other.y() && maxY() >= other.maxY();
63 LayoutPoint newMaxPoint(std::min(maxX(), other.maxX()), std::min(maxY(), other.maxY()));
86 LayoutPoint newMaxPoint(std::max(maxX(), other.maxX()), std::max(maxY(), other.maxY()));
103 LayoutPoint newMaxPoint(std::max(maxX(), other.maxX()), std::max(maxY(), other.maxY()));
    [all...]
FloatRect.cpp 62 && isWithinIntRange(maxX()) && isWithinIntRange(maxY());
70 && y() < other.maxY() && other.y() < maxY();
76 && y() <= other.y() && maxY() >= other.maxY();
83 return x() < point.x() && maxX() > point.x() && y() < point.y() && maxY() > point.y();
91 float bottom = std::min(maxY(), other.maxY());
122 float maxY = std::max(this->maxY(), other.maxY())
    [all...]
FloatRoundedRect.cpp 108 if (y < rect().y() || y > rect().maxY())
120 if (!topLeftRect.isEmpty() && y >= topLeftRect.y() && y < topLeftRect.maxY())
121 minXIntercept = topLeftRect.maxX() - cornerRectIntercept(topLeftRect.maxY() - y, topLeftRect);
122 else if (!bottomLeftRect.isEmpty() && y >= bottomLeftRect.y() && y <= bottomLeftRect.maxY())
130 if (!topRightRect.isEmpty() && y >= topRightRect.y() && y <= topRightRect.maxY())
131 maxXIntercept = topRightRect.x() + cornerRectIntercept(topRightRect.maxY() - y, topRightRect);
132 else if (!bottomRightRect.isEmpty() && y >= bottomRightRect.y() && y <= bottomRightRect.maxY())
  /external/chromium/chrome/browser/ui/cocoa/
browser_window_controller_private.mm 192 CGFloat maxY = NSMaxY(contentBounds) + yOffset;
193 CGFloat startMaxY = maxY;
196 // If we need to lay out the top tab strip, replace |maxY| and |startMaxY|
199 startMaxY = maxY = NSHeight(windowFrame) + yOffset;
200 maxY = [self layoutTabStripAtMaxY:maxY width:width fullscreen:isFullscreen];
203 // Sanity-check |maxY|.
204 DCHECK_GE(maxY, minY);
205 DCHECK_LE(maxY, NSMaxY(contentBounds) + yOffset);
218 maxY = [self layoutToolbarAtMinX:minX maxY:maxY width:width]
    [all...]
browser_window_controller_private.h 48 - (CGFloat)layoutTabStripAtMaxY:(CGFloat)maxY
56 maxY:(CGFloat)maxY
65 // call it with the appropriate |maxY| which depends on whether or not the
69 maxY:(CGFloat)maxY
81 maxY:(CGFloat)maxY
  /external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/control/ragdoll/
RagdollPreset.java 65 private float maxX, minX, maxY, minY, maxZ, minZ;
70 public JointPreset(float maxX, float minX, float maxY, float minY, float maxZ, float minZ) {
73 this.maxY = maxY;
82 joint.getRotationalLimitMotor(1).setHiLimit(maxY);
  /frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
cull.rs 35 float minX, minY, minZ, maxX, maxY, maxZ;
38 &maxX, &maxY, &maxZ);
40 //rsDebug("max", maxX, maxY, maxZ);
43 sphere.y = (maxY + minY) * 0.5f;
47 radius.y = (maxY - sphere.y);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
RectangleShape.cpp 85 if (y2 < bounds.y() || y1 >= bounds.maxY())
100 } else if (y1 > bounds.maxY() - marginRadiusY) {
101 float yi = y1 - (bounds.maxY() - marginRadiusY);
120 if (y1 < bounds.y() || y2 > bounds.maxY())
131 bool y2InterceptsCorner = y2 > bounds.maxY() - paddingRadiusY;
139 float yi = y2 - (bounds.maxY() - paddingRadiusY);
146 float yi = y2 - (bounds.maxY() - paddingRadiusY);
177 float maxY = minY + minIntervalHeight;
179 if (maxY > bounds.maxY())
    [all...]
  /external/chromium_org/chrome/browser/ui/cocoa/
browser_window_controller_private.mm 202 CGFloat maxY = NSMaxY(contentBounds) + yOffset;
205 // If we need to lay out the top tab strip, replace |maxY| with a higher
208 maxY = NSHeight(windowFrame) + yOffset;
214 // mouses near the top of the window. Push the maxY of the toolbar up by
217 maxY += std::floor(
220 maxY = [self layoutTabStripAtMaxY:maxY
225 // Sanity-check |maxY|.
226 DCHECK_GE(maxY, minY);
227 DCHECK_LE(maxY, NSMaxY(contentBounds) + yOffset)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/scrolling/
ScrollingConstraints.cpp 43 offset.setHeight(viewportRect.maxY() - m_viewportRectAtLastLayout.maxY());
73 float bottomLimit = viewportRect.maxY() - m_bottomOffset;
74 float bottomDelta = std::min<float>(0, bottomLimit - m_absoluteStickyBoxRect.maxY());
85 float availableSpace = std::max<float>(0, m_absoluteContainingBlockRect.maxY() - m_absoluteStickyBoxRect.maxY());
  /external/chromium_org/third_party/skia/src/core/
SkBitmapProcState_matrix.h 61 const unsigned maxY = s.fBitmap->height() - 1;
62 *xy++ = TILEY_PROCF(SkFractionalIntToFixed(fx), maxY);
128 int maxY = s.fBitmap->height() - 1;
131 *xy++ = (TILEY_PROCF(SkFractionalIntToFixed(fy), maxY) << 16) |
144 int maxY = s.fBitmap->height() - 1;
153 *xy++ = (TILEY_PROCF(srcXY[1], maxY) << 16) |
194 const unsigned maxY = s.fBitmap->height() - 1;
196 *xy++ = PACK_FILTER_Y_NAME(fy, maxY, s.fFilterOneY PREAMBLE_ARG_Y);
236 unsigned maxY = s.fBitmap->height() - 1;
239 *xy++ = PACK_FILTER_Y_NAME(fy, maxY, oneY PREAMBLE_ARG_Y)
    [all...]
SkBitmapProcState_shaderproc.h 40 const unsigned maxY = s.fBitmap->height() - 1;
42 subY = TILEY_LOW_BITS(fy, maxY);
43 int y0 = TILEY_PROCF(fy, maxY);
44 int y1 = TILEY_PROCF((fy + s.fFilterOneY), maxY);
  /external/skia/src/core/
SkBitmapProcState_matrix.h 61 const unsigned maxY = s.fBitmap->height() - 1;
62 *xy++ = TILEY_PROCF(SkFractionalIntToFixed(fx), maxY);
128 int maxY = s.fBitmap->height() - 1;
131 *xy++ = (TILEY_PROCF(SkFractionalIntToFixed(fy), maxY) << 16) |
144 int maxY = s.fBitmap->height() - 1;
153 *xy++ = (TILEY_PROCF(srcXY[1], maxY) << 16) |
194 const unsigned maxY = s.fBitmap->height() - 1;
196 *xy++ = PACK_FILTER_Y_NAME(fy, maxY, s.fFilterOneY PREAMBLE_ARG_Y);
236 unsigned maxY = s.fBitmap->height() - 1;
239 *xy++ = PACK_FILTER_Y_NAME(fy, maxY, oneY PREAMBLE_ARG_Y)
    [all...]
SkBitmapProcState_shaderproc.h 40 const unsigned maxY = s.fBitmap->height() - 1;
42 subY = TILEY_LOW_BITS(fy, maxY);
43 int y0 = TILEY_PROCF(fy, maxY);
44 int y1 = TILEY_PROCF((fy + s.fFilterOneY), maxY);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderOverflow.h 93 LayoutUnit maxY = std::max(rect.maxY(), m_layoutOverflow.maxY());
98 m_layoutOverflow.setHeight(maxY - minY);
100 m_layoutOverflow.setY(maxY - m_layoutOverflow.height());
106 LayoutUnit maxY = std::max(rect.maxY(), m_visualOverflow.maxY());
110 m_visualOverflow.setHeight(maxY - m_visualOverflow.y());
  /frameworks/support/v4/gingerbread/android/support/v4/widget/
ScrollerCompatGingerbread.java 56 int minX, int maxX, int minY, int maxY) {
57 ((OverScroller) scroller).fling(startX, startY, velX, velY, minX, maxX, minY, maxY);
61 int minX, int maxX, int minY, int maxY, int overX, int overY) {
63 minX, maxX, minY, maxY, overX, overY);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/curses/
textpad.py 46 (self.maxy, self.maxx) = win.getmaxyx()
47 self.maxy = self.maxy - 1
68 if y < self.maxy or x < self.maxx:
89 if y < self.maxy or x < self.maxx:
114 elif y == self.maxy:
121 if self.maxy == 0:
123 elif y < self.maxy:
135 if y < self.maxy:
151 for y in range(self.maxy+1)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/curses/
textpad.py 46 (self.maxy, self.maxx) = win.getmaxyx()
47 self.maxy = self.maxy - 1
68 if y < self.maxy or x < self.maxx:
89 if y < self.maxy or x < self.maxx:
114 elif y == self.maxy:
121 if self.maxy == 0:
123 elif y < self.maxy:
135 if y < self.maxy:
151 for y in range(self.maxy+1)
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
DiscretePathEffectTest.java 77 int maxY = 0;
84 maxY = Math.max(maxY, y);
96 assertTrue(maxY - minY > 0);
98 assertTrue(maxY - minY <= 1 + 2 * DEVIATION);
  /external/chromium_org/third_party/skia/src/opts/
SkBitmapProcState_matrix_repeat_neon.h 71 const unsigned maxY = s.fBitmap->height() - 1;
72 *xy++ = TILEY_PROCF(fx, maxY);
179 int maxY = s.fBitmap->height() - 1;
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;
356 y = vmulq_s32(y, vdupq_n_s32(maxY+1))
    [all...]
  /external/skia/src/opts/
SkBitmapProcState_matrix_repeat_neon.h 71 const unsigned maxY = s.fBitmap->height() - 1;
72 *xy++ = TILEY_PROCF(fx, maxY);
179 int maxY = s.fBitmap->height() - 1;
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;
356 y = vmulq_s32(y, vdupq_n_s32(maxY+1))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/resources/
pickerCommon.js 70 get maxY() { return this.y + this.height; },
83 var maxY = Math.min(rect1.maxY, rect2.maxY);
85 var height = maxY - y;
130 var availableSpaceBelow = availRect.maxY - anchorRect.maxY;
140 windowRect.y = anchorRect.maxY;
142 windowRect.y = Math.min(windowRect.y, availRect.maxY - windowRect.height);

Completed in 1099 milliseconds

1 2 3 4 5 6 7 8 91011>>