/packages/apps/Camera/jni/feature_mos/src/mosaic/ |
D | ImageUtils.cpp | 28 void ImageUtils::rgba2yvu(ImageType out, ImageType in, int width, int height) in rgba2yvu() argument 32 ImageType vimg = yimg + width*height; in rgba2yvu() 33 ImageType uimg = vimg + width*height; in rgba2yvu() 37 for (int ij = 0; ij < width; ij++) { in rgba2yvu() 73 void ImageUtils::rgb2yvu(ImageType out, ImageType in, int width, int height) in rgb2yvu() argument 77 ImageType vimg = yimg + width*height; in rgb2yvu() 78 ImageType uimg = vimg + width*height; in rgb2yvu() 82 for (int ij = 0; ij < width; ij++) { in rgb2yvu() 116 ImageType ImageUtils::rgb2gray(ImageType in, int width, int height) in rgb2gray() argument 121 ImageType out = ImageUtils::allocateImage(width, height, 1); in rgb2gray() [all …]
|
D | Blend.cpp | 46 this->width = frame_width; in initialize() 64 …m_pFrameYPyr = PyramidShort::allocatePyramidPacked(m_wb.nlevs, (unsigned short) width, (unsigned s… in initialize() 65 …m_pFrameUPyr = PyramidShort::allocatePyramidPacked(m_wb.nlevsC, (unsigned short) (width), (unsigne… in initialize() 66 …m_pFrameVPyr = PyramidShort::allocatePyramidPacked(m_wb.nlevsC, (unsigned short) (width), (unsigne… in initialize() 141 double halfwidth = width / 2.0; in runBlend() 164 FrameToMosaicRect(mb->width, mb->height, mb->trs, mb->brect); in runBlend() 171 FrameToMosaic(mb->trs, mb->width-1.0, mb->height-1.0, x2, y2); in runBlend() 172 FrameToMosaic(mb->trs, mb->width-1.0, 0.0, x3, y3); in runBlend() 246 "(%d, %d) vs (%d, %d)", width, height, Mwidth, Mheight); in runBlend() 259 memset(imgMos->Y.ptr[0], 255, (imgMos->Y.width * imgMos->Y.height)); in runBlend() [all …]
|
D | Pyramid.cpp | 28 real width, real height, real border) in allocatePyramidPacked() argument 31 int lines, size = calcStorage(width, height, border2, levels, &lines); in allocatePyramidPacked() 42 curr->width = width; in allocatePyramidPacked() 45 curr->pitch = (real) (width + border2); in allocatePyramidPacked() 53 width >>= 1; in allocatePyramidPacked() 62 PyramidShort *PyramidShort::allocateImage(real width, real height, real border) in allocateImage() argument 67 sizeof(short) * (width + border2) * (height + border2), 1); in allocateImage() 72 img->width = width; in allocateImage() 75 img->pitch = (real) (width + border2); in allocateImage() 96 unsigned int PyramidShort::calcStorage(real width, real height, real border2, int levels, int *li… in calcStorage() argument [all …]
|
/packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/ |
D | ImageUtils.cpp | 28 void ImageUtils::rgba2yvu(ImageType out, ImageType in, int width, int height) in rgba2yvu() argument 32 ImageType vimg = yimg + width*height; in rgba2yvu() 33 ImageType uimg = vimg + width*height; in rgba2yvu() 37 for (int ij = 0; ij < width; ij++) { in rgba2yvu() 73 void ImageUtils::rgb2yvu(ImageType out, ImageType in, int width, int height) in rgb2yvu() argument 77 ImageType vimg = yimg + width*height; in rgb2yvu() 78 ImageType uimg = vimg + width*height; in rgb2yvu() 82 for (int ij = 0; ij < width; ij++) { in rgb2yvu() 116 ImageType ImageUtils::rgb2gray(ImageType in, int width, int height) in rgb2gray() argument 121 ImageType out = ImageUtils::allocateImage(width, height, 1); in rgb2gray() [all …]
|
D | Blend.cpp | 46 this->width = frame_width; in initialize() 64 …m_pFrameYPyr = PyramidShort::allocatePyramidPacked(m_wb.nlevs, (unsigned short) width, (unsigned s… in initialize() 65 …m_pFrameUPyr = PyramidShort::allocatePyramidPacked(m_wb.nlevsC, (unsigned short) (width), (unsigne… in initialize() 66 …m_pFrameVPyr = PyramidShort::allocatePyramidPacked(m_wb.nlevsC, (unsigned short) (width), (unsigne… in initialize() 141 double halfwidth = width / 2.0; in runBlend() 164 FrameToMosaicRect(mb->width, mb->height, mb->trs, mb->brect); in runBlend() 171 FrameToMosaic(mb->trs, mb->width-1.0, mb->height-1.0, x2, y2); in runBlend() 172 FrameToMosaic(mb->trs, mb->width-1.0, 0.0, x3, y3); in runBlend() 246 "(%d, %d) vs (%d, %d)", width, height, Mwidth, Mheight); in runBlend() 259 memset(imgMos->Y.ptr[0], 255, (imgMos->Y.width * imgMos->Y.height)); in runBlend() [all …]
|
D | Pyramid.cpp | 28 real width, real height, real border) in allocatePyramidPacked() argument 31 int lines, size = calcStorage(width, height, border2, levels, &lines); in allocatePyramidPacked() 42 curr->width = width; in allocatePyramidPacked() 45 curr->pitch = (real) (width + border2); in allocatePyramidPacked() 53 width >>= 1; in allocatePyramidPacked() 62 PyramidShort *PyramidShort::allocateImage(real width, real height, real border) in allocateImage() argument 67 sizeof(short) * (width + border2) * (height + border2), 1); in allocateImage() 72 img->width = width; in allocateImage() 75 img->pitch = (real) (width + border2); in allocateImage() 96 unsigned int PyramidShort::calcStorage(real width, real height, real border2, int levels, int *li… in calcStorage() argument [all …]
|
/packages/apps/Camera/jni/ |
D | feature_mos_jni.cpp | 59 int width=0, height=0; variable 209 void YUV420toYVU24(ImageType yvu24, ImageType yuv420sp, int width, int height) in YUV420toYVU24() argument 211 int frameSize = width * height; in YUV420toYVU24() 220 int uvp = frameSize + (j >> 1) * width; in YUV420toYVU24() 221 for (int i = 0; i < width; i++, yp++) in YUV420toYVU24() 239 void YUV420toYVU24_NEW(ImageType yvu24, ImageType yuv420sp, int width, in YUV420toYVU24_NEW() argument 242 int frameSize = width * height; in YUV420toYVU24_NEW() 253 int uvp = frameSize + (j >> 1) * width; in YUV420toYVU24_NEW() 254 ovp = yvu24 + frameSize + j * width; in YUV420toYVU24_NEW() 259 for (int i = 0; i < width; i += 2) in YUV420toYVU24_NEW() [all …]
|
/packages/apps/LegacyCamera/jni/ |
D | feature_mos_jni.cpp | 59 int width=0, height=0; variable 209 void YUV420toYVU24(ImageType yvu24, ImageType yuv420sp, int width, int height) in YUV420toYVU24() argument 211 int frameSize = width * height; in YUV420toYVU24() 220 int uvp = frameSize + (j >> 1) * width; in YUV420toYVU24() 221 for (int i = 0; i < width; i++, yp++) in YUV420toYVU24() 239 void YUV420toYVU24_NEW(ImageType yvu24, ImageType yuv420sp, int width, in YUV420toYVU24_NEW() argument 242 int frameSize = width * height; in YUV420toYVU24_NEW() 253 int uvp = frameSize + (j >> 1) * width; in YUV420toYVU24_NEW() 254 ovp = yvu24 + frameSize + j * width; in YUV420toYVU24_NEW() 259 for (int i = 0; i < width; i += 2) in YUV420toYVU24_NEW() [all …]
|
/packages/apps/Camera2/src/com/android/camera/ |
D | CaptureLayoutHelper.java | 224 public void onNonDecorWindowSizeChanged(int width, int height, int rotation) { in onNonDecorWindowSizeChanged() argument 225 mWindowWidth = width; in onNonDecorWindowSizeChanged() 244 private PositionConfiguration getPositionConfiguration(int width, int height, in getPositionConfiguration() argument 246 boolean landscape = width > height; in getPositionConfiguration() 252 config.mPreviewRect.set(0, 0, width, height); in getPositionConfiguration() 255 config.mBottomBarRect.set(width - mBottomBarOptimalHeight, 0, width, height); in getPositionConfiguration() 257 config.mBottomBarRect.set(0, height - mBottomBarOptimalHeight, width, height); in getPositionConfiguration() 265 int longerEdge = Math.max(width, height); in getPositionConfiguration() 266 int shorterEdge = Math.min(width, height); in getPositionConfiguration() 284 config.mBottomBarRect.set(width - barSize, height / 2 - previewShorterEdge / 2, in getPositionConfiguration() [all …]
|
D | Storage.java | 81 Location location, int orientation, ExifInterface exif, byte[] jpeg, int width, in addImage() argument 84 return addImage(resolver, title, date, location, orientation, exif, jpeg, width, height, in addImage() 110 Location location, int orientation, ExifInterface exif, byte[] data, int width, in addImage() argument 117 path, width, height, mimeType); in addImage() 139 Location location, int orientation, long jpegLength, String path, int width, int height, in addImageToMediaStore() argument 143 getContentValuesForData(title, date, location, orientation, jpegLength, path, width, in addImageToMediaStore() 163 String path, int width, int height, String mimeType) { in getContentValuesForData() argument 179 setImageSize(values, width, height); in getContentValuesForData() 195 public static Uri addPlaceholder(byte[] jpeg, int width, int height) { in addPlaceholder() argument 202 replacePlaceholder(uri, jpeg, width, height); in addPlaceholder() [all …]
|
/packages/apps/UnifiedEmail/src/com/android/mail/ui/ |
D | DividedImageCanvas.java | 216 outDim.width = w; in getDesiredDimensions() 247 final int width = mWidth; in addOrClearDivisionImage() local 257 draw(mDivisionImages.get(0), 0, 0, width, height); in addOrClearDivisionImage() 264 draw(mDivisionImages.get(0), 0, 0, width / 2, height); in addOrClearDivisionImage() 267 draw(mDivisionImages.get(1), width / 2, 0, width, height); in addOrClearDivisionImage() 274 drawVerticalDivider(width, height); in addOrClearDivisionImage() 283 draw(mDivisionImages.get(0), 0, 0, width / 2, height); in addOrClearDivisionImage() 286 draw(mDivisionImages.get(1), width / 2, 0, width, height / 2); in addOrClearDivisionImage() 289 draw(mDivisionImages.get(2), width / 2, height / 2, width, height); in addOrClearDivisionImage() 296 drawVerticalDivider(width, height); in addOrClearDivisionImage() [all …]
|
/packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/ |
D | GLES11Canvas.java | 128 public void setSize(int width, int height) { in setSize() argument 129 Assert.assertTrue(width >= 0 && height >= 0); in setSize() 132 mScreenWidth = width; in setSize() 138 gl.glViewport(0, 0, width, height); in setSize() 141 GLU.gluOrtho2D(gl, 0, width, 0, height); in setSize() 177 public void drawRect(float x, float y, float width, float height, GLPaint paint) { in drawRect() argument 185 scale(width, height, 1); in drawRect() 213 public void fillRect(float x, float y, float width, float height, int color) { in fillRect() argument 219 scale(width, height, 1); in fillRect() 266 private void textureRect(float x, float y, float width, float height) { in textureRect() argument [all …]
|
D | GLES20Canvas.java | 346 public void setSize(int width, int height) { in setSize() argument 347 mWidth = width; in setSize() 352 Matrix.orthoM(mProjectionMatrix, 0, 0, width, 0, height, -1, 1); in setSize() 354 mScreenWidth = width; in setSize() 486 public void drawRect(float x, float y, float width, float height, GLPaint paint) { in drawRect() argument 487 draw(GLES20.GL_LINE_LOOP, OFFSET_DRAW_RECT, COUNT_RECT_VERTEX, x, y, width, height, paint); in drawRect() 491 private void draw(int type, int offset, int count, float x, float y, float width, float height, in draw() argument 493 draw(type, offset, count, x, y, width, height, paint.getColor(), paint.getLineWidth()); in draw() 496 private void draw(int type, int offset, int count, float x, float y, float width, float height, in draw() argument 499 draw(mDrawParameters, type, count, x, y, width, height); in draw() [all …]
|
/packages/apps/Gallery2/src/com/android/gallery3d/ui/ |
D | AbstractSlotRenderer.java | 47 Texture content, int width, int height, int rotation) { in drawContent() argument 52 width = height = Math.min(width, height); in drawContent() 54 canvas.translate(width / 2, height / 2); in drawContent() 56 canvas.translate(-width / 2, -height / 2); in drawContent() 61 (float) width / content.getWidth(), in drawContent() 69 protected void drawVideoOverlay(GLCanvas canvas, int width, int height) { in drawVideoOverlay() argument 78 int s = Math.min(width, height) / 6; in drawVideoOverlay() 79 mVideoPlayIcon.draw(canvas, (width - s) / 2, (height - s) / 2, s, s); in drawVideoOverlay() 82 protected void drawPanoramaIcon(GLCanvas canvas, int width, int height) { in drawPanoramaIcon() argument 83 int iconSize = Math.min(width, height) / 6; in drawPanoramaIcon() [all …]
|
D | AlbumSetSlotRenderer.java | 131 public int renderSlot(GLCanvas canvas, int index, int pass, int width, int height) { in renderSlot() argument 134 renderRequestFlags |= renderContent(canvas, entry, width, height); in renderSlot() 135 renderRequestFlags |= renderLabel(canvas, entry, width, height); in renderSlot() 136 renderRequestFlags |= renderOverlay(canvas, index, entry, width, height); in renderSlot() 141 GLCanvas canvas, int index, AlbumSetEntry entry, int width, int height) { in renderOverlay() argument 146 mCameraOverlay.draw(canvas, (width - dim) / 2, in renderOverlay() 151 drawPressedUpFrame(canvas, width, height); in renderOverlay() 158 drawPressedFrame(canvas, width, height); in renderOverlay() 161 drawSelectedFrame(canvas, width, height); in renderOverlay() 163 drawSelectedFrame(canvas, width, height); in renderOverlay() [all …]
|
D | TiledScreenNail.java | 62 public TiledScreenNail(int width, int height) { in TiledScreenNail() argument 63 setSize(width, height); in TiledScreenNail() 75 private void setSize(int width, int height) { in setSize() argument 76 if (width == 0 || height == 0) { in setSize() 77 width = sMaxSide; in setSize() 80 float scale = Math.min(1, (float) sMaxSide / Math.max(width, height)); in setSize() 81 mWidth = Math.round(scale * width); in setSize() 114 public void updatePlaceholderSize(int width, int height) { in updatePlaceholderSize() argument 116 if (width == 0 || height == 0) return; in updatePlaceholderSize() 117 setSize(width, height); in updatePlaceholderSize() [all …]
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/ui/ |
D | ExportDialog.java | 110 mOriginalBounds = preset.finalGeometryRect(mOriginalBounds.width(), in onCreateView() 112 mRatio = mOriginalBounds.width() / (float) mOriginalBounds.height(); in onCreateView() 113 mWidthText.setText("" + mOriginalBounds.width()); in onCreateView() 115 mExportWidth = mOriginalBounds.width(); in onCreateView() 161 float scaleFactor = mExportWidth / (float) mOriginalBounds.width(); in onClick() 189 float originalArea = mCompressedBounds.width() * mCompressedBounds.height(); in updateSize() 205 int width = 1; in textChanged() local 211 width = Integer.parseInt(value); in textChanged() 212 if (width > mOriginalBounds.width()) { in textChanged() 213 width = mOriginalBounds.width(); in textChanged() [all …]
|
/packages/apps/Launcher3/WallpaperPicker/src/com/android/gallery3d/glrenderer/ |
D | GLES20Canvas.java | 346 public void setSize(int width, int height) { in setSize() argument 347 mWidth = width; in setSize() 352 Matrix.orthoM(mProjectionMatrix, 0, 0, width, 0, height, -1, 1); in setSize() 354 mScreenWidth = width; in setSize() 486 public void drawRect(float x, float y, float width, float height, GLPaint paint) { in drawRect() argument 487 draw(GLES20.GL_LINE_LOOP, OFFSET_DRAW_RECT, COUNT_RECT_VERTEX, x, y, width, height, paint); in drawRect() 491 private void draw(int type, int offset, int count, float x, float y, float width, float height, in draw() argument 493 draw(type, offset, count, x, y, width, height, paint.getColor(), paint.getLineWidth()); in draw() 496 private void draw(int type, int offset, int count, float x, float y, float width, float height, in draw() argument 499 draw(mDrawParameters, type, count, x, y, width, height); in draw() [all …]
|
/packages/apps/Camera2/src/com/android/camera/settings/ |
D | ResolutionUtil.java | 91 return Integer.compare(size2.width() * size2.height(), in add() 92 size.width() * size.height()); in add() 95 maxPixels = sizes.get(0).width() * sizes.get(0).height(); in add() 152 return size.width() * size.height(); in area() 226 Float aspectRatio = size.width() / (float) size.height(); in parseAvailableSizes() 260 return aspectRatio.width() + "x" + aspectRatio.height(); in aspectRatioDescription() 271 BigInteger width = BigInteger.valueOf(aspectRatio.width()); in reduce() local 273 BigInteger gcd = width.gcd(height); in reduce() 274 int numerator = Math.max(width.intValue(), height.intValue()) / gcd.intValue(); in reduce() 275 int denominator = Math.min(width.intValue(), height.intValue()) / gcd.intValue(); in reduce() [all …]
|
/packages/apps/Gallery/src/com/android/camera/ |
D | HighlightView.java | 90 float width = mDrawRect.width(); in draw() local 92 path.addCircle(mDrawRect.left + (width / 2), in draw() 94 width / 2, in draw() 110 int width = mResizeDrawableDiagonal.getIntrinsicWidth(); in draw() local 114 * (mDrawRect.width() / 2D)); in draw() 116 + (mDrawRect.width() / 2) + d - width / 2; in draw() 189 int radius = mDrawRect.width() / 2; in getHit() 248 moveBy(dx * (mCropRect.width() / r.width()), in handleMotion() 260 float xDelta = dx * (mCropRect.width() / r.width()); in handleMotion() 302 if (dx > 0F && r.width() + 2 * dx > mImageRect.width()) { in growBy() [all …]
|
/packages/apps/Camera/src/com/android/camera/ |
D | CameraScreenNail.java | 83 public void onDraw(GLCanvas canvas, int x, int y, int width, int height) { 84 CameraScreenNail.super.draw(canvas, x, y, width, height); 107 void onDraw(GLCanvas canvas, int x, int y, int width, int height); in onDraw() argument 313 public void directDraw(GLCanvas canvas, int x, int y, int width, int height) { in directDraw() argument 318 draw.onDraw(canvas, x, y, width, height); in directDraw() 333 public void draw(GLCanvas canvas, int x, int y, int width, int height) { in draw() argument 344 directDraw(canvas, x, y, width, height); in draw() 348 mSwitchAnimManager.setReviewDrawingSize(width, height); in draw() 359 mSwitchAnimManager.drawDarkPreview(canvas, x, y, width, in draw() 369 mCaptureAnimManager.startAnimation(x, y, width, height); in draw() [all …]
|
/packages/apps/Settings/src/com/android/settings/fuelgauge/ |
D | BatteryHistoryChart.java | 78 void init(int width) { in init() argument 79 if (width > 0) { in init() 80 mTicks = new int[width*2]; in init() 96 void finish(int width) { in finish() argument 98 addTick(width, 0); in finish() 320 final int width; field in BatteryHistoryChart.TimeLabel 327 width = (int)paint.measureText(label); in TimeLabel() 334 final int width; field in BatteryHistoryChart.DateLabel 341 width = (int)paint.measureText(label); in DateLabel() 1129 final int width = getWidth(); in onDraw() local [all …]
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/suggestions/ |
D | SuggestionStripLayoutHelper.java | 192 final int width = Math.round(bounds.width() + 0.5f); in getMoreSuggestionsHint() local 194 final Bitmap buffer = Bitmap.createBitmap(width, (height * 3 / 2), Bitmap.Config.ARGB_8888); in getMoreSuggestionsHint() 196 canvas.drawText(MORE_SUGGESTIONS_HINT, width / 2, height, paint); in getMoreSuggestionsHint() 400 final int width = getSuggestionWidth(positionInStrip, stripWidth); in layoutAndReturnStartIndexOfMoreSuggestions() local 401 final TextView wordView = layoutWord(positionInStrip, width); in layoutAndReturnStartIndexOfMoreSuggestions() 430 private TextView layoutWord(final int positionInStrip, final int width) { in layoutWord() argument 445 final CharSequence text = getEllipsizedText(word, width, wordView.getPaint()); in layoutWord() 446 final float scaleX = getTextScaleX(word, width, wordView.getPaint()); in layoutWord() 555 final int width = shouldShowUiToAcceptTypedWord ? stripWidth in layoutAddToDictionaryHint() local 560 final int wordWidth = (int)(width * mCenterSuggestionWeight); in layoutAddToDictionaryHint() [all …]
|
/packages/apps/Launcher3/src/com/android/launcher3/ |
D | DeviceProfile.java | 467 private DeviceProfile findClosestDeviceProfile(float width, float height, in findClosestDeviceProfile() argument 469 return findClosestDeviceProfiles(width, height, points).get(0).profile; in findClosestDeviceProfile() 473 private ArrayList<DeviceProfileQuery> findClosestDeviceProfiles(float width, float height, in findClosestDeviceProfiles() argument 475 final PointF xy = new PointF(width, height); in findClosestDeviceProfiles() 488 private float invDistWeightedInterpolate(float width, float height, in invDistWeightedInterpolate() argument 494 final PointF xy = new PointF(width, height); in invDistWeightedInterpolate() 496 ArrayList<DeviceProfileQuery> pointsByNearness = findClosestDeviceProfiles(width, height, in invDistWeightedInterpolate() 550 int width = (orientation == CellLayout.LANDSCAPE) in getSearchBarBounds() local 555 int gap = (int) ((width - 2 * edgeMarginPx - in getSearchBarBounds() 603 searchBarBounds.width(), edgeMarginPx); in getWorkspacePadding() [all …]
|
/packages/apps/Contacts/src/com/android/contacts/widget/ |
D | InterpolatingLayout.java | 147 public LayoutParams(int width, int height) { in LayoutParams() argument 148 super(width, height); in LayoutParams() 157 return width; in resolveWidth() 208 int width = 0; in onMeasure() local 220 if (params.width == LayoutParams.MATCH_PARENT) { in onMeasure() 257 width += child.getMeasuredWidth(); in onMeasure() 261 width += params.resolveLeftMargin(parentWidth) + params.resolveRightMargin(parentWidth); in onMeasure() 265 int remainder = parentWidth - width; in onMeasure() 270 width += fillChild.getMeasuredWidth(); in onMeasure() 275 resolveSize(width, widthMeasureSpec), resolveSize(height, heightMeasureSpec)); in onMeasure() [all …]
|