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

  /cts/apps/CtsVerifier/lib/colorchecker/
testingimage.cpp 72 int widthScale = inputWidth / newWidth;
82 for (int m = 0; m < widthScale; ++m) {
85 + (j * widthScale + m) * inputChannel + k];
88 pixelValue = pixelValue / (heightScale * widthScale);
  /external/webkit/Source/WebCore/platform/graphics/
FloatRect.cpp 201 float widthScale = destRect.width() / srcRect.width();
203 return FloatRect(destRect.x() + (r.x() - srcRect.x()) * widthScale,
205 r.width() * widthScale, r.height() * heightScale);
  /development/samples/training/threadsample/src/com/example/android/threadsample/
PhotoThumbnailFragment.java 158 int widthScale = localDisplayMetrics.widthPixels / pixelSize;
161 mColumnWidth = (localDisplayMetrics.widthPixels / widthScale);
  /external/webkit/Source/WebCore/html/
ImageDocument.cpp 241 float widthScale = (float)windowSize.width() / imageSize.width();
244 return min(widthScale, heightScale);
  /packages/apps/Gallery/src/com/android/camera/
ImageViewTouchBase.java 269 float widthScale = Math.min(viewWidth / w, 3.0f);
271 float scale = Math.min(widthScale, heightScale);
  /packages/apps/VideoEditor/src/com/android/videoeditor/widgets/
ImageViewTouchBase.java 274 float widthScale = Math.min(viewWidth / w, 10.0f);
276 float scale = Math.min(widthScale, heightScale);
  /external/webkit/Source/WebCore/platform/graphics/android/context/
PlatformGraphicsContextRecording.cpp 783 float widthScale = dst.width() == 0 ? 1 : bitmap.width() / dst.width();
785 m_maxZoomScale = std::max(m_maxZoomScale, std::max(widthScale, heightScale));
    [all...]

Completed in 187 milliseconds