HomeSort by relevance Sort by last modified time
    Searched defs:maxX (Results 1 - 25 of 47) sorted by null

1 2

  /external/replicaisland/src/com/replica/replicaisland/
CollisionVolume.java 61 final float maxX = getMaxX();
62 value = flip.parentWidth - maxX;
AABoxCollisionVolume.java 104 final float maxX;
111 maxX = Math.max(getMaxX(), other.getMaxX());
116 maxX = other.getMaxX();
121 final float horizontalDelta = maxX - minX;
GameObjectCollisionSystem.java 117 final float maxX = record.boundingVolume.getMaxXPosition(sFlip) + position.x;
126 if (otherPosition.x + other.boundingVolume.getMinXPosition(sOtherFlip) > maxX) {
SphereCollisionVolume.java 130 final float maxX;
137 maxX = Math.max(getMaxX(), other.getMaxX());
142 maxX = other.getMaxX();
147 final float horizontalDelta = maxX - minX;
  /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);
  /external/skia/samplecode/
SampleEncode.cpp 178 SkScalar x = 0, y = 0, maxX = 0;
203 if (x > maxX) {
204 maxX = x;
209 x = maxX + SkIntToScalar(10);
  /external/skia/src/core/
SkBitmapProcState_matrix.h 38 const unsigned maxX = s.fBitmap->width() - 1;
50 if (0 == maxX) {
60 if ((unsigned)(fx >> 16) <= maxX &&
61 (unsigned)((fx + dx * (count - 1)) >> 16) <= maxX) {
69 a = TILEX_PROCF(fx, maxX); fx += dx;
70 b = TILEX_PROCF(fx, maxX); fx += dx;
76 a = TILEX_PROCF(fx, maxX); fx += dx;
77 b = TILEX_PROCF(fx, maxX); fx += dx;
86 *xx++ = TILEX_PROCF(fx, maxX); fx += dx;
112 int maxX = s.fBitmap->width() - 1
    [all...]
SkBitmapProcState_shaderproc.h 22 const unsigned maxX = s.fBitmap->width() - 1;
54 unsigned subX = TILEX_LOW_BITS(fx, maxX);
55 unsigned x0 = TILEX_PROCF(fx, maxX);
56 unsigned x1 = TILEX_PROCF((fx + oneX), maxX);
SkBitmapSampler.cpp 98 int maxX = fMaxX;
103 int tmpx = procX(ix, maxX);
107 int tmpx1 = procX(ix + 1, maxX);
146 int maxX = fMaxX;
151 int tmpx = procX(ix, maxX);
155 int tmpx1 = procX(ix + 1, maxX);
201 int maxX = fMaxX;
206 int tmpx = procX(ix, maxX);
210 int tmpx1 = procX(ix + 1, maxX);
260 int maxX = fMaxX
    [all...]
SkBitmapProcState_matrix_repeat.h 68 const unsigned maxX = s.fBitmap->width() - 1;
80 if (0 == maxX) {
90 if ((unsigned)(fx >> 16) <= maxX &&
91 (unsigned)((fx + dx * (count - 1)) >> 16) <= maxX) {
137 lout = vmulq_s32(lout, vdupq_n_s32(maxX+1));
138 hout = vmulq_s32(hout, vdupq_n_s32(maxX+1));
161 a = TILEX_PROCF(fx, maxX); fx += dx;
162 b = TILEX_PROCF(fx, maxX); fx += dx;
168 a = TILEX_PROCF(fx, maxX); fx += dx;
169 b = TILEX_PROCF(fx, maxX); fx += dx
    [all...]
SkBitmapProcState_matrix_clamp.h 70 const unsigned maxX = s.fBitmap->width() - 1;
82 if (0 == maxX) {
92 if ((unsigned)(fx >> 16) <= maxX &&
93 (unsigned)((fx + dx * (count - 1)) >> 16) <= maxX) {
145 hi16 = vminq_s16(hi16, vdupq_n_s16(maxX));
160 *xx++ = TILEX_PROCF(fx, maxX); fx += dx;
185 int maxX = s.fBitmap->width() - 1;
200 /* my sets of maxx/maxy for clamping */
201 int32_t maxpair = (maxX&0xffff) | ((maxY&0xffff)<<16);
273 *xy++ = (TILEY_PROCF(fy, maxY) << 16) | TILEX_PROCF(fx, maxX);
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/
FloatRect.h 93 float maxX() const { return x() + width(); }
120 { return px >= x() && px <= maxX() && py >= y() && py <= maxY(); }
IntRect.h 94 int maxX() const { return x() + width(); }
121 int delta = edge - maxX();
147 { return px >= x() && px < maxX() && py >= y() && py < maxY(); }
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/dialogs/
ResizableDialog.java 109 int maxX = windowBounds.x + windowBounds.width - initialSize.x;
111 if (x > maxX) {
112 x = maxX;
  /external/webkit/Source/WebKit2/Platform/
Region.cpp 76 appendSegment(rect.maxX());
190 int maxX = std::numeric_limits<int>::min();
202 if (*lastSegment > maxX)
203 maxX = *lastSegment;
209 ASSERT(minX <= maxX);
212 return IntRect(minX, minY, maxX - minX, maxY - minY);
  /frameworks/base/services/input/
PointerController.cpp 167 float minX, minY, maxX, maxY;
168 if (getBoundsLocked(&minX, &minY, &maxX, &maxY)) {
171 } else if (x >= maxX) {
172 mLocked.pointerX = maxX;
317 float minX, minY, maxX, maxY;
318 if (getBoundsLocked(&minX, &minY, &maxX, &maxY)) {
319 mLocked.pointerX = (minX + maxX) * 0.5f;
  /external/opencv/cvaux/src/
cvcorrimages.cpp 633 float maxX,maxY;
636 maxX = maxY = FLT_MIN;
650 if( x > maxX )
651 maxX = x;
671 if( x > maxX )
672 maxX = x;
686 subdiv = cvCreateSubdivDelaunay2D( cvRect( cvRound(minX)-5, cvRound(minY)-5, cvRound(maxX-minX)+10, cvRound(maxY-minY)+10 ), storage );
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/epoc/
SDL_epocvideo.cpp 530 TInt maxX = Min(screenW - 1, rect2.x + rect2.w - 1);
532 if (maxX < 0 || maxY < 0) /* sanity check */
536 TInt sourceRectWidth = maxX - rect2.x + 1;
  /external/skia/src/opts/
SkBitmapProcState_opts_SSE2.cpp 252 const unsigned maxX = s.fBitmap->width() - 1;
268 if (dx > 0 && (unsigned)(fx >> 16) <= maxX &&
269 (unsigned)((fx + dx * (count - 1)) >> 16) < maxX) {
307 // maxX less than the max 16bit interger. Actually maxX is the bitmap's
310 if ((count >= 4) && (maxX <= 0xFFFF)) {
312 *xy++ = ClampX_ClampY_pack_filter(fx, maxX, one);
321 __m128i wide_maxX = _mm_set1_epi32(maxX);
329 // i = SkClampMax(f>>16,maxX)
361 *xy++ = ClampX_ClampY_pack_filter(fx, maxX, one)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/gpu/
LoopBlinnMathUtils.cpp 280 float maxX = std::max(std::max(std::max(cubic[0].x(), cubic[1].x()),
283 if (xRay.x() > maxX)
  /external/jmonkeyengine/engine/src/core/com/jme3/bounding/
BoundingBox.java 227 float maxX = vars.vect1.x, maxY = vars.vect1.y, maxZ = vars.vect1.z;
234 } else if (vars.vect1.x > maxX) {
235 maxX = vars.vect1.x;
253 center.set(minX + maxX, minY + maxY, minZ + maxZ);
256 xExtent = maxX - center.x;
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderBlock.h 416 int maxX() const { ASSERT(isPlaced()); return m_frameRect.maxX(); }
443 int logicalBottomForFloat(const FloatingObject* child) const { return isHorizontalWritingMode() ? child->maxY() : child->maxX(); }
445 int logicalRightForFloat(const FloatingObject* child) const { return isHorizontalWritingMode() ? child->maxX() : child->maxY(); }
    [all...]
  /frameworks/base/core/java/android/widget/
HorizontalScrollView.java     [all...]
  /packages/apps/Browser/src/com/android/browser/view/
ScrollerView.java     [all...]
  /packages/apps/VideoEditor/src/com/android/videoeditor/widgets/
HorizontalScrollView.java     [all...]

Completed in 6857 milliseconds

1 2