Home
last modified time | relevance | path

Searched refs:height (Results 1 – 25 of 711) sorted by relevance

12345678910>>...29

/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 …]
DImageUtils.h62 static void rgb2yvu(ImageType out, ImageType in, int width, int height);
64 static void rgba2yvu(ImageType out, ImageType in, int width, int height);
76 static void yvu2rgb(ImageType out, ImageType in, int width, int height);
77 static void yvu2bgr(ImageType out, ImageType in, int width, int height);
91 static ImageType rgb2gray(ImageType in, int width, int height);
92 static ImageType rgb2gray(ImageType out, ImageType in, int width, int height);
97 static ImageType readBinaryPPM(const char *filename, int &width, int &height);
102 …static void writeBinaryPPM(ImageType image, const char *filename, int width, int height, int numCh…
107 static ImageType allocateImage(int width, int height, int numChannels, short int border = 0);
114 static ImageType *imageTypeToRowPointers(ImageType out, int width, int height);
[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 …]
DMosaic.cpp56 int Mosaic::initialize(int blendingType, int stripType, int width, int height, int nframes, bool qu… in initialize() argument
69 this->height = height; in initialize()
82 … frames[i] = new MosaicFrame(this->width,this->height,false); // Do no allocate memory for YUV data in initialize()
95 LOGV("Initialize %d %d", width, height); in initialize()
96 LOGV("Frame width %d,%d", width, height); in initialize()
100 aligner->initialize(width, height,quarter_res,thresh_still); in initialize()
107 blender->initialize(blendingType, stripType, width, height); in initialize()
123 …imageYVU = ImageUtils::allocateImage(this->width, this->height, ImageUtils::IMAGE_TYPE_NUM_CHANNEL… in addFrameRGB()
124 ImageUtils::rgb2yvu(imageYVU, imageRGB, width, height); in addFrameRGB()
132 frames[frames_size] = new MosaicFrame(this->width,this->height,false); in addFrame()
[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 …]
DTextureViewHelper.java106 int height = bottom - top; in onLayoutChange() local
108 if (mWidth != width || mHeight != height || mOrientation != rotation) { in onLayoutChange()
110 mHeight = height; in onLayoutChange()
205 float previewHeight = previewRect.height();
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);
419 int height = (int) textureArea.height() / downsample;
420 Bitmap preview = mPreview.getBitmap(width, height);
[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/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/glrenderer/
DGLES11Canvas.java126 public void setSize(int width, int height) { in setSize() argument
127 Utils.assertTrue(width >= 0 && height >= 0); in setSize()
131 mScreenHeight = height; in setSize()
136 gl.glViewport(0, 0, width, height); in setSize()
139 GLU.gluOrtho2D(gl, 0, width, 0, height); in setSize()
148 Matrix.translateM(matrix, 0, 0, height, 0); in setSize()
175 public void drawRect(float x, float y, float width, float height, GLPaint paint) { in drawRect() argument
183 scale(width, height, 1); in drawRect()
211 public void fillRect(float x, float y, float width, float height, int color) { in fillRect() argument
217 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/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/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/Contacts/src/com/android/contacts/widget/
DMultiShrinkScroller.java374 photoLayoutParams.height = mMaximumHeaderHeight; in initialize()
405 actionBarGradientLayoutParams.height = mActionBarSize; in configureGradientViewHeights()
412 titleGradientLayoutParams.height = (int) ((mMaximumHeaderTextSize in configureGradientViewHeights()
775 toolbarLayoutParams.height = delta; in setToolbarHeight()
784 return mToolbar.getLayoutParams().height; in getToolbarHeight()
791 public void setHeaderHeight(int height) { in setHeaderHeight() argument
794 toolbarLayoutParams.height = height; in setHeaderHeight()
802 return mToolbar.getLayoutParams().height; in getHeaderHeight()
893 final int height = getHeight(); in draw() local
903 height + getMaximumScrollUpwards() - getScroll()); in draw()
[all …]
/packages/apps/Launcher3/iconloaderlib/src/com/android/launcher3/icons/
DIconNormalizer.java167 float iconRatio = ((float) mBounds.width()) / mBounds.height(); in isShape()
181 mMatrix.setScale(mBounds.width(), mBounds.height()); in isShape()
221 float percentageDiffPixels = ((float) sum) / (mBounds.width() * mBounds.height()); in isTransparentBitmap()
251 int height = d.getIntrinsicHeight(); in getScale() local
252 if (width <= 0 || height <= 0) { in getScale()
254 height = height <= 0 || height > mMaxSize ? mMaxSize : height; in getScale()
255 } else if (width > mMaxSize || height > mMaxSize) { in getScale()
256 int max = Math.max(width, height); in getScale()
258 height = mMaxSize * height / max; in getScale()
262 d.setBounds(0, 0, width, height); in getScale()
[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/Gallery2/src/com/android/photos/data/
DGalleryBitmapPool.java71 private SparseArrayBitmapPool getPoolForDimensions(int width, int height) { in getPoolForDimensions() argument
72 int index = getPoolIndexForDimensions(width, height); in getPoolForDimensions()
80 private int getPoolIndexForDimensions(int width, int height) { in getPoolIndexForDimensions() argument
81 if (width <= 0 || height <= 0) { in getPoolIndexForDimensions()
84 if (width == height) { in getPoolIndexForDimensions()
88 if (width > height) { in getPoolIndexForDimensions()
89 min = height; in getPoolIndexForDimensions()
93 max = height; in getPoolIndexForDimensions()
127 public Bitmap get(int width, int height) { in get() argument
128 SparseArrayBitmapPool pool = getPoolForDimensions(width, height); in get()
[all …]
/packages/services/Car/evs/sampleDriver/
DbufferCopy.cpp75 const unsigned sizeY = strideLum * tgtBuff.height; in fillNV21FromNV21()
77 const unsigned sizeColor = strideColor * tgtBuff.height/2; in fillNV21FromNV21()
104 const unsigned sizeY = strideLum * tgtBuff.height; in fillNV21FromYUYV()
114 for (unsigned cellRow = 0; cellRow < tgtBuff.height/2; cellRow++) { in fillNV21FromYUYV()
148 unsigned height = tgtBuff.height; in fillRGBAFromYUYV() local
157 for (unsigned r=0; r<height; r++) { in fillRGBAFromYUYV()
182 unsigned height = tgtBuff.height; in fillYUYVFromYUYV() local
188 for (unsigned r=0; r<height; r++) { in fillYUYVFromYUYV()
197 unsigned height = tgtBuff.height; in fillYUYVFromUYVY() local
206 for (unsigned r=0; r<height; r++) { in fillYUYVFromUYVY()
/packages/apps/Gallery/src/com/android/camera/
DHighlightView.java91 float height = mDrawRect.height(); in draw() local
93 mDrawRect.top + (height / 2), in draw()
111 int height = mResizeDrawableDiagonal.getIntrinsicHeight(); in draw() local
118 + (mDrawRect.height() / 2) - d - height / 2; in draw()
249 dy * (mCropRect.height() / r.height())); in handleMotion()
261 float yDelta = dy * (mCropRect.height() / r.height()); in handleMotion()
309 if (dy > 0F && r.height() + 2 * dy > mImageRect.height()) { in growBy()
310 float adjustment = (mImageRect.height() - r.height()) / 2F; in growBy()
327 if (r.height() < heightCap) { in growBy()
328 r.inset(0F, -(heightCap - r.height()) / 2F); in growBy()
[all …]
/packages/apps/WallpaperPicker/src/com/android/gallery3d/glrenderer/
DGLES20Canvas.java237 public void setSize(int width, int height) { in setSize() argument
239 mHeight = height; in setSize()
243 Matrix.orthoM(mProjectionMatrix, 0, 0, width, 0, height, -1, 1); in setSize()
244 Matrix.translateM(mMatrices, mCurrentMatrixIndex, 0, height, 0); in setSize()
316 float height) { in draw() argument
317 setMatrix(params, x, y, width, height); in draw()
327 private void setMatrix(ShaderParameter[] params, float x, float y, float width, float height) { in setMatrix() argument
329 Matrix.scaleM(mTempMatrix, 0, width, height, 1f); in setMatrix()
336 public void drawTexture(BasicTexture texture, int x, int y, int width, int height) { in drawTexture() argument
337 if (width <= 0 || height <= 0) { in drawTexture()
[all …]
/packages/apps/Gallery2/src/com/android/photos/views/
DGalleryThumbnailView.java143 float height = getMeasuredHeight() / portSpaces; in onMeasure() local
144 mLargeColumnWidth = (int) (height / ASPECT_RATIO); in onMeasure()
146 height = getMeasuredHeight() / portSpaces; in onMeasure()
147 mSmallColumnWidth = (int) (height / ASPECT_RATIO); in onMeasure()
157 final int height = b - t; in onLayout() local
158 mLeftEdge.setSize(width, height); in onLayout()
159 mRightEdge.setSize(width, height); in onLayout()
438 final int height = getHeight(); in recycleOffscreenViews() local
440 final int clearBelow = height; in recycleOffscreenViews()
568 final int height = getHeight() - getPaddingTop() - getPaddingBottom(); in draw() local
[all …]

12345678910>>...29