Searched refs:height (Results 276 - 300 of 1236) sorted by relevance

<<11121314151617181920>>

/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DStatsFilter.java81 private void calcMeanAndStd(ByteBuffer pixelBuffer, int width, int height, Quad quad) { argument
84 regionscore(pixelBuffer, width, height, quad.topLeft().x, quad.topLeft().y,
114 private native void regionscore(ByteBuffer imageBuffer, int width, int height, float left, argument
H A DSurfaceHolderTarget.java48 public void surfaceChanged(SurfaceHolder holder, int format, int width, int height) {
154 surfRect.height());
170 if (targetRect.width() > 0 && targetRect.height() > 0) {
171 canvas.scale(surfaceRect.width(), surfaceRect.height());
/frameworks/rs/driver/
H A DrsdFrameBufferObj.cpp131 EGLint width, height; local
133 eglQuerySurface(dc->gl.egl.display, dc->gl.egl.surface, EGL_HEIGHT, &height);
134 RSD_CALL_GL(glViewport, 0, 0, width, height);
/frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
H A DBlur25.java68 int height = mInPixelsAllocation.getType().getY();
78 tb.setY(height);
84 mScript.set_height(height);
/frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
H A DBlur25.java68 int height = mInPixelsAllocation.getType().getY();
78 tb.setY(height);
84 mScript.set_height(height);
/frameworks/av/media/libstagefright/
H A DCameraSource.cpp152 size.height = -1;
205 mVideoSize.height = -1;
247 * Check to see whether the requested video width and height is one
250 * @param height the video frame height in pixels
252 * @return true if the dimension (width and height) is supported.
255 int32_t width, int32_t height,
261 height == supportedSizes[i].height) {
318 * (width and height) an
254 isVideoSizeSupported( int32_t width, int32_t height, const Vector<Size>& supportedSizes) argument
331 configureCamera( CameraParameters* params, int32_t width, int32_t height, int32_t frameRate) argument
407 checkVideoSize( const CameraParameters& params, int32_t width, int32_t height) argument
530 initBufferQueue(uint32_t width, uint32_t height, uint32_t format, android_dataspace dataSpace, uint32_t bufferCount) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DScrollView.java308 * Indicates this ScrollView whether it should stretch its content height to fill
311 * @param fillViewport True to stretch the content's height to the viewport's
1005 int height = getHeight();
1008 mTempRect.top = getScrollY() + height;
1012 if (mTempRect.top + height > view.getBottom()) {
1013 mTempRect.top = view.getBottom() - height;
1017 mTempRect.top = getScrollY() - height;
1022 mTempRect.bottom = mTempRect.top + height;
1041 int height = getHeight();
1044 mTempRect.bottom = height;
1165 isWithinDeltaOfScreen(View descendant, int delta, int height) argument
[all...]
H A DActionMenuView.java461 int height = v.getMeasuredHeight();
471 int t = midVertical - (height / 2);
472 int b = t + height;
492 final int height = v.getMeasuredHeight();
495 final int t = midVertical - height / 2;
496 v.layout(l, t, l + width, t + height);
514 int height = v.getMeasuredHeight();
515 int t = midVertical - height / 2;
516 v.layout(startRight - width, t, startRight, t + height);
530 int height
826 LayoutParams(int width, int height) argument
832 LayoutParams(int width, int height, boolean isOverflowButton) argument
[all...]
/frameworks/av/cmds/screenrecord/
H A DEglWindow.h48 status_t createPbuffer(int width, int height);
50 // Return width and height values (obtained from IGBP).
H A DFrameOutput.h41 status_t createInputSurface(int width, int height,
/frameworks/av/include/media/
H A DIRemoteDisplayClient.h52 uint32_t width, uint32_t height, uint32_t flags, uint32_t session) = 0; // one-way
/frameworks/av/services/camera/libcameraservice/
H A DCameraFlashlight.h142 int32_t height);
149 int32_t *height);
197 int32_t width, int32_t height);
203 status_t getSmallestSurfaceSize(int32_t *width, int32_t *height);
/frameworks/av/services/camera/libcameraservice/common/
H A DCameraDeviceBase.h107 * For HAL_PIXEL_FORMAT_BLOB formats, the width and height should be the
111 uint32_t width, uint32_t height, int format,
116 * Create an input stream of width, height, and format.
120 virtual status_t createInputStream(uint32_t width, uint32_t height,
133 uint32_t *width, uint32_t *height,
187 virtual ssize_t getJpegBufferSize(uint32_t width, uint32_t height) const = 0;
/frameworks/base/core/java/android/view/animation/
H A DTranslateAnimation.java171 public void initialize(int width, int height, int parentWidth, int parentHeight) { argument
172 super.initialize(width, height, parentWidth, parentHeight);
175 mFromYDelta = resolveSize(mFromYType, mFromYValue, height, parentHeight);
176 mToYDelta = resolveSize(mToYType, mToYValue, height, parentHeight);
/frameworks/base/libs/hwui/font/
H A DFont.cpp138 int height = (int) glyph->mBitmapHeight; local
152 if (bounds->top < nPenY + height) {
153 bounds->top = nPenY + height;
160 float height = (float) glyph->mBitmapHeight; local
163 float nPenY = y + glyph->mBitmapTop + height;
172 nPenX + width, nPenY - height, u2, v1,
173 nPenX, nPenY - height, u1, v1, glyph->mCacheTexture);
179 float height = (float) glyph->mBitmapHeight; local
182 p[0].iset(glyph->mBitmapLeft, glyph->mBitmapTop + height);
183 p[1].iset(glyph->mBitmapLeft + width, glyph->mBitmapTop + height);
240 const float height = glyph->mBitmapHeight; local
[all...]
/frameworks/base/libs/hwui/tests/common/scenes/
H A DHwLayerAnimation.cpp31 void createContent(int width, int height, TestCanvas& canvas) override {
H A DOvalAnimation.cpp31 void createContent(int width, int height, TestCanvas& canvas) override {
/frameworks/base/media/java/android/media/projection/
H A DMediaProjection.java101 int width, int height, int dpi, boolean isSecure, @Nullable Surface surface,
105 return dm.createVirtualDisplay(this, name, width, height, dpi, surface,
117 * @param height The height of the virtual display in pixels. Must be
134 int width, int height, int dpi, int flags, @Nullable Surface surface,
138 this, name, width, height, dpi, surface, flags, callback, handler);
100 createVirtualDisplay(@onNull String name, int width, int height, int dpi, boolean isSecure, @Nullable Surface surface, @Nullable VirtualDisplay.Callback callback, @Nullable Handler handler) argument
133 createVirtualDisplay(@onNull String name, int width, int height, int dpi, int flags, @Nullable Surface surface, @Nullable VirtualDisplay.Callback callback, @Nullable Handler handler) argument
/frameworks/base/media/jni/
H A Dandroid_media_Utils.cpp619 width = (buffer->width + buffer->stride * (buffer->height - 1)) * 4;
681 dataSize = buffer->stride * (buffer->height - 1) + buffer->width;
685 dataSize = buffer->chromaStride * (buffer->height / 2 - 1) +
691 cr = buffer->data + (buffer->stride * buffer->height);
694 ySize = buffer->width * (buffer->height - 1) + buffer->width;
695 cSize = buffer->width * (buffer->height / 2 - 1) + buffer->width - 1;
713 ySize = buffer->stride * buffer->height;
716 cSize = cStride * buffer->height / 2;
734 dataSize = buffer->stride * buffer->height;
744 dataSize = buffer->stride * buffer->height * bytesPerPixe
[all...]
/frameworks/base/media/mca/filterfw/jni/
H A Djni_gl_frame.h31 jint height);
39 jint height);
47 jint height);
94 jint height);
/frameworks/base/packages/PrintSpooler/jni/
H A Dcom_android_printspooler_util_BitmapSerializeUtils.cpp107 if (readInfo.width != targetInfo.width || readInfo.height != targetInfo.height
123 size_t byteCount = readInfo.stride * readInfo.height;
162 size_t byteCount = info.stride * info.height;
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DHardwareCanvasSurfaceViewActivity.java96 public void surfaceChanged(SurfaceHolder holder, int format, int width, int height) { argument
97 mThread.setSize(width, height);
114 void setSize(int width, int height) { argument
116 mHeight = height;
/frameworks/minikin/include/minikin/
H A DMinikinFontFreeType.h34 int height; member in struct:android::GlyphBitmap
/frameworks/native/include/input/
H A DVirtualKeyMap.h39 int32_t height; member in struct:android::VirtualKeyDefinition
/frameworks/native/libs/gui/
H A DISurfaceComposerClient.cpp57 uint32_t height, PixelFormat format, uint32_t flags,
64 data.writeUint32(height);
115 uint32_t height = data.readUint32(); local
120 status_t result = createSurface(name, width, height, format,
56 createSurface(const String8& name, uint32_t width, uint32_t height, PixelFormat format, uint32_t flags, sp<IBinder>* handle, sp<IGraphicBufferProducer>* gbp) argument

Completed in 1224 milliseconds

<<11121314151617181920>>