Home
last modified time | relevance | path

Searched refs:height (Results 1 – 25 of 569) 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()
36 for (int ii = 0; ii < height; ii++) { 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()
81 for (int ii = 0; ii < height; ii++) { 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()
43 curr->height = height; in allocatePyramidPacked()
49 for (int j = height + border2; j--; y++, position += curr->pitch) { in allocatePyramidPacked()
54 height >>= 1; in allocatePyramidPacked()
62 PyramidShort *PyramidShort::allocateImage(real width, real height, real border) in allocateImage() argument
66 calloc(sizeof(PyramidShort) + sizeof(short *) * (height + border2) + in allocateImage()
67 sizeof(short) * (width + border2) * (height + border2), 1); in allocateImage()
71 short *position = (short *) &y[height + border2]; in allocateImage()
73 img->height = height; in allocateImage()
[all …]
DBlend.cpp47 this->height = frame_height; in initialize()
64 …dShort::allocatePyramidPacked(m_wb.nlevs, (unsigned short) width, (unsigned short) height, BORDER); in initialize()
65 …t::allocatePyramidPacked(m_wb.nlevsC, (unsigned short) (width), (unsigned short) (height), BORDER); in initialize()
66 …t::allocatePyramidPacked(m_wb.nlevsC, (unsigned short) (width), (unsigned short) (height), BORDER); in initialize()
142 double halfheight = height / 2.0; in runBlend()
164 FrameToMosaicRect(mb->width, mb->height, mb->trs, mb->brect); in runBlend()
170 FrameToMosaic(mb->trs, 0.0, mb->height-1.0, x1, y1); in runBlend()
171 FrameToMosaic(mb->trs, mb->width-1.0, mb->height-1.0, x2, y2); 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/Camera/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()
36 for (int ii = 0; ii < height; ii++) { 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()
81 for (int ii = 0; ii < height; ii++) { 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()
43 curr->height = height; in allocatePyramidPacked()
49 for (int j = height + border2; j--; y++, position += curr->pitch) { in allocatePyramidPacked()
54 height >>= 1; in allocatePyramidPacked()
62 PyramidShort *PyramidShort::allocateImage(real width, real height, real border) in allocateImage() argument
66 calloc(sizeof(PyramidShort) + sizeof(short *) * (height + border2) + in allocateImage()
67 sizeof(short) * (width + border2) * (height + border2), 1); in allocateImage()
71 short *position = (short *) &y[height + border2]; in allocateImage()
73 img->height = height; in allocateImage()
[all …]
DBlend.cpp47 this->height = frame_height; in initialize()
64 …dShort::allocatePyramidPacked(m_wb.nlevs, (unsigned short) width, (unsigned short) height, BORDER); in initialize()
65 …t::allocatePyramidPacked(m_wb.nlevsC, (unsigned short) (width), (unsigned short) (height), BORDER); in initialize()
66 …t::allocatePyramidPacked(m_wb.nlevsC, (unsigned short) (width), (unsigned short) (height), BORDER); in initialize()
142 double halfheight = height / 2.0; in runBlend()
164 FrameToMosaicRect(mb->width, mb->height, mb->trs, mb->brect); in runBlend()
170 FrameToMosaic(mb->trs, 0.0, mb->height-1.0, x1, y1); in runBlend()
171 FrameToMosaic(mb->trs, mb->width-1.0, mb->height-1.0, x2, y2); 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.java38 private final int height; field in Size
42 this.height = point.y; in Size()
48 this.height = size.getHeight(); in Size()
51 public Size(int width, int height) { in Size() argument
53 this.height = height; in Size()
57 return new Size(rectangle.width(), rectangle.height()); in of()
67 this.height = other.height; in Size()
72 this.height = size.height(); in Size()
80 return height; in getHeight()
87 public int height() { in height() method in Size
[all …]
/packages/apps/Camera2/src/com/android/camera/
DCaptureLayoutHelper.java224 public void onNonDecorWindowSizeChanged(int width, int height, int rotation) { in onNonDecorWindowSizeChanged() argument
226 mWindowHeight = height; 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()
282 … config.mPreviewRect.set(0, height / 2 - previewShorterEdge / 2, previewLongerEdge, in getPositionConfiguration()
[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()
133 mScreenHeight = height; in setSize()
138 gl.glViewport(0, 0, width, height); in setSize()
141 GLU.gluOrtho2D(gl, 0, width, 0, height); in setSize()
150 Matrix.translateM(matrix, 0, 0, height, 0); 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()
[all …]
DGLES20Canvas.java346 public void setSize(int width, int height) { in setSize() argument
348 mHeight = height; in setSize()
352 Matrix.orthoM(mProjectionMatrix, 0, 0, width, 0, height, -1, 1); in setSize()
355 mScreenHeight = height; in setSize()
356 Matrix.translateM(mMatrices, mCurrentMatrixIndex, 0, height, 0); 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
[all …]
/packages/apps/Contacts/src/com/android/contacts/widget/
DMultiShrinkScroller.java351 photoLayoutParams.height = mMaximumHeaderHeight; in initialize()
379 actionBarGradientLayoutParams.height = mActionBarSize; in configureGradientViewHeights()
386 titleGradientLayoutParams.height = (int) ((mLargeTextView.getHeight() in configureGradientViewHeights()
711 toolbarLayoutParams.height = delta; in setToolbarHeight()
720 return mToolbar.getLayoutParams().height; in getToolbarHeight()
727 public void setHeaderHeight(int height) { in setHeaderHeight() argument
730 toolbarLayoutParams.height = height; in setHeaderHeight()
738 return mToolbar.getLayoutParams().height; in getHeaderHeight()
829 final int height = getHeight(); in draw() local
839 height + getMaximumScrollUpwards() - getScroll()); in draw()
[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()
62 (float) height / content.getHeight()); in drawContent()
69 protected void drawVideoOverlay(GLCanvas canvas, int width, int height) { in drawVideoOverlay() argument
73 float scale = (float) height / v.getHeight(); in drawVideoOverlay()
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
[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()
78 height = sMaxSide * 3 / 4; in setSize()
80 float scale = Math.min(1, (float) sMaxSide / Math.max(width, height)); in setSize()
82 mHeight = Math.round(scale * height); 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
144 int uncoveredHeight = height - mLabelSpec.labelBackgroundHeight; 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/
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()
168 final int height) { in assignPoolBitmap() argument
172 optionsTmp.inBitmap = findPoolBitmap(width, height); in assignPoolBitmap()
188 final int width, final int height) { in decodeSampledBitmapFromResource() argument
192 Assert.isTrue(height > 0); in decodeSampledBitmapFromResource()
193 assignPoolBitmap(optionsTmp, width, height); in decodeSampledBitmapFromResource()
[all …]
/packages/apps/InCallUI/src/com/android/incallui/
DVideoCallFragment.java144 int width, int height) { in VideoCallSurface() argument
146 " width=" + width + " height=" + height); in VideoCallSurface()
149 mHeight = height; in VideoCallSurface()
203 int height) { in onSurfaceTextureAvailable() argument
213 + " height=" + height + " mSavedSurfaceTexture=" + mSavedSurfaceTexture); in onSurfaceTextureAvailable()
217 surfaceCreated = createSurface(width, height); in onSurfaceTextureAvailable()
248 int height) { in onSurfaceTextureSizeChanged() argument
366 public void setSurfaceDimensions(int width, int height) { in setSurfaceDimensions() argument
367 Log.d(this, "setSurfaceDimensions, width=" + width + " height=" + height); in setSurfaceDimensions()
369 mHeight = height; in setSurfaceDimensions()
[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()
217 for (int j = 0, yp = 0; j < height; j++) in YUV420toYVU24()
240 int height) in YUV420toYVU24_NEW() argument
242 int frameSize = width * height; in YUV420toYVU24_NEW()
250 for (int j = 0; j < height; j += 2) in YUV420toYVU24_NEW()
278 JNIEnv* env, jobject thiz, jint width, jint height) in Java_com_android_camera_panorama_Mosaic_allocateMosaicMemory() argument
281 tHeight[HR] = height; in Java_com_android_camera_panorama_Mosaic_allocateMosaicMemory()
283 tHeight[LR] = int(height / H2L_FACTOR); in Java_com_android_camera_panorama_Mosaic_allocateMosaicMemory()
[all …]
/packages/apps/Camera/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()
217 for (int j = 0, yp = 0; j < height; j++) in YUV420toYVU24()
240 int height) in YUV420toYVU24_NEW() argument
242 int frameSize = width * height; in YUV420toYVU24_NEW()
250 for (int j = 0; j < height; j += 2) in YUV420toYVU24_NEW()
278 JNIEnv* env, jobject thiz, jint width, jint height) in Java_com_android_camera_Mosaic_allocateMosaicMemory() argument
281 tHeight[HR] = height; in Java_com_android_camera_Mosaic_allocateMosaicMemory()
283 tHeight[LR] = int(height / H2L_FACTOR); in Java_com_android_camera_Mosaic_allocateMosaicMemory()
[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()
178 final int height) throws OutOfMemoryError, IOException { 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.java111 mOriginalBounds.height()); in onCreateView()
112 mRatio = mOriginalBounds.width() / (float) mOriginalBounds.height(); in onCreateView()
114 mHeightText.setText("" + mOriginalBounds.height()); in onCreateView()
116 mExportHeight = mOriginalBounds.height(); in onCreateView()
189 float originalArea = mCompressedBounds.width() * mCompressedBounds.height(); in updateSize()
206 int height = 1; in textChanged() local
220 height = (int) (width / mRatio); in textChanged()
222 mHeightText.setText("" + height); in textChanged()
228 height = Integer.parseInt(value); in textChanged()
229 if (height > mOriginalBounds.height()) { in textChanged()
[all …]
/packages/apps/Launcher3/WallpaperPicker/src/com/android/gallery3d/glrenderer/
DGLES20Canvas.java344 public void setSize(int width, int height) { in setSize() argument
346 mHeight = height; in setSize()
350 Matrix.orthoM(mProjectionMatrix, 0, 0, width, 0, height, -1, 1); in setSize()
353 mScreenHeight = height; in setSize()
354 Matrix.translateM(mMatrices, mCurrentMatrixIndex, 0, height, 0); 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
[all …]
/packages/apps/Camera/src/com/android/camera/
DCameraScreenNail.java83 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()
360 height, mAnimTexture); in draw()
369 mCaptureAnimManager.startAnimation(x, y, width, height); in draw()
[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()
290 BigInteger height = BigInteger.valueOf(aspectRatio.height()); 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()
318 float fuzzy = fuzzAspectRatio(size.width() / (float) size.height()); in getApproximateSize()
[all …]
/packages/apps/FMRadio/src/com/android/fmradio/views/
DFmScroller.java277 private void setGridViewHeight(int height) { in setGridViewHeight() argument
279 params.height = height; in setGridViewHeight()
466 return mHeader.getLayoutParams().height; in getToolbarHeight()
473 public void setHeaderHeight(int height) { in setHeaderHeight() argument
475 toolbarLayoutParams.height = height; in setHeaderHeight()
487 return mHeader.getLayoutParams().height; in getHeaderHeight()
564 final int height = getHeight(); in draw() local
574 canvas.translate(-width + getPaddingLeft(), height + getMaximumScrollUpwards() in draw()
578 mEdgeGlowBottom.setSize(width, height); in draw()
614 if (toolbarLayoutParams.height > getFullyCompressedHeaderHeight()) { in scrollUp()
[all …]
/packages/apps/Browser/src/com/android/browser/view/
DScrollerView.java368 lp.height); in onMeasure()
377 int height = getMeasuredHeight(); in onMeasure() local
378 if (child.getMeasuredHeight() < height) { in onMeasure()
385 height -= mPaddingTop; in onMeasure()
386 height -= mPaddingBottom; in onMeasure()
388 height, MeasureSpec.EXACTLY); in onMeasure()
1060 int height = getHeight(); in pageScroll() local
1063 mTempRect.top = getScrollY() + height; in pageScroll()
1067 if (mTempRect.top + height > view.getBottom()) { in pageScroll()
1068 mTempRect.top = view.getBottom() - height; in pageScroll()
[all …]

12345678910>>...23