Searched defs:width (Results 226 - 250 of 710) sorted by relevance

1234567891011>>

/frameworks/rs/java/tests/LivePreview/src/com/android/rs/livepreview/
H A DRsYuv.java68 void reset(int width, int height) { argument
73 android.util.Log.v("cpa", "reset " + width + ", " + height);
75 mWidth = width;
127 public void onSurfaceTextureAvailable(SurfaceTexture surface, int width, int height) { argument
134 public void onSurfaceTextureSizeChanged(SurfaceTexture surface, int width, int height) { argument
/frameworks/rs/java/tests/RsTest_11/src/com/android/rs/test/
H A DRSTestCore.java56 public void init(RenderScriptGL rs, Resources res, int width, int height) { argument
59 mWidth = width;
/frameworks/rs/java/tests/RsTest_14/src/com/android/rs/test/
H A DRSTestCore.java56 public void init(RenderScriptGL rs, Resources res, int width, int height) { argument
59 mWidth = width;
/frameworks/rs/java/tests/RsTest_16/src/com/android/rs/test/
H A DRSTestCore.java56 public void init(RenderScriptGL rs, Resources res, int width, int height) { argument
59 mWidth = width;
/frameworks/rs/java/tests/SampleTest/src/com/android/rs/sample/
H A DSampleRSActivity.java55 public void onSurfaceTextureSizeChanged(SurfaceTexture surface, int width, int height) { argument
61 public void onSurfaceTextureAvailable(SurfaceTexture surface, int width, int height) { argument
/frameworks/support/design/tests/src/android/support/design/widget/
H A DNavigationViewTest.java236 public TestDrawable(@ColorInt int color, int width, int height) { argument
238 mWidth = width;
/frameworks/support/percent/src/android/support/percent/
H A DPercentFrameLayout.java67 * You can also make one dimension be a fraction of the other by setting only width or height and
74 * This will make the aspect ratio 16:9 (1.78:1) with the width fixed at 300dp and height adjusted
126 public LayoutParams(int width, int height) { argument
127 super(width, height);
130 public LayoutParams(int width, int height, int gravity) { argument
131 super(width, height, gravity);
H A DPercentRelativeLayout.java67 * You can also make one dimension be a fraction of the other by setting only width or height and
74 * This will make the aspect ratio 16:9 (1.78:1) with the width fixed at 300dp and height adjusted
126 public LayoutParams(int width, int height) { argument
127 super(width, height);
/frameworks/webview/chromium/plat_support/
H A Ddraw_gl.h55 // Input: current width/height of destination surface.
56 int width; member in struct:AwDrawGLInfo
/frameworks/wilhelm/src/itf/
H A DI3DMacroscopic.c23 SLmillimeter width, SLmillimeter height, SLmillimeter depth)
27 if (!((0 <= width) && (width <= SL_MILLIMETER_MAX) &&
34 thiz->mSize.mWidth = width;
55 SLmillimeter width = thiz->mSize.mWidth; local
59 *pWidth = width;
22 I3DMacroscopic_SetSize(SL3DMacroscopicItf self, SLmillimeter width, SLmillimeter height, SLmillimeter depth) argument
/frameworks/av/cmds/screenrecord/
H A DOverlay.cpp143 int width = mEglWindow.getWidth(); local
146 glViewport(0, 0, width, height);
164 mTextRenderer.setScreenSize(width, height);
178 mGlConsumer->setDefaultBufferSize(width, height);
220 int width = mEglWindow.getWidth(); local
224 100, 100, width-200, height-200);
227 0, 0, width, height);
234 100, 100, width-200, height-200);
296 int width = window.getWidth(); local
298 glViewport(0, 0, width, heigh
331 int width = window.getWidth(); local
[all...]
/frameworks/av/cmds/stagefright/
H A Dmuxer.cpp122 int width , height; local
123 CHECK(format->findInt32("width", &width));
125 bufferSize = width * height * 4; // Assuming it is maximally 4BPP
H A Drecordvideo.cpp49 fprintf(stderr, " -w width in pixels (default: 176)\n");
62 DummySource(int width, int height, int nFrames, int fps, int colorFormat) argument
63 : mWidth(width),
68 mSize((width * height * 3) / 2) {
168 int width = 176; local
219 width = atoi(optarg);
273 new DummySource(width, height, nFrames, frameRateFps, colorFormat);
287 enc_meta->setInt32("width", width);
291 enc_meta->setInt32("stride", width);
[all...]
/frameworks/av/drm/libmediadrm/
H A DCrypto.cpp264 void Crypto::notifyResolution(uint32_t width, uint32_t height) { argument
268 mPlugin->notifyResolution(width, height);
/frameworks/av/media/libmedia/
H A DICrypto.cpp163 uint32_t width, uint32_t height) {
166 data.writeInt32(width);
396 int32_t width = data.readInt32(); local
398 notifyResolution(width, height);
162 notifyResolution( uint32_t width, uint32_t height) argument
H A Dmediarecorder.cpp306 status_t MediaRecorder::setVideoSize(int width, int height) argument
308 ALOGV("setVideoSize(%d, %d)", width, height);
322 status_t ret = mMediaRecorder->setVideoSize(width, height);
/frameworks/av/media/libmediaplayerservice/
H A DMediaRecorderClient.cpp175 status_t MediaRecorderClient::setVideoSize(int width, int height) argument
177 ALOGV("setVideoSize(%dx%d)", width, height);
183 return mRecorder->setVideoSize(width, height);
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DHTTPLiveSource.cpp298 int32_t width; local
301 format->findInt32("width", &width) && format->findInt32("height", &height)) {
/frameworks/av/media/libnbaio/
H A DNBLog.cpp351 size_t width = 1; local
353 ++width;
357 timestamp.appendFormat("[%*s]", (int) width + 4, "");
/frameworks/av/media/libstagefright/
H A DCameraSourceTimeLapse.cpp89 mVideoWidth = videoSize.width;
92 if (OK == mInitCheck && !trySettingVideoSize(videoSize.width, videoSize.height)) {
125 int32_t width, int32_t height) {
143 int32_t pictureWidth = supportedSizes[i].width;
146 if ((pictureWidth == width) && (pictureHeight == height)) {
153 ALOGV("Video size (%d, %d) is supported", width, height);
155 params.setVideoSize(width, height);
157 params.setPreviewSize(width, height);
162 ALOGE("Failed to set preview size to %dx%d", width, height);
124 trySettingVideoSize( int32_t width, int32_t height) argument
H A DJPEGSource.cpp207 uint16_t width, height; local
209 || !mSource->getUInt16(i + 3, &width)) {
213 mWidth = width;
/frameworks/av/media/libstagefright/codecs/aacenc/src/
H A Dbit_cnt.c43 const Word16 width,
58 for(i=0;i<width;i+=4){
119 const Word16 width,
133 for(i=0;i<width;i+=4){
193 const Word16 width,
207 for(i=0;i<width;i+=2){
250 const Word16 width,
262 for(i=0;i<width;i+=2){
298 const Word16 width,
310 for(i=0;i<width;
42 count1_2_3_4_5_6_7_8_9_10_11(const Word16 *values, const Word16 width, Word16 *bitCount) argument
118 count3_4_5_6_7_8_9_10_11(const Word16 *values, const Word16 width, Word16 *bitCount) argument
192 count5_6_7_8_9_10_11(const Word16 *values, const Word16 width, Word16 *bitCount) argument
249 count7_8_9_10_11(const Word16 *values, const Word16 width, Word16 *bitCount) argument
297 count9_10_11(const Word16 *values, const Word16 width, Word16 *bitCount) argument
345 count11(const Word16 *values, const Word16 width, Word16 *bitCount) argument
386 countEsc(const Word16 *values, const Word16 width, Word16 *bitCount) argument
469 bitCount(const Word16 *values, const Word16 width, Word16 maxVal, Word16 *bitCount) argument
495 codeValues(Word16 *values, Word16 width, Word16 codeBook, HANDLE_BIT_BUF hBitstream) argument
[all...]
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/include/
H A Dmp4dec_api.h130 int16 width; /* Width */ member in struct:tagVideoRefCopyInfoData
132 int16 realWidth; /* Non-padded width, not a multiple of 16. */
150 OSCL_IMPORT_REF Bool PVInitVideoDecoder(VideoDecControls *decCtrl, uint8 *volbuf[], int32 *volbuf_size, int nLayers, int width, int height, MP4DecodingMode mode);
151 Bool PVAllocVideoData(VideoDecControls *decCtrl, int width, int height, int nLayers);
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dblock_idct.cpp123 static void idctrow(int16 *blk, uint8 *pred, uint8 *dst, int width);
124 static void idctrow_intra(int16 *blk, PIXEL *, int width);
231 int width, width_uv; local
233 width = video->width;
234 width_uv = width >> 1;
235 offset = (int32)(y_pos << 4) * width + (x_pos << 4);
241 BlockIDCT_intra(mblock, c_comp, 0, width);
242 BlockIDCT_intra(mblock, c_comp + 8, 1, width);
243 BlockIDCT_intra(mblock, c_comp + (width <<
250 BlockIDCT_intra( MacroBlock *mblock, PIXEL *c_comp, int comp, int width) argument
323 Copy_Blk_to_Vop(uint8 *dst, uint8 *pred, int width) argument
348 BlockIDCT( uint8 *dst, uint8 *pred, int16 *coeff_in, int width, int nz_coefs, uint8 *bitmapcol, uint8 bitmaprow ) argument
[all...]
H A Dcombined_decode.cpp539 int width = video->width; local
555 int32 offset = (int32)(y_pos << 4) * width + (x_pos << 4);
677 BlockIDCT(c_comp + (comp&2)*(width << 2) + 8*(comp&1), mblock->pred_block + (comp&2)*64 + 8*(comp&1), mblock->block[comp], width, ncoeffs[comp],
707 BlockIDCT(video->currVop->uChan + (offset >> 2) + (x_pos << 2), mblock->pred_block + 256, mblock->block[4], width >> 1, ncoeffs[4],
731 BlockIDCT(video->currVop->vChan + (offset >> 2) + (x_pos << 2), mblock->pred_block + 264, mblock->block[5], width >> 1, ncoeffs[5],
759 BlockIDCT(c_comp + (comp&2)*(width << 2) + 8*(comp&1), mblock->pred_block + (comp&2)*64 + 8*(comp&1), mblock->block[comp], width, ncoeffs[comp],
785 BlockIDCT(video->currVop->uChan + (offset >> 2) + (x_pos << 2), mblock->pred_block + 256, mblock->block[4], width >>
[all...]

Completed in 353 milliseconds

1234567891011>>