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

1 2 3 4 5 6 7 8 91011

  /external/chromium_org/third_party/skia/src/core/
SkBitmapProcState_matrix.h 54 const unsigned maxX = s.fBitmap->width() - 1;
66 if (0 == maxX) {
75 if (can_truncate_to_fixed_for_decal(fx, dx, count, maxX)) {
84 a = TILEX_PROCF(SkFractionalIntToFixed(fx), maxX); fx += dx;
85 b = TILEX_PROCF(SkFractionalIntToFixed(fx), maxX); fx += dx;
91 a = TILEX_PROCF(SkFractionalIntToFixed(fx), maxX); fx += dx;
92 b = TILEX_PROCF(SkFractionalIntToFixed(fx), maxX); fx += dx;
101 *xx++ = TILEX_PROCF(SkFractionalIntToFixed(fx), maxX); fx += dx;
127 int maxX = s.fBitmap->width() - 1;
132 TILEX_PROCF(SkFractionalIntToFixed(fx), maxX);
    [all...]
SkBitmapProcState_shaderproc.h 27 const unsigned maxX = s.fBitmap->width() - 1;
59 unsigned subX = TILEX_LOW_BITS(fx, maxX);
60 unsigned x0 = TILEX_PROCF(fx, maxX);
61 unsigned x1 = TILEX_PROCF((fx + oneX), maxX);
  /external/skia/src/core/
SkBitmapProcState_matrix.h 54 const unsigned maxX = s.fBitmap->width() - 1;
66 if (0 == maxX) {
75 if (can_truncate_to_fixed_for_decal(fx, dx, count, maxX)) {
84 a = TILEX_PROCF(SkFractionalIntToFixed(fx), maxX); fx += dx;
85 b = TILEX_PROCF(SkFractionalIntToFixed(fx), maxX); fx += dx;
91 a = TILEX_PROCF(SkFractionalIntToFixed(fx), maxX); fx += dx;
92 b = TILEX_PROCF(SkFractionalIntToFixed(fx), maxX); fx += dx;
101 *xx++ = TILEX_PROCF(SkFractionalIntToFixed(fx), maxX); fx += dx;
127 int maxX = s.fBitmap->width() - 1;
132 TILEX_PROCF(SkFractionalIntToFixed(fx), maxX);
    [all...]
SkBitmapProcState_shaderproc.h 27 const unsigned maxX = s.fBitmap->width() - 1;
59 unsigned subX = TILEX_LOW_BITS(fx, maxX);
60 unsigned x0 = TILEX_PROCF(fx, maxX);
61 unsigned x1 = TILEX_PROCF((fx + oneX), maxX);
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
IntRect.cpp 56 && x() < other.maxX() && other.x() < maxX()
62 return x() <= other.x() && maxX() >= other.maxX()
70 int r = min(maxX(), other.maxX());
99 int r = max(maxX(), other.maxX());
120 int right = max(maxX(), other.maxX());
    [all...]
FloatRect.cpp 65 && isWithinIntRange(maxX()) && isWithinIntRange(maxY());
72 && x() < other.maxX() && other.x() < maxX()
78 return x() <= other.x() && maxX() >= other.maxX()
86 return x() < point.x() && maxX() > point.x() && y() < point.y() && maxY() > point.y();
93 float r = min(maxX(), other.maxX());
124 float maxX = max(this->maxX(), other.maxX())
    [all...]
LayoutRect.cpp 53 && x() < other.maxX() && other.x() < maxX()
59 return x() <= other.x() && maxX() >= other.maxX()
66 LayoutPoint newMaxPoint(min(maxX(), other.maxX()), min(maxY(), other.maxY()));
89 LayoutPoint newMaxPoint(max(maxX(), other.maxX()), max(maxY(), other.maxY()));
106 LayoutPoint newMaxPoint(max(maxX(), other.maxX()), max(maxY(), other.maxY()))
    [all...]
  /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) {
71 this.maxX = maxX;
80 joint.getRotationalLimitMotor(0).setHiLimit(maxX);
  /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);
42 sphere.x = (maxX + minX) * 0.5f;
46 radius.x = (maxX - sphere.x);
  /external/chromium_org/third_party/WebKit/Source/core/page/scrolling/
ScrollingConstraints.cpp 38 offset.setWidth(viewportRect.maxX() - m_viewportRectAtLastLayout.maxX());
53 float rightLimit = viewportRect.maxX() - m_rightOffset;
54 float rightDelta = std::min<float>(0, rightLimit - m_absoluteStickyBoxRect.maxX());
65 float availableSpace = std::max<float>(0, m_absoluteContainingBlockRect.maxX() - m_absoluteStickyBoxRect.maxX());
  /external/chromium_org/third_party/skia/src/opts/
SkBitmapProcState_matrix_repeat_neon.h 64 const unsigned maxX = s.fBitmap->width() - 1;
76 if (0 == maxX) {
86 if ((unsigned)(fx >> 16) <= maxX &&
87 (unsigned)((fx + dx * (count - 1)) >> 16) <= maxX) {
131 lout = vmulq_s32(lout, vdupq_n_s32(maxX+1));
132 hout = vmulq_s32(hout, vdupq_n_s32(maxX+1));
151 *xx++ = TILEX_PROCF(fx, maxX); fx += dx;
178 int maxX = s.fBitmap->width() - 1;
226 xout = vmulq_s32(xout, vdupq_n_s32(maxX+1));
254 uint32_t val = (TILEY_PROCF(ofy, maxY) << 16) | TILEX_PROCF(ofx, maxX);
    [all...]
SkBitmapProcState_matrix_clamp_neon.h 66 const unsigned maxX = s.fBitmap->width() - 1;
78 if (0 == maxX) {
88 if ((unsigned)(fx >> 16) <= maxX &&
89 (unsigned)((fx + dx * (count - 1)) >> 16) <= maxX) {
140 hi16 = vminq_s16(hi16, vdupq_n_s16(maxX));
155 *xx++ = TILEX_PROCF(fx, maxX); fx += dx;
180 int maxX = s.fBitmap->width() - 1;
195 /* my sets of maxx/maxy for clamping */
196 int32_t maxpair = (maxX&0xffff) | ((maxY&0xffff)<<16);
268 *xy++ = (TILEY_PROCF(fy, maxY) << 16) | TILEX_PROCF(fx, maxX);
    [all...]
SkBitmapProcState_opts_SSE2.cpp 253 const unsigned maxX = s.fBitmap->width() - 1;
269 if (dx > 0 && (unsigned)(fx >> 16) <= maxX &&
270 (unsigned)((fx + dx * (count - 1)) >> 16) < maxX) {
308 // maxX less than the max 16bit interger. Actually maxX is the bitmap's
311 if ((count >= 4) && (maxX <= 0xFFFF)) {
313 *xy++ = ClampX_ClampY_pack_filter(fx, maxX, one);
322 __m128i wide_maxX = _mm_set1_epi32(maxX);
330 // i = SkClampMax(f>>16,maxX)
362 *xy++ = ClampX_ClampY_pack_filter(fx, maxX, one)
    [all...]
  /external/skia/src/opts/
SkBitmapProcState_matrix_repeat_neon.h 64 const unsigned maxX = s.fBitmap->width() - 1;
76 if (0 == maxX) {
86 if ((unsigned)(fx >> 16) <= maxX &&
87 (unsigned)((fx + dx * (count - 1)) >> 16) <= maxX) {
131 lout = vmulq_s32(lout, vdupq_n_s32(maxX+1));
132 hout = vmulq_s32(hout, vdupq_n_s32(maxX+1));
151 *xx++ = TILEX_PROCF(fx, maxX); fx += dx;
178 int maxX = s.fBitmap->width() - 1;
226 xout = vmulq_s32(xout, vdupq_n_s32(maxX+1));
254 uint32_t val = (TILEY_PROCF(ofy, maxY) << 16) | TILEX_PROCF(ofx, maxX);
    [all...]
SkBitmapProcState_matrix_clamp_neon.h 66 const unsigned maxX = s.fBitmap->width() - 1;
78 if (0 == maxX) {
88 if ((unsigned)(fx >> 16) <= maxX &&
89 (unsigned)((fx + dx * (count - 1)) >> 16) <= maxX) {
140 hi16 = vminq_s16(hi16, vdupq_n_s16(maxX));
155 *xx++ = TILEX_PROCF(fx, maxX); fx += dx;
180 int maxX = s.fBitmap->width() - 1;
195 /* my sets of maxx/maxy for clamping */
196 int32_t maxpair = (maxX&0xffff) | ((maxY&0xffff)<<16);
268 *xy++ = (TILEY_PROCF(fy, maxY) << 16) | TILEX_PROCF(fx, maxX);
    [all...]
SkBitmapProcState_opts_SSE2.cpp 253 const unsigned maxX = s.fBitmap->width() - 1;
269 if (dx > 0 && (unsigned)(fx >> 16) <= maxX &&
270 (unsigned)((fx + dx * (count - 1)) >> 16) < maxX) {
308 // maxX less than the max 16bit interger. Actually maxX is the bitmap's
311 if ((count >= 4) && (maxX <= 0xFFFF)) {
313 *xy++ = ClampX_ClampY_pack_filter(fx, maxX, one);
322 __m128i wide_maxX = _mm_set1_epi32(maxX);
330 // i = SkClampMax(f>>16,maxX)
362 *xy++ = ClampX_ClampY_pack_filter(fx, maxX, one)
    [all...]
  /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()
48 self.maxx = self.maxx - 1
56 last = self.maxx
59 last = min(self.maxx, last+1)
68 if y < self.maxy or x < self.maxx:
89 if y < self.maxy or x < self.maxx:
101 self.win.move(y-1, self.maxx)
110 self.win.move(y, self.maxx)
112 if x < self.maxx
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/curses/
textpad.py 46 (self.maxy, self.maxx) = win.getmaxyx()
48 self.maxx = self.maxx - 1
56 last = self.maxx
59 last = min(self.maxx, last+1)
68 if y < self.maxy or x < self.maxx:
89 if y < self.maxy or x < self.maxx:
101 self.win.move(y-1, self.maxx)
110 self.win.move(y, self.maxx)
112 if x < self.maxx
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/location_bar/
instant_opt_in_view.mm 45 CGFloat maxX = std::max(NSMaxX([self bounds]) - kHorizontalLineInset,
49 NSRectFill(NSMakeRect(minX, lineY, maxX - minX, 1));
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderOverflow.h 92 LayoutUnit maxX = std::max(rect.maxX(), m_layoutOverflow.maxX());
96 m_layoutOverflow.setWidth(maxX - m_layoutOverflow.x());
102 LayoutUnit maxX = std::max(rect.maxX(), m_visualOverflow.maxX());
106 m_visualOverflow.setWidth(maxX - m_visualOverflow.x());
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_atom_scissor.c 53 scissor.maxx = fb->Width;
66 if (xmax < (GLint) scissor.maxx)
67 scissor.maxx = xmax;
72 if (scissor.minx >= scissor.maxx || scissor.miny >= scissor.maxy)
73 scissor.minx = scissor.miny = scissor.maxx = scissor.maxy = 0;
  /external/mesa3d/src/mesa/state_tracker/
st_atom_scissor.c 53 scissor.maxx = fb->Width;
66 if (xmax < (GLint) scissor.maxx)
67 scissor.maxx = xmax;
72 if (scissor.minx >= scissor.maxx || scissor.miny >= scissor.maxy)
73 scissor.minx = scissor.miny = scissor.maxx = scissor.maxy = 0;
  /cts/suite/cts/deviceTests/opengl/jni/graphics/
Vector2D.h 27 void limit(float maxX, float maxY);
  /development/samples/devbytes/animation/Bouncer/src/com/example/android/bouncer/
Bouncer.java 93 int maxX = mShapeX + mShapeW;
96 maxX = Math.max(mShapeX + mShapeW, maxX);
97 invalidate(minX, mShapeY, maxX, mShapeY + mShapeH);

Completed in 485 milliseconds

1 2 3 4 5 6 7 8 91011