HomeSort by relevance Sort by last modified time
    Searched refs:totalPixels (Results 1 - 5 of 5) sorted by null

  /development/samples/training/bitmapfun/src/com/example/android/bitmapfun/util/
ImageResizer.java 255 final float totalPixels = width * height;
260 while (totalPixels / (inSampleSize * inSampleSize) > totalReqPixelsCap) {
  /external/webkit/Tools/DumpRenderTree/chromium/
ImageDiff.cpp 181 float totalPixels = static_cast<float>(actual.width()) * static_cast<float>(actual.height());
182 if (!totalPixels)
184 return static_cast<float>(pixelsDifferent) / totalPixels * 100;
  /development/samples/training/ContactsList/src/com/example/android/contactslist/util/
ImageLoader.java 411 final float totalPixels = width * height;
416 while (totalPixels / (inSampleSize * inSampleSize) > totalReqPixelsCap) {
  /frameworks/rs/
rsFont.cpp 724 uint32_t totalPixels = 0;
727 totalPixels += mCacheLines[i]->mMaxWidth;
729 remainingCapacity = (remainingCapacity * 100) / totalPixels;
  /external/webkit/Source/WebCore/rendering/
RenderBoxModelObject.cpp 168 double totalPixels = static_cast<double>(image->width()) * static_cast<double>(image->height());
169 if (totalPixels > cInterpolationCutoff)
    [all...]

Completed in 634 milliseconds