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

  /frameworks/base/awt/java/awt/image/
ReplicateScaleFilter.java 55 protected int destHeight;
89 this.destHeight = height;
103 "destHeight=" + destHeight; //$NON-NLS-1$
136 int dstY = (y * destHeight + ha) / srcHeight;
140 while ((dy < destHeight) && ((sy = srcrows[dy]) < y + h)) {
171 int dstY = (y * destHeight + ha) / srcHeight;
175 while ((dy < destHeight) && ((sy = srcrows[dy]) < y + h)) {
193 if (destWidth < 0 && destHeight < 0) {
195 destHeight = srcHeight
    [all...]
CropImageFilter.java 91 int destX, destY, destWidth, destHeight, endX, endY, srcEndX, srcEndY;
122 destHeight = srcEndY - Y;
124 destHeight = HEIGHT;
129 destHeight = h;
131 destHeight = endY - y;
134 consumer.setPixels(destX, destY, destWidth, destHeight, model, pixels, newOffset, scansize);
145 int destX, destY, destWidth, destHeight, endX, endY, srcEndX, srcEndY;
176 destHeight = srcEndY - Y;
178 destHeight = HEIGHT;
183 destHeight = h
    [all...]
AreaAveragingScaleFilter.java 182 svRest = destHeight;
241 svRest = destHeight;
  /external/webkit/WebCore/platform/graphics/skia/
NativeImageSkia.cpp 77 int destHeight,
91 if (destWidth * destHeight <= kSmallBitmapSize)
98 m_lastRequestSize.height() == destHeight) {
104 m_lastRequestSize = WebCore::IntSize(destWidth, destHeight);
110 int destSize = destWidth * destHeight;
NativeImageSkia.h 77 int destHeight,
ImageSkia.cpp 67 static ResamplingMode computeResamplingMode(const NativeImageSkia& bitmap, int srcWidth, int srcHeight, float destWidth, float destHeight)
70 int destIHeight = static_cast<int>(destHeight);
97 || destHeight <= kSmallImageSizeThreshold) {
103 if (srcHeight * kLargeStretch <= destHeight || srcWidth * kLargeStretch <= destWidth) {
110 if (srcWidth == destWidth || srcHeight == destHeight)
119 && (fabs(destHeight - srcHeight) / srcHeight < kFractionalChangeThreshold)) {
250 static void TransformDimensions(const SkMatrix& matrix, float srcWidth, float srcHeight, float* destWidth, float* destHeight) {
263 *destHeight = SkScalarToFloat((dest_points[2] - dest_points[0]).length());
  /packages/apps/Gallery3D/src/com/cooliris/media/
AdaptiveBackgroundTexture.java 95 int destHeight = mHeight;
97 float fitY = (float) sourceHeight / (float) destHeight;
106 cropHeight = (int) (destHeight * fitX);
112 cropWidth = (int) (destHeight * fitY);
141 Bitmap output = Bitmap.createBitmap(destWidth, destHeight, Bitmap.Config.ARGB_8888);
  /frameworks/base/awt/org/apache/harmony/x/imageio/plugins/jpeg/
JPEGImageWriter.java 137 int destHeight = srcHeight;
173 destHeight = (srcHeight + deltaY - 1) / deltaY;
197 encode(dbuffer.getData(), srcWidth, destWidth, destHeight, deltaX,
  /packages/apps/Launcher2/src/com/android/launcher2/
Utilities.java 171 static void drawSelectedAllAppsBitmap(Canvas dest, int destWidth, int destHeight,
187 float py = (destHeight - src.getHeight()) / 2;

Completed in 567 milliseconds