Searched defs:height (Results 176 - 200 of 763) sorted by relevance

1234567891011>>

/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm11_asm/
H A Dh264bsd_interpolate_hor_ver_quarter.s49 height RN 5 label
110 LDR height, [sp,#0x21c] ;// height
113 CMP tmp5, height
120 LDR height, [sp,#0x21c] ;// height
123 STMIB sp, {height, tmpa} ;// sp+4 = height, sp+8 = partWidth+5
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_conceal.c130 u32 width, height; local
143 height = currImage->height;
176 H264SwDecMemset(currImage->data, 128, width*height*384);
178 H264SwDecMemcpy(currImage->data, refData, width*height*384);
225 for (i = row + 1; i < height; i++)
262 u32 width, height; local
282 ASSERT(row < currImage->height);
288 height = currImage->height;
[all...]
/frameworks/av/media/libstagefright/wifi-display/
H A DVideoFormats.h40 size_t width, height, framesPerSecond; member in struct:android::VideoFormats::config_t
91 size_t *width, size_t *height, size_t *framesPerSecond,
/frameworks/av/services/camera/libcameraservice/device3/
H A DCamera3OutputStream.h44 uint32_t height; member in struct:android::camera3::StreamInfo
62 height(h),
83 uint32_t width, uint32_t height, int format,
94 uint32_t width, uint32_t height, size_t maxSize, int format,
103 Camera3OutputStream(int id, uint32_t width, uint32_t height, int format,
177 uint32_t width, uint32_t height, int format,
H A DCamera3SharedOutputStream.cpp25 uint32_t width, uint32_t height, int format,
29 Camera3OutputStream(id, CAMERA3_STREAM_OUTPUT, width, height,
23 Camera3SharedOutputStream(int id, const std::vector<sp<Surface>>& surfaces, uint32_t width, uint32_t height, int format, uint32_t consumerUsage, android_dataspace dataSpace, camera3_stream_rotation_t rotation, nsecs_t timestampOffset, int setId) argument
/frameworks/base/apct-tests/perftests/core/src/android/view/
H A DViewShowHidePerfTest.java139 void run(BenchmarkState state, int width, int height, ViewGroup parent, View child); argument
150 final int height = 1000;
151 layout(width, height, parent);
153 callback.run(state, width, height, parent, mChild);
162 private void layout(int width, int height, View view) { argument
165 MeasureSpec.makeMeasureSpec(height, MeasureSpec.EXACTLY));
166 view.layout(0, 0, height, width);
171 testParentWithChild((state, width, height, parent, child) -> {
176 layout(width, height, child);
187 testParentWithChild((state, width, height, paren
[all...]
/frameworks/base/core/java/android/gesture/
H A DGesture.java142 public Path toPath(int width, int height, int edge, int numSample) { argument
143 return toPath(null, width, height, edge, numSample);
146 public Path toPath(Path path, int width, int height, int edge, int numSample) { argument
153 path.addPath(strokes.get(i).toPath(width - 2 * edge, height - 2 * edge, numSample));
179 * @param height height of the target bitmap
185 public Bitmap toBitmap(int width, int height, int edge, int numSample, int color) { argument
186 final Bitmap bitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
204 Path path = strokes.get(i).toPath(width - 2 * edge, height - 2 * edge, numSample);
215 * @param height
220 toBitmap(int width, int height, int inset, int color) argument
[all...]
H A DGestureStroke.java155 * @param height the height of the bounding box of the target path
160 public Path toPath(float width, float height, int numSample) { argument
167 float sy = height / rect.height();
/frameworks/base/core/java/android/hardware/camera2/params/
H A DMeteringRectangle.java29 * An immutable class to represent a rectangle {@code (x, y, width, height)} with an additional
39 * android.sensor.info.activeArraySize.height - 1)} being the bottom-right pixel in the active pixel
86 * @param height height >= 0
91 public MeteringRectangle(int x, int y, int width, int height, int meteringWeight) { argument
95 mHeight = checkArgumentNonnegative(height, "height must be nonnegative");
106 * @param dimensions a non-{@code null} {@link android.util.Size Size} with width, height >= 0
119 mHeight = checkArgumentNonnegative(dimensions.getHeight(), "height must be nonnegative");
140 mHeight = checkArgumentNonnegative(rect.height(), "rec
[all...]
/frameworks/base/core/java/android/view/
H A DHardwareLayer.java100 * return false if the requested width/height cannot be satisfied
103 * @param height The new height of this layer
109 public boolean prepare(int width, int height, boolean isOpaque) { argument
110 return nPrepare(mFinalizer.get(), width, height, isOpaque);
148 private static native boolean nPrepare(long layerUpdater, int width, int height, boolean isOpaque); argument
H A DSurfaceHolder.java90 * @param height The new height of the surface.
93 int height);
187 * @param height The surface's height.
189 public void setFixedSize(int width, int height); argument
92 surfaceChanged(SurfaceHolder holder, int format, int width, int height) argument
/frameworks/base/core/java/android/view/animation/
H A DRotateAnimation.java178 public void initialize(int width, int height, int parentWidth, int parentHeight) { argument
179 super.initialize(width, height, parentWidth, parentHeight);
181 mPivotY = resolveSize(mPivotYType, mPivotYValue, height, parentHeight);
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/core/java/android/widget/
H A DAbsoluteLayout.java90 // Check against minimum height and width
101 * a height of {@link android.view.ViewGroup.LayoutParams#WRAP_CONTENT}
170 * height and location.
174 * @param height the height, either {@link #MATCH_PARENT},
179 public LayoutParams(int width, int height, int x, int y) { argument
180 super(width, height);
222 + sizeToString(width) + ", height=" + sizeToString(height)
/frameworks/base/core/java/com/android/internal/widget/
H A DMessagingLinearLayout.java46 * The maximum height allowed.
86 // up to a maximum height.
157 // Need to redo the height because it may change due to changing indents.
184 targetHeight - child.getMeasuredHeight(), lp.height);
279 LayoutParams copy = new LayoutParams(lp.width, lp.height);
317 public LayoutParams(int width, int height) { argument
318 super(width, height);
/frameworks/base/graphics/java/android/graphics/
H A DBitmapRegionDecoder.java207 /** Returns the original image's height */
264 int start_x, int start_y, int width, int height,
263 nativeDecodeRegion(long lbm, int start_x, int start_y, int width, int height, BitmapFactory.Options options) argument
H A DMovie.java34 public native int height(); method in class:Movie
H A DYuvImage.java28 * region by left, top, width and height.
61 * The height of the the image.
72 * @param height The height of the YuvImage.
76 * @throws IllegalArgumentException if format is not support; width or height <= 0; or yuv is
79 public YuvImage(byte[] yuv, int format, int width, int height, int[] strides) { argument
87 if (width <= 0 || height <= 0) {
89 "width and height must large than 0");
105 mHeight = height;
142 rectangle.height(), offset
237 nativeCompressToJpeg(byte[] oriYuv, int format, int width, int height, int[] offsets, int[] strides, int quality, OutputStream stream, byte[] tempStorage) argument
[all...]
/frameworks/base/libs/hwui/
H A DDeferredLayerUpdater.h51 ANDROID_API bool setSize(int width, int height) { argument
52 if (mWidth != width || mHeight != height) {
54 mHeight = height;
H A DLayerBuilder.h75 LayerBuilder(uint32_t width, uint32_t height, const Rect& repaintRect) argument
76 : LayerBuilder(width, height, repaintRect, nullptr, nullptr) {};
80 LayerBuilder(uint32_t width, uint32_t height,
108 const uint32_t height; member in class:android::uirenderer::LayerBuilder
H A DPixelBuffer.h68 static PixelBuffer* create(GLenum format, uint32_t width, uint32_t height,
107 virtual void upload(uint32_t x, uint32_t y, uint32_t width, uint32_t height, int offset) = 0;
117 void upload(uint32_t x, uint32_t y, uint32_t width, uint32_t height) { argument
118 upload(x, y, width, height, getOffset(x, y));
129 * Returns the height of the render buffer in pixels.
190 PixelBuffer(GLenum format, uint32_t width, uint32_t height): argument
191 mFormat(format), mWidth(width), mHeight(height), mAccessMode(kAccessMode_None) {
/frameworks/base/libs/hwui/hwui/
H A DBitmap.h71 int height() const { return info().height(); } function in class:android::Bitmap
/frameworks/base/libs/hwui/renderstate/
H A DOffscreenBufferPool.h39 * texture.width/.height are actual allocated texture size. Texture will tend to be larger than the
40 * viewport bounds, since textures are always allocated with width / height as a multiple of 64, for
93 const uint32_t width, const uint32_t height);
96 const uint32_t width, const uint32_t height);
127 , height(OffscreenBuffer::computeIdealDimension(layerHeight)) {}
132 , height(layer->texture.height()) {
151 uint32_t height = 0; member in struct:android::uirenderer::OffscreenBufferPool::Entry
/frameworks/base/libs/hwui/tests/macrobench/
H A DTestSceneRunner.cpp126 const int height = gDisplay.h; local
129 sp<RenderNode> rootNode = TestUtils::createNode(0, 0, width, height,
130 [&scene, width, height](RenderProperties& props, Canvas& canvas) {
132 scene->createContent(width, height, canvas);
/frameworks/base/libs/hwui/utils/
H A DBlur.cpp95 const uint8_t* source, uint8_t* dest, int32_t width, int32_t height) {
99 for (int32_t y = 0; y < height; y ++) {
139 const uint8_t* source, uint8_t* dest, int32_t width, int32_t height) {
143 for (int32_t y = 0; y < height; y ++) {
151 if (y > radius && y < (height - radius)) {
166 if (validH > height - 1) {
167 validH = height - 1;
94 horizontal(float* weights, int32_t radius, const uint8_t* source, uint8_t* dest, int32_t width, int32_t height) argument
138 vertical(float* weights, int32_t radius, const uint8_t* source, uint8_t* dest, int32_t width, int32_t height) argument

Completed in 224 milliseconds

1234567891011>>