Home | History | Annotate | Download | only in wallpaperpicker

Lines Matching refs:Math

379         rotatedInSize[0] = Math.abs(rotatedInSize[0]);
380 rotatedInSize[1] = Math.abs(rotatedInSize[1]);
384 cropRect.left = Math.max(0, cropRect.left);
385 cropRect.right = Math.min(rotatedInSize[0], cropRect.right);
386 cropRect.top = Math.max(0, cropRect.top);
387 cropRect.bottom = Math.min(rotatedInSize[1], cropRect.bottom);
395 extraSpace = Math.min(extraSpace, maxExtraSpace);
410 Math.min(Math.min(rotatedInSize[1] - cropRect.bottom, cropRect.top),
416 final int outWidth = (int) Math.round(cropRect.width() * cropScale);
417 final int outHeight = (int) Math.round(cropRect.height() * cropScale);