HomeSort by relevance Sort by last modified time
    Searched refs:SkMin32 (Results 1 - 25 of 60) sorted by null

1 2 3

  /external/chromium_org/third_party/skia/src/images/
SkImageEncoder.cpp 17 quality = SkMin32(100, SkMax32(0, quality));
23 quality = SkMin32(100, SkMax32(0, quality));
30 quality = SkMin32(100, SkMax32(0, quality));
  /external/chromium_org/third_party/skia/src/views/
SkProgressView.cpp 75 percent = SkMax32(0, SkMin32(percent, fMax << 8)); // now its pinned
81 U16CPU value = SkMax32(0, SkMin32(fValue, fMax));
  /external/chromium_org/third_party/skia/gm/
stringart.cpp 40 SkScalar size = SkIntToScalar(SkMin32(kWidth, kHeight));
shadertext3.cpp 19 SkScalar s = SkIntToScalar(SkMin32(w, h));
  /external/chromium_org/third_party/skia/src/core/
SkTileGrid.cpp 47 int minX = SkMax32(0, SkMin32(dilatedBounds.left() / fInfo.fTileInterval.width(), fXTiles - 1));
48 int minY = SkMax32(0, SkMin32(dilatedBounds.top() / fInfo.fTileInterval.height(), fYTiles - 1));
49 int maxX = SkMax32(0, SkMin32((dilatedBounds.right() - 1) / fInfo.fTileInterval.width(),
51 int maxY = SkMax32(0, SkMin32((dilatedBounds.bottom() - 1) / fInfo.fTileInterval.height(),
SkColor.cpp 37 unsigned min = SkMin32(r, SkMin32(g, b));
SkEdgeBuilder.cpp 214 pow2 = SkMin32(pow2, MAX_POW2);
257 pow2 = SkMin32(pow2, MAX_POW2);
  /external/chromium_org/third_party/skia/src/pathops/
SkPathOpsSimplify.cpp 68 || !current->done(SkMin32(index, endIndex))));
71 int min = SkMin32(index, endIndex);
139 } while (!simple->isClosed() && (!unsortable || !current->done(SkMin32(start, end))));
142 int min = SkMin32(start, end);
SkOpSegment.cpp     [all...]
SkPathOpsOp.cpp 190 || !current->done(SkMin32(index, endIndex))));
193 int min = SkMin32(index, endIndex);
  /external/chromium_org/third_party/skia/src/image/
SkImage.cpp 62 bounds.fRight = SkMin32(bounds.fRight, bitmap->width());
63 bounds.fBottom = SkMin32(bounds.fBottom, bitmap->height());
  /external/chromium_org/third_party/skia/samplecode/
SampleDash.cpp 68 size_t len = SkMin32(strlen(gStr[i]), SK_ARRAY_COUNT(interval));
  /external/chromium_org/third_party/skia/bench/
BitmapRectBench.cpp 25 SkIntToScalar(SkMin32(w, h))*3/8, p);
FontCacheBench.cpp 127 int count = SkMin32(count_glyphs(array), limit);
RepeatTileBench.cpp 26 SkIntToScalar(SkMin32(w, h))*3/8, p);
  /external/chromium_org/third_party/skia/src/opts/
SkBlurImage_opts_SSE2.cpp 39 const int rightBorder = SkMin32(rightOffset + 1, width);
SkBlurImage_opts_SSE4.cpp 46 const int rightBorder = SkMin32(rightOffset + 1, width);
SkMorphology_opts_SSE2.cpp 32 radius = SkMin32(radius, width - 1);
SkMorphology_opts_neon.cpp 35 radius = SkMin32(radius, width - 1);
SkBlurImage_opts_neon.cpp 61 const int rightBorder = SkMin32(rightOffset + 1, width);
118 const int rightBorder = SkMin32(rightOffset + 1, width);
  /external/chromium_org/third_party/skia/experimental/Intersection/
thingsToDo.txt 180 int min = SkMin32(current->start(), current->end());
193 int min = SkMin32(current->start(), current->end());
230 int curMin = SkMin32(current->start(), current->end());
234 int nextMin = SkMin32(next->start(), next->end());
346 int minT = SkMin32(nextAngle->start(), nextAngle->end());
351 int oldMinT = SkMin32(angle->start(), angle->end());
385 bool thisDone = fTs[SkMin32(startIndex, endIndex)].fDone;
386 bool otherDone = other->fTs[SkMin32(start->fOtherIndex,
517 int min = SkMin32(start, end);
ShapeOps.cpp 185 || !current->done(SkMin32(index, endIndex))));
188 int min = SkMin32(index, endIndex);
Simplify.cpp 751 if ((*rh.fSpans)[SkMin32(rh.fStart, rh.fEnd)].fTiny
752 || (*fSpans)[SkMin32(fStart, fEnd)].fTiny) {
    [all...]
  /external/chromium_org/third_party/skia/src/utils/
SkTextureCompressor_Blitter.h 340 const int endX = SkMin32(i + BlockDim, clip.right());
341 const int endY = SkMin32(j + BlockDim, clip.bottom());
533 finalX = SkMin32(nextX[i], finalX);
607 finalX = SkMin32(nextX[i], finalX);
  /external/chromium_org/third_party/skia/tests/
PathCoverageTest.cpp 64 uint32_t count = SkMin32(SkNextPow2(temp), MAX_POINTS_PER_CURVE);

Completed in 509 milliseconds

1 2 3