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

123456789

/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/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 Dredeye.c20 void JNIFUNCF(ImageFilterRedEye, nativeApplyFilter, jobject bitmap, jint width, jint height, jshortArray vrect) argument
27 filterRedEye(rgb,rgb,width,height,rect);
H A Dbw.c19 void JNIFUNCF(ImageFilterBW, nativeApplyFilter, jobject bitmap, jint width, jint height) argument
24 int len = width * height * 4;
43 void JNIFUNCF(ImageFilterBWRed, nativeApplyFilter, jobject bitmap, jint width, jint height) argument
48 int len = width * height * 4;
65 void JNIFUNCF(ImageFilterBWGreen, nativeApplyFilter, jobject bitmap, jint width, jint height) argument
70 int len = width * height * 4;
87 void JNIFUNCF(ImageFilterBWBlue, nativeApplyFilter, jobject bitmap, jint width, jint height) argument
92 int len = width * height * 4;
H A Dcontrast.c30 void JNIFUNCF(ImageFilterContrast, nativeApplyFilter, jobject bitmap, jint width, jint height, jfloat bright) argument
36 int len = width * height * 4;
H A Dgradient.c19 void JNIFUNCF(ImageFilter, nativeApplyGradientFilter, jobject bitmap, jint width, jint height, argument
35 int len = width * height * 4;
H A Dhue.c19 void JNIFUNCF(ImageFilterHue, nativeApplyFilter, jobject bitmap, jint width, jint height, jfloatArray matrix) argument
25 int len = width * height * 4;
H A Dshadows.c20 void JNIFUNCF(ImageFilterShadows, nativeApplyFilter, jobject bitmap, jint width, jint height, float scale){ argument
34 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/Gallery2/src/com/android/gallery3d/ui/
H A DCanvasTexture.java30 public CanvasTexture(int width, int height) { argument
32 setSize(width, height);
/packages/apps/LegacyCamera/jni/feature_mos/src/mosaic_renderer/
H A DFrameBuffer.cpp24 bool FrameBuffer::Init(int width, int height, GLenum format) { argument
37 height,
63 mHeight = height;
/packages/apps/LegacyCamera/src/com/android/camera/panorama/
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) {

Completed in 235 milliseconds

123456789