Searched defs:height (Results 1 - 25 of 297) sorted by relevance

1234567891011>>

/packages/wallpapers/MagicSmoke/src/com/android/magicsmoke/
H A DMagicSmoke.java22 protected MagicSmokeRS createScene(int width, int height) { argument
23 return new MagicSmokeRS(this, width, height);
/packages/apps/Camera/jni/feature_mos/src/mosaic/
H A DPyramid.h35 real width, height; // Width and height of input images member in class:PyramidShort
40 static PyramidShort *allocatePyramidPacked(real width, real height, real levels, real border = 0);
41 static PyramidShort *allocateImage(real width, real height, real border);
45 static unsigned int calcStorage(real width, real height, real border2, int levels, int *lines);
/packages/apps/Camera2/jni/feature_mos/src/mosaic/
H A DPyramid.h35 real width, height; // Width and height of input images member in class:PyramidShort
40 static PyramidShort *allocatePyramidPacked(real width, real height, real levels, real border = 0);
41 static PyramidShort *allocateImage(real width, real height, real border);
45 static unsigned int calcStorage(real width, real height, real border2, int levels, int *lines);
/packages/apps/Gallery2/jni/filters/
H A Dexposure.c19 void JNIFUNCF(ImageFilterExposure, nativeApplyFilter, jobject bitmap, jint width, jint height, jfloat bright) argument
25 int len = width * height * 4;
H A Dnegative.c19 void JNIFUNCF(ImageFilterNegative, nativeApplyFilter, jobject bitmap, jint width, jint height) argument
24 int tot_len = height * width * 4;
H A Dredeye.c20 void JNIFUNCF(ImageFilterRedEye, nativeApplyFilter, jobject bitmap, jint width, jint height, jshortArray vrect) argument
27 filterRedEye(rgb,rgb,width,height,rect);
H A Dcontrast.c39 void JNIFUNCF(ImageFilterContrast, nativeApplyFilter, jobject bitmap, jint width, jint height, jfloat bright) argument
45 int len = width * height * 4;
/packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
H A DPyramid.h35 real width, height; // Width and height of input images member in class:PyramidShort
40 static PyramidShort *allocatePyramidPacked(real width, real height, real levels, real border = 0);
41 static PyramidShort *allocateImage(real width, real height, real border);
45 static unsigned int calcStorage(real width, real height, real border2, int levels, int *lines);
/packages/wallpapers/Basic/src/com/android/wallpaper/fall/
H A DFallWallpaper.java23 protected RenderScriptScene createScene(int width, int height) { argument
24 return new FallRS(width, height);
/packages/wallpapers/Basic/src/com/android/wallpaper/galaxy/
H A DGalaxyWallpaper.java22 protected GalaxyRS createScene(int width, int height) { argument
23 return new GalaxyRS(width, height);
/packages/wallpapers/Basic/src/com/android/wallpaper/grass/
H A DGrassWallpaper.java23 protected RenderScriptScene createScene(int width, int height) { argument
24 return new GrassRS(this, width, height);
/packages/wallpapers/Basic/src/com/android/wallpaper/nexus/
H A DNexusWallpaper.java23 protected RenderScriptScene createScene(int width, int height) { argument
24 return new NexusRS(width, height);
/packages/wallpapers/MusicVisualization/src/com/android/musicvis/vis2/
H A DVisualization2.java25 protected Visualization2RS createScene(int width, int height) { argument
26 return new Visualization2RS(width, height);
H A DVisualization2RS.java28 Visualization2RS(int width, int height) { argument
29 super(width, height, R.drawable.fire);
/packages/wallpapers/MusicVisualization/src/com/android/musicvis/vis3/
H A DVisualization3.java25 protected Visualization3RS createScene(int width, int height) { argument
26 return new Visualization3RS(width, height);
/packages/wallpapers/MusicVisualization/src/com/android/musicvis/vis4/
H A DVisualization4.java25 protected Visualization4RS createScene(int width, int height) { argument
26 return new Visualization4RS(width, height);
/packages/wallpapers/MusicVisualization/src/com/android/musicvis/vis5/
H A DVisualization5.java25 protected Visualization5RS createScene(int width, int height) { argument
26 return new Visualization5RS(width, height);
/packages/apps/Camera/jni/feature_mos/src/mosaic_renderer/
H A DFrameBuffer.cpp24 bool FrameBuffer::Init(int width, int height, GLenum format) { argument
37 height,
65 mHeight = height;
/packages/apps/Camera/src/com/android/camera/
H A DMosaicRenderer.java41 * Pass the drawing surface's width and height to initialize the
45 * @param height height of the drawing surface in pixels.
48 public static native void reset(int width, int height, boolean isLandscapeOrientation); argument
H A DPanoUtil.java45 public static void decodeYUV420SPQuarterRes(int[] rgb, byte[] yuv420sp, int width, int height) { argument
46 final int frameSize = width * height;
48 for (int j = 0, ypd = 0; j < height; j += 4) {
/packages/apps/Camera2/jni/feature_mos/src/mosaic_renderer/
H A DFrameBuffer.cpp24 bool FrameBuffer::Init(int width, int height, GLenum format) { argument
37 height,
65 mHeight = height;
/packages/apps/Camera2/src/com/android/camera/
H A DMosaicRenderer.java41 * Pass the drawing surface's width and height to initialize the
45 * @param height height of the drawing surface in pixels.
48 public static native void reset(int width, int height, boolean isLandscapeOrientation); argument
H A DPanoUtil.java45 public static void decodeYUV420SPQuarterRes(int[] rgb, byte[] yuv420sp, int width, int height) { argument
46 final int frameSize = width * height;
48 for (int j = 0, ypd = 0; j < height; j += 4) {
/packages/apps/Camera2/src/com/android/camera/data/
H A DCameraPreviewData.java35 * @param height The height of the camera preview.
37 public CameraPreviewData(View v, int width, int height) { argument
38 super(v, width, height, -1, -1);
/packages/apps/Camera2/src/com/android/camera/tinyplanet/
H A DTinyPlanetNative.java34 * @param height the height of the input image.
36 * @param outputSize the width and height of the square output image.
40 public static native void process(Bitmap in, int width, int height, Bitmap out, int outputSize, argument

Completed in 325 milliseconds

1234567891011>>