Home
last modified time | relevance | path

Searched refs:width (Results 1 – 25 of 563) sorted by relevance

12345678910>>...23

/packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
DImageUtils.cpp28 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 …]
DPyramid.cpp28 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 …]
DBlend.cpp46 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 …]
/packages/apps/Camera2/src/com/android/camera/util/
DSize.java37 private final int width; field in Size
41 this.width = point.x; in Size()
47 this.width = size.getWidth(); in Size()
51 public Size(int width, int height) { in Size() argument
52 this.width = width; in Size()
57 return new Size(rectangle.width(), rectangle.height()); in of()
66 this.width = other.width; in Size()
71 this.width = size.width(); in Size()
76 return width; in getWidth()
83 public int width() { in width() method in Size
[all …]
/packages/apps/LegacyCamera/jni/
Dfeature_mos_jni.cpp59 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/
DCaptureLayoutHelper.java224 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 …]
DTextureViewHelper.java105 int width = right - left; in onLayoutChange() local
108 if (mWidth != width || mHeight != height || mOrientation != rotation) { in onLayoutChange()
109 mWidth = width; in onLayoutChange()
204 float previewWidth = previewRect.width();
279 RectF rotatedRect = new RectF(normalRect.width() / 2 - normalRect.height() / 2,
280 normalRect.height() / 2 - normalRect.width() / 2,
281 normalRect.width() / 2 + normalRect.height() / 2,
282 normalRect.height() / 2 + normalRect.width() / 2);
418 int width = (int) textureArea.width() / downsample;
420 Bitmap preview = mPreview.getBitmap(width, height);
[all …]
/packages/apps/TV/src/com/android/tv/ui/
DTvViewUiManager.java449 boolean willHavePillarBox = ((targetLayoutParams.width != LayoutParams.MATCH_PARENT) in setBackgroundColor()
450 && targetLayoutParams.width != decorViewWidth) || ( in setBackgroundColor()
474 Log.d(TAG, "setTvViewPosition: w=" + layoutParams.width + " h=" + layoutParams.height in setTvViewPosition()
522 Log.d(TAG, "setFixedSize: w=" + layoutParams.width + " h=" in setTvViewPosition()
526 mTvView.setFixedSurfaceSize(layoutParams.width, layoutParams.height); in setTvViewPosition()
545 int width; in updatePipView() local
558 width = tvViewFrame.width; in updatePipView()
560 width = (int) (height * videoDisplayAspectRatio); in updatePipView()
561 if (width > tvViewFrame.width) { in updatePipView()
562 width = tvViewFrame.width; in updatePipView()
[all …]
/packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
DGLES11Canvas.java128 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 …]
DGLES20Canvas.java346 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/Dialer/InCallUI/src/com/android/incallui/
DVideoCallFragment.java148 int width, int height) { in VideoCallSurface() argument
150 " width=" + width + " height=" + height); in VideoCallSurface()
152 mWidth = width; in VideoCallSurface()
206 public void onSurfaceTextureAvailable(SurfaceTexture surfaceTexture, int width, in onSurfaceTextureAvailable() argument
216 + surfaceTexture + " width=" + width in onSurfaceTextureAvailable()
221 surfaceCreated = createSurface(width, height); in onSurfaceTextureAvailable()
251 public void onSurfaceTextureSizeChanged(SurfaceTexture surfaceTexture, int width, in onSurfaceTextureSizeChanged() argument
370 public void setSurfaceDimensions(int width, int height) { in setSurfaceDimensions() argument
371 Log.d(this, "setSurfaceDimensions, width=" + width + " height=" + height); in setSurfaceDimensions()
372 mWidth = width; in setSurfaceDimensions()
[all …]
DVideoCallPresenter.java310 public void onSurfaceChanged(int surface, int format, int width, int height) { in onSurfaceChanged() argument
832 public void onUpdatePeerDimensions(Call call, int width, int height) { in onUpdatePeerDimensions() argument
833 Log.d(this, "onUpdatePeerDimensions: width= " + width + " height= " + height); in onUpdatePeerDimensions()
845 if (width > 0 && height > 0) { in onUpdatePeerDimensions()
846 setDisplayVideoSize(width, height); in onUpdatePeerDimensions()
870 public void onCameraDimensionsChange(Call call, int width, int height) { in onCameraDimensionsChange() argument
871 Log.d(this, "onCameraDimensionsChange call=" + call + " width=" + width + " height=" in onCameraDimensionsChange()
885 changePreviewDimensions(width, height); in onCameraDimensionsChange()
901 private void changePreviewDimensions(int width, int height) { in changePreviewDimensions() argument
908 ui.setPreviewSurfaceSize(width, height); in changePreviewDimensions()
[all …]
/packages/apps/Messaging/src/com/android/messaging/datamodel/
DBitmapPool.java127 private int getPoolKey(final int width, final int height) { in getPoolKey() argument
128 if (width > MAX_SUPPORTED_IMAGE_DIMENSION || height > MAX_SUPPORTED_IMAGE_DIMENSION) { in getPoolKey()
131 return (width << 16) | height; in getPoolKey()
139 private Bitmap findPoolBitmap(final int width, final int height) { in findPoolBitmap() argument
140 final int poolKey = getPoolKey(width, height); in findPoolBitmap()
167 private void assignPoolBitmap(final BitmapFactory.Options optionsTmp, final int width, in assignPoolBitmap() argument
172 optionsTmp.inBitmap = findPoolBitmap(width, height); in assignPoolBitmap()
188 final int width, final int height) { in decodeSampledBitmapFromResource() argument
191 Assert.isTrue(width > 0); in decodeSampledBitmapFromResource()
193 assignPoolBitmap(optionsTmp, width, height); in decodeSampledBitmapFromResource()
[all …]
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
DAbstractSlotRenderer.java47 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 …]
DTiledScreenNail.java62 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 …]
DAlbumSetSlotRenderer.java131 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 …]
/packages/apps/Messaging/src/com/android/messaging/datamodel/media/
DPoolableImageCache.java137 final int width, final int height) throws IOException { in decodeSampledBitmapFromInputStream() argument
138 if (width <= 0 || height <= 0) { in decodeSampledBitmapFromInputStream()
145 assignPoolBitmap(optionsTmp, width, height); in decodeSampledBitmapFromInputStream()
177 @NonNull final BitmapFactory.Options optionsTmp, final int width, in decodeByteArray() argument
179 if (width <= 0 || height <= 0) { in decodeByteArray()
187 assignPoolBitmap(optionsTmp, width, height); in decodeByteArray()
257 private Bitmap getReusableBitmapFromPool(final int width, final int height) { in getReusableBitmapFromPool() argument
259 final int poolKey = getPoolKey(width, height); in getReusableBitmapFromPool()
344 public Bitmap createOrReuseBitmap(final int width, final int height) { in createOrReuseBitmap() argument
345 return createOrReuseBitmap(width, height, Color.TRANSPARENT); in createOrReuseBitmap()
[all …]
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/ui/
DExportDialog.java110 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/Camera2/src/com/android/camera/settings/
DResolutionUtil.java109 return Integer.compare(size2.width() * size2.height(), in add()
110 size.width() * size.height()); in add()
113 maxPixels = sizes.get(0).width() * sizes.get(0).height(); in add()
170 return size.width() * size.height(); in area()
278 return aspectRatio.width() + "x" + aspectRatio.height(); in aspectRatioDescription()
289 BigInteger width = BigInteger.valueOf(aspectRatio.width()); in reduce() local
291 BigInteger gcd = width.gcd(height); in reduce()
292 int numerator = Math.max(width.intValue(), height.intValue()) / gcd.intValue(); in reduce()
293 int denominator = Math.min(width.intValue(), height.intValue()) / gcd.intValue(); in reduce()
305 return aspectRatio.width(); in aspectRatioNumerator()
[all …]
/packages/apps/Gallery/src/com/android/camera/
DHighlightView.java90 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/Launcher3/WallpaperPicker/src/com/android/gallery3d/glrenderer/
DGLES20Canvas.java344 public void setSize(int width, int height) { in setSize() argument
345 mWidth = width; in setSize()
350 Matrix.orthoM(mProjectionMatrix, 0, 0, width, 0, height, -1, 1); in setSize()
352 mScreenWidth = width; in setSize()
484 public void drawRect(float x, float y, float width, float height, GLPaint paint) { in drawRect() argument
485 draw(GLES20.GL_LINE_LOOP, OFFSET_DRAW_RECT, COUNT_RECT_VERTEX, x, y, width, height, paint); in drawRect()
489 private void draw(int type, int offset, int count, float x, float y, float width, float height, in draw() argument
491 draw(type, offset, count, x, y, width, height, paint.getColor(), paint.getLineWidth()); in draw()
494 private void draw(int type, int offset, int count, float x, float y, float width, float height, in draw() argument
497 draw(mDrawParameters, type, count, x, y, width, height); in draw()
[all …]
/packages/apps/Launcher3/src/com/android/launcher3/
DDeviceProfile.java115 int width, int height, boolean isLandscape) { in DeviceProfile() argument
161 widthPx = width; in DeviceProfile()
289 return new Point(searchBarBounds.width(), searchBarBounds.height()); in getSearchBarDimensForWidgetOpts()
293 return new Point(searchBarBounds.width(), searchBarSpaceHeightPx + widgetInternalPadding); in getSearchBarDimensForWidgetOpts()
312 int width = getCurrentWidth(); in getSearchBarBounds() local
315 int gap = (int) ((width - 2 * edgeMarginPx - in getSearchBarBounds()
337 searchBarBounds.width(), edgeMarginPx); in getWorkspacePadding()
339 padding.set(searchBarBounds.width(), edgeMarginPx, in getWorkspacePadding()
349 int width = getCurrentWidth(); in getWorkspacePadding() local
352 int availablePaddingX = Math.max(0, width - (int) ((inv.numColumns * cellWidthPx) + in getWorkspacePadding()
[all …]
/packages/apps/Launcher3/src/com/android/launcher3/util/
DIconNormalizer.java79 int width = d.getIntrinsicWidth(); in getScale() local
81 if (width <= 0 || height <= 0) { in getScale()
82 width = width <= 0 || width > mMaxSize ? mMaxSize : width; in getScale()
84 } else if (width > mMaxSize || height > mMaxSize) { in getScale()
85 int max = Math.max(width, height); in getScale()
86 width = mMaxSize * width / max; in getScale()
91 d.setBounds(0, 0, width, height); in getScale()
111 int rowSizeDiff = mMaxSize - width; in getScale()
117 for (int x = 0; x < width; x++) { in getScale()
171 float areaScale = area / (width * height); in getScale()
/packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/
DCameraManager.java105 void onMediaReady(Uri uriToMedia, String contentType, int width, int height); in onMediaReady() argument
561 int width; in takePicture()
564 width = size.height; in takePicture()
565 height = size.width; in takePicture()
567 width = size.width; in takePicture()
571 width, height, heightPercent, bytes, mCameraPreview.getContext(), callback) in takePicture()
742 params.setPreviewSize(previewSize.width, previewSize.height); in tryShowPreview()
743 params.setPictureSize(pictureSize.width, pictureSize.height); in tryShowPreview()
875 int width = ImageRequest.UNSPECIFIED_SIZE; in stopVideo() local
883 width = mMediaRecorder.getVideoWidth(); in stopVideo()
[all …]
/packages/apps/Camera2/jni/
Djpegutilnative.cpp72 jint width, jint height, in Java_com_android_camera_util_JpegUtilNative_compressJpegFromYUV420pNative() argument
93 return Compress(width, height, // in Java_com_android_camera_util_JpegUtilNative_compressJpegFromYUV420pNative()
119 JNIEnv* env, jclass clazz, jint width, jint height, jobject planeBuf, in Java_com_android_camera_util_JpegUtilNative_copyImagePlaneToBitmap() argument
130 char* dstPtr = &dst[y * width]; in Java_com_android_camera_util_JpegUtilNative_copyImagePlaneToBitmap()
131 for (int x = 0; x < width; x++) { in Java_com_android_camera_util_JpegUtilNative_copyImagePlaneToBitmap()
140 for (int x = 0; x < width; x++) { in Java_com_android_camera_util_JpegUtilNative_copyImagePlaneToBitmap()
143 dst[y * width + x] = src[srcX * pStride + rStride * srcY]; in Java_com_android_camera_util_JpegUtilNative_copyImagePlaneToBitmap()
149 for (int x = 0; x < width; x++) { in Java_com_android_camera_util_JpegUtilNative_copyImagePlaneToBitmap()
150 int srcX = width - 1 - x; in Java_com_android_camera_util_JpegUtilNative_copyImagePlaneToBitmap()
152 dst[y * width + x] = src[srcX * pStride + rStride * srcY]; in Java_com_android_camera_util_JpegUtilNative_copyImagePlaneToBitmap()
[all …]

12345678910>>...23