/external/webrtc/talk/media/webrtc/ |
simulcast.cc | 40 int width; member in struct:cricket::SimulcastFormat 85 void MaybeExchangeWidthHeight(int* width, int* height) { 86 // |kSimulcastFormats| assumes |width| >= |height|. If not, exchange them 88 if (*width < *height) { 89 int temp = *width; 90 *width = *height; 95 int FindSimulcastFormatIndex(int width, int height) { 96 MaybeExchangeWidthHeight(&width, &height); 99 if (width >= kSimulcastFormats[i].width & [all...] |
/external/libyuv/files/source/ |
row_mips.cc | 384 int width) { 388 "srl $t4, %[width], 4 \n" // multiplies of 16 390 " andi %[width], %[width], 0xf \n" // residual 423 "beqz %[width], 3f \n" 430 "addiu %[width], %[width], -1 \n" 434 "bgtz %[width], 2b \n" 440 [width] "+r" (width), [all...] |
/external/mesa3d/src/mesa/drivers/dri/intel/ |
intel_pixel_draw.c | 44 GLsizei width, GLsizei height, 51 _swrast_DrawPixels(ctx, x, y, width, height, format, type, 56 _mesa_meta_DrawPixels(ctx, x, y, width, height, format, type,
|
/external/pdfium/xfa/src/fxbarcode/ |
BC_Dimension.cpp | 27 CBC_Dimension::CBC_Dimension(int32_t width, int32_t height, int32_t& e) {
28 if (width < 0 || height < 0) {
31 m_width = width;
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowCameraSize.java | 14 public void __constructor__(Camera camera, int width, int height) { 15 realCameraSize.width = width;
|
/external/webrtc/talk/app/webrtc/java/android/org/webrtc/ |
GlTextureFrameBuffer.java | 42 private int width; field in class:GlTextureFrameBuffer 61 this.width = 0; 85 public void setSize(int width, int height) { 86 if (width == 0 || height == 0) { 87 throw new IllegalArgumentException("Invalid size: " + width + "x" + height); 89 if (width == this.width && height == this.height) { 92 this.width = width; 102 GLES20.glTexImage2D(GLES20.GL_TEXTURE_2D, 0, pixelFormat, width, height, 0, pixelFormat [all...] |
/cts/hostsidetests/sustainedperf/shadertoy_android/jni/ |
hooks_android.cpp | 19 extern void Init(int width, int height);
24 JNIEXPORT void JNICALL Java_com_android_gputest_GLtestLib_init(JNIEnv * env, jobject obj, jint width, jint height);
28 JNIEXPORT void JNICALL Java_com_android_gputest_GLtestLib_init(__attribute__((unused)) JNIEnv * env,__attribute__((unused)) jobject obj, jint width, jint height)
30 Init(width, height);
|
/cts/tests/tests/uirendering/src/android/uirendering/cts/bitmapcomparers/ |
PassComparer.java | 23 public boolean verifySame(int[] ideal, int[] given, int offset, int stride, int width,
|
/cts/tests/tests/uirendering/src/android/uirendering/cts/testinfrastructure/ |
CanvasClient.java | 27 void draw(Canvas canvas, int width, int height);
|
/developers/build/prebuilts/gradle/Camera2Raw/Application/src/main/java/com/example/android/camera2raw/ |
AutoFitTextureView.java | 48 * @param width Relative horizontal size 51 public void setAspectRatio(int width, int height) { 52 if (width < 0 || height < 0) { 55 if (mRatioWidth == width && mRatioHeight == height) { 58 mRatioWidth = width; 66 int width = MeasureSpec.getSize(widthMeasureSpec); local 69 setMeasuredDimension(width, height); 71 if (width < height * mRatioWidth / mRatioHeight) { 72 setMeasuredDimension(width, width * mRatioHeight / mRatioWidth) [all...] |
/developers/build/prebuilts/gradle/PermissionRequest/Application/src/main/assets/ |
sample.css | 27 width: 80px; 33 width: 240px;
|
/developers/samples/android/content/webview/PermissionRequest/Application/src/main/assets/ |
sample.css | 27 width: 80px; 33 width: 240px;
|
/developers/samples/android/media/Camera2Raw/Application/src/main/java/com/example/android/camera2raw/ |
AutoFitTextureView.java | 48 * @param width Relative horizontal size 51 public void setAspectRatio(int width, int height) { 52 if (width < 0 || height < 0) { 55 if (mRatioWidth == width && mRatioHeight == height) { 58 mRatioWidth = width; 66 int width = MeasureSpec.getSize(widthMeasureSpec); local 69 setMeasuredDimension(width, height); 71 if (width < height * mRatioWidth / mRatioHeight) { 72 setMeasuredDimension(width, width * mRatioHeight / mRatioWidth) [all...] |
/development/ndk/platforms/android-18/samples/gles3jni/src/com/android/gles3jni/ |
GLES3JNILib.java | 28 public static native void resize(int width, int height);
|
/development/ndk/platforms/android-4/samples/san-angeles/jni/ |
app.h | 43 extern void appRender(long tick, int width, int height);
|
/development/samples/browseable/Camera2Raw/src/com.example.android.camera2raw/ |
AutoFitTextureView.java | 48 * @param width Relative horizontal size 51 public void setAspectRatio(int width, int height) { 52 if (width < 0 || height < 0) { 55 if (mRatioWidth == width && mRatioHeight == height) { 58 mRatioWidth = width; 66 int width = MeasureSpec.getSize(widthMeasureSpec); local 69 setMeasuredDimension(width, height); 71 if (width < height * mRatioWidth / mRatioHeight) { 72 setMeasuredDimension(width, width * mRatioHeight / mRatioWidth) [all...] |
/development/tools/yuv420sp2rgb/ |
cmdline.h | 9 int *width,
|
/external/autotest/client/site_tests/graphics_SanAngeles/src/ |
app.h | 48 extern void appRender(long tick, int width, int height);
|
/external/deqp/modules/egl/ |
teglGLES1RenderUtil.cpp | 41 void clear (int x, int y, int width, int height, const tcu::Vec4& color) 44 glScissor(x, y, width, height); 50 void readPixels (tcu::Surface& dst, int x, int y, int width, int height) 52 dst.setSize(width, height); 53 glReadPixels(x, y, width, height, GL_RGBA, GL_UNSIGNED_BYTE, dst.getAccess().getDataPtr()); 63 void clear (int x, int y, int width, int height, const tcu::Vec4& color) 65 DE_UNREF(x && y && width && height); 70 void readPixels (tcu::Surface& dst, int x, int y, int width, int height) 72 DE_UNREF(x && y && width && height);
|
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/bitmap_recycle/ |
AttributeStrategy.java | 21 public Bitmap get(int width, int height, Bitmap.Config config) { 22 final Key key = keyPool.get(width, height, config); 38 public String logBitmap(int width, int height, Bitmap.Config config) { 39 return getBitmapString(width, height, config); 56 private static String getBitmapString(int width, int height, Bitmap.Config config) { 57 return "[" + width + "x" + height + "], " + config; 62 public Key get(int width, int height, Bitmap.Config config) { 64 result.init(width, height, config); 77 private int width; field in class:AttributeStrategy.Key 86 public void init(int width, int height, Bitmap.Config config) [all...] |
/external/glide/library/src/main/java/com/bumptech/glide/request/target/ |
PreloadTarget.java | 17 * @param width The width in pixels of the desired resource. 21 public static <Z> PreloadTarget<Z> obtain(int width, int height) { 22 return new PreloadTarget<Z>(width, height); 25 private PreloadTarget(int width, int height) { 26 super(width, height);
|
/external/libcxx/test/std/input.output/iostreams.base/ios.base/fmtflags.state/ |
width.pass.cpp | 14 // streamsize width() const; 32 assert(t.width() == 0);
|
/external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/ |
GwtApplicationConfiguration.java | 24 /** the width of the drawing area in pixels **/
25 public int width;
field in class:GwtApplicationConfiguration 55 public GwtApplicationConfiguration (int width, int height) {
56 this.width = width;
|
/external/libgdx/gdx/src/com/badlogic/gdx/ |
ApplicationListener.java | 38 * @param width the new width in pixels
40 public void resize (int width, int height);
|
Screen.java | 36 public void resize (int width, int height);
|