Searched defs:height (Results 101 - 125 of 574) sorted by relevance

1234567891011>>

/frameworks/base/tests/AccessoryDisplay/sink/src/com/android/accessorydisplay/sink/
H A DUsbHid.java38 public Multitouch(int reportId, int maxContacts, int width, int height) { argument
42 mHeight = height;
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/
H A Dsobeloperator.cpp42 void computeGradient(unsigned char* dataPtr, int width, int height, short* gxPtr, short* gyPtr) { argument
43 for (int i = 0; i < height; i++) {
49 const int below = (i < height - 1) ? curr + 4 * width : curr;
66 JNIEnv* env, jclass clazz, jint width, jint height, jobject imageBuffer,
78 int numPixels = width * height;
82 computeGradient(srcPtr, width, height, gxPtr, gyPtr);
65 Java_androidx_media_filterpacks_image_SobelFilter_sobelOperator( JNIEnv* env, jclass clazz, jint width, jint height, jobject imageBuffer, jobject magBuffer, jobject dirBuffer) argument
H A Dstats_scorer.cpp44 JNIEnv* env, jobject thiz, jobject imageBuffer, jint width, jint height,
50 int yStart = static_cast<int>(height * top);
51 int yEnd = static_cast<int>(height * bottom);
43 Java_androidx_media_filterpacks_numeric_StatsFilter_regionscore( JNIEnv* env, jobject thiz, jobject imageBuffer, jint width, jint height, jfloat left, jfloat top, jfloat right, jfloat bottom, jfloatArray statsArray) argument
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DSobelFilter.java168 private static native boolean sobelOperator(int width, int height, argument
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DCanvasTextureViewActivity.java50 public void onSurfaceTextureAvailable(SurfaceTexture surface, int width, int height) { argument
56 public void onSurfaceTextureSizeChanged(SurfaceTexture surface, int width, int height) { argument
H A DHardwareCanvasSurfaceViewActivity.java59 public void surfaceChanged(SurfaceHolder holder, int format, int width, int height) { argument
60 mThread.setSize(width, height);
77 void setSize(int width, int height) { argument
79 mHeight = height;
H A DHardwareCanvasTextureViewActivity.java51 public void onSurfaceTextureAvailable(SurfaceTexture surface, int width, int height) { argument
57 public void onSurfaceTextureSizeChanged(SurfaceTexture surface, int width, int height) { argument
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/testapp/
H A DSimpleAppRS.java47 public void init(RenderScriptGL rs, Resources res, int width, int height) { argument
51 mSceneManager.initRS(mRS, mRes, width, height);
/frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
H A DSize.java71 flatSizes.add(s.height());
87 int height = Integer.parseInt(flatSizes[i + 1]);
88 list.add(new Size(width,height));
98 public Size(int width, int height) { argument
99 val = new Point(width, height);
109 val = new Point(other.width(), other.height());
122 val = new Point(other.width, other.height);
156 public int height() { method in class:Size
176 return "Size: (" + this.width() + " x " + this.height() + ")";
/frameworks/native/include/gui/
H A DCpuConsumer.h49 uint32_t height; member in struct:android::CpuConsumer::LockedBuffer
83 // requestBuffers when a width and height of zero is requested.
86 status_t setDefaultBufferSize(uint32_t width, uint32_t height);
/frameworks/native/include/ui/
H A DANativeObjectBase.h33 int32_t height; member in struct:egl_native_pixmap_t
/frameworks/native/opengl/tests/gl2_java/src/com/android/gl2java/
H A DGL2JavaView.java79 public void onSurfaceChanged(GL10 gl, int width, int height) { argument
80 GLES20.glViewport(0, 0, width, height);
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DTexture.cpp50 void Texture::setDimensions(size_t width, size_t height) { argument
52 mHeight = height;
/frameworks/support/v4/java/android/support/v4/widget/
H A DEdgeEffectCompat.java46 public void setSize(Object edgeEffect, int width, int height); argument
63 public void setSize(Object edgeEffect, int width, int height) { argument
95 public void setSize(Object edgeEffect, int width, int height) { argument
96 EdgeEffectCompatIcs.setSize(edgeEffect, width, height);
140 * @param height Effect height in pixels
142 public void setSize(int width, int height) { argument
143 IMPL.setSize(mEdgeEffect, width, height);
211 * 1.f of height.
/frameworks/av/cmds/screenrecord/
H A DFrameOutput.cpp43 status_t FrameOutput::createInputSurface(int width, int height, argument
47 err = mEglWindow.createPbuffer(width, height);
53 glViewport(0, 0, width, height);
76 mGlConsumer->setDefaultBufferSize(width, height);
82 mPixelBuf = new uint8_t[width * height * kGlBytesPerPixel];
124 int height = mEglWindow.getHeight(); local
126 width, height, true);
139 glReadPixels(0, 0, width, height, GL_RGBA, GL_UNSIGNED_BYTE, mPixelBuf);
147 reduceRgbaToRgb(mPixelBuf, width * height);
155 size_t rgbDataLen = width * height * kOutBytesPerPixe
[all...]
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dchvr_filter.cpp26 int height,
51 /* Calculate the width and height of the area in blocks (divide by 8) */
53 pp_h = (height >> 3);
23 CombinedHorzVertRingFilter( uint8 *rec, int width, int height, int16 *QP_store, int chr, uint8 *pp_mod) argument
H A Dconceal.cpp123 CopyVopMB(video->currVop, video->concealFrame, i, video->width, video->height);
138 void CopyVopMB(Vop *curr, uint8 *prevFrame, int mbnum, int width_Y, int height) argument
152 size = (int32)height * width_Y;
H A Dpost_filter.cpp43 int width, height; local
51 height = video->height;
52 size = (int32)width * height;
75 CombinedHorzVertRingFilter(output, width, height, QP_store, 0, pp_mod);
83 CombinedHorzVertFilter(output, width, height,
88 CombinedHorzVertFilter_NoSoftDeblocking(output, width, height,
94 Deringing_Luma(output, width, height, QP_store,
107 CombinedHorzVertRingFilter(output, (int)(width >> 1), (int)(height >> 1), QP_store, (int) 1, pp_mod);
116 (int)(height >>
176 H263_Deblock(uint8 *rec, int width, int height, int16 *QP_store, uint8 *mode, int chr, int annex_T) argument
[all...]
/frameworks/av/media/libstagefright/codecs/on2/dec/
H A DSoftVPX.cpp39 320 /* width */, 240 /* height */, callbacks, appData, component),
142 uint32_t height = mImg->d_h; local
144 handlePortSettingsChange(&portWillReset, width, height);
150 outHeader->nFilledLen = (width * height * 3) / 2;
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm11_asm/
H A Dh264bsd_interpolate_chroma_hor.s48 height RN 5 label
83 ;// u32 height, : 0xfc
105 LDR height, [sp, #0xfc] ;// height
107 CMP tmp6, height
112 LDR height, [sp, #0xfc] ;// height
115 STMIA sp,{width,height,tmp8,chrPH,tmp2}
122 STMIA sp,{width,height,tmp8,chrPH,tmp2}
124 MLA ref, height, widt
[all...]
H A Dh264bsd_interpolate_chroma_hor_ver.s50 height RN 5 label
84 ;// u32 height, : 0xfc
108 LDR height, [sp, #0xfc] ;// height
111 CMP tmp1, height
116 LDR height, [sp, #0xfc] ;// height
120 STMIA sp,{width,height,tmp1,tmp2,tmp3}
127 STMIA sp,{width,height,tmp1,tmp2,tmp3}
129 MLA ref, height, widt
[all...]
H A Dh264bsd_interpolate_chroma_ver.s47 height RN 5 label
82 ;// u32 height, : 0xfc
103 LDR height, [sp, #0xfc] ;// height
106 CMP tmp1, height
111 LDR height, [sp, #0xfc] ;// height
114 STMIA sp,{width,height,chrPW,tmp1,tmp2}
121 STMIA sp,{width,height,chrPW,tmp1,tmp2}
123 MLA ref, height, widt
[all...]
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,

Completed in 283 milliseconds

1234567891011>>