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

1 2 3 4 5 6 7 8 9

  /external/skia/legacy/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);
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...]
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...]
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...]
  /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);
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);
261 int maxX = fMaxX
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/layers/
ScrollableLayerAndroid.cpp 48 float maxX, float maxY)
52 if (maxX < 0) maxX = 0;
54 if (minX > maxX) minX = maxX;
56 m_scrollLimits.set(minX, minY, minX + maxX, minY + 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) {
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/webkit/Source/WebCore/platform/graphics/
IntRect.cpp 47 && x() < other.maxX() && other.x() < maxX()
53 return x() <= other.x() && maxX() >= other.maxX()
61 int r = min(maxX(), other.maxX());
90 int r = max(maxX(), other.maxX());
111 int right = max(maxX(), other.maxX());
    [all...]
FloatRect.cpp 54 && x() < other.maxX() && other.x() < maxX()
60 return x() <= other.x() && maxX() >= other.maxX()
68 float r = min(maxX(), other.maxX());
94 float r = max(maxX(), other.maxX());
112 float right = max(maxX(), other.maxX());
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/context/
RTree.cpp 57 int& maxx, int& maxy,
66 maxx = children[0]->m_maxX;
74 maxx = std::max(maxx, children[i]->m_maxX);
79 int w = maxx - minx;
86 int& maxx, int& maxy)
90 int newMaxX = std::max(maxx, node->m_maxX);
154 bounds.maxX(), bounds.maxY(), payload);
160 m_root->search(clip.x(), clip.y(), clip.maxX(), clip.maxY(), list);
165 m_root->remove(clip.x(), clip.y(), clip.maxX(), clip.maxY())
    [all...]
RTree.h 126 static Node* create(RTree* tree, int minx, int miny, int maxx, int maxy,
128 return new (tree->allocateNode()) Node(tree, minx, miny, maxx, maxy, payload);
134 void search(int minx, int miny, int maxx, int maxy, Vector<WebCore::RecordingData*>& list);
135 void remove(int minx, int miny, int maxx, int maxy);
141 Node(RTree* tree, int minx, int miny, int maxx, int maxy, WebCore::RecordingData* payload);
156 bool overlap(int minx, int miny, int maxx, int maxy);
157 bool inside(int minx, int miny, int maxx, int maxy);
  /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);
  /external/skia/src/opts/
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) {
141 hi16 = vminq_s16(hi16, vdupq_n_s16(maxX));
156 *xx++ = TILEX_PROCF(fx, maxX); fx += dx;
181 int maxX = s.fBitmap->width() - 1;
196 /* my sets of maxx/maxy for clamping */
197 int32_t maxpair = (maxX&0xffff) | ((maxY&0xffff)<<16);
269 *xy++ = (TILEY_PROCF(fy, maxY) << 16) | TILEX_PROCF(fx, maxX);
    [all...]
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/skia/legacy/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/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/webkit/Source/WebCore/rendering/
RenderOverflow.h 47 , m_maxXLayoutOverflow(layoutRect.maxX())
51 , m_maxXVisualOverflow(visualRect.maxX())
127 m_maxXLayoutOverflow = std::max(rect.maxX(), m_maxXLayoutOverflow);
135 m_maxXVisualOverflow = std::max(rect.maxX(), m_maxXVisualOverflow);
143 m_maxXLayoutOverflow = rect.maxX();
151 m_maxXVisualOverflow = rect.maxX();
159 m_maxXLayoutOverflow = rect.maxX();
  /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);
Bouncer1.java 67 int maxX = mShapeX + mShapeW;
70 maxX = Math.max(mShapeX + mShapeW, maxX);
71 invalidate(minX, mShapeY, maxX, mShapeY + mShapeH);
Bouncer2.java 68 int maxX = mShapeX + mShapeW;
71 maxX = Math.max(mShapeX + mShapeW, maxX);
72 invalidate(minX, mShapeY, maxX, mShapeY + mShapeH);
Bouncer3.java 68 int maxX = mShapeX + mShapeW;
71 maxX = Math.max(mShapeX + mShapeW, maxX);
72 invalidate(minX, mShapeY, maxX, mShapeY + mShapeH);

Completed in 608 milliseconds

1 2 3 4 5 6 7 8 9