Searched refs:image (Results 1 - 25 of 86) sorted by relevance

1234

/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_deblocking.h52 image_t *image,
H A Dh264bsd_image.h60 void h264bsdWriteMacroblock(image_t *image, u8 *data);
63 void h264bsdWriteOutputBlocks(image_t *image, u32 mbNum, u8 *data,
H A Dh264bsd_inter_prediction.h53 dpbStorage_t *dpb, u32 mbNum, image_t *image, u8 *data);
H A Dh264bsd_util.c257 image Current image
266 void h264bsdSetCurrImageMbPointers(image_t *image, u32 mbNum) argument
273 width = image->width;
274 height = image->height;
281 image->luma = (u8*)(image->data + col * 16 + tmp * 256);
282 image->cb = (u8*)(image->data + picSize * 256 + tmp * 64 + col * 8);
283 image
[all...]
H A Dh264bsd_image.c65 Write one macroblock into the image. Both luma and chroma
73 image pointer to the image where the macroblock will be written
80 void h264bsdWriteMacroblock(image_t *image, u8 *data) argument
93 ASSERT(image);
97 width = image->width;
101 lum = (u32*)image->luma;
102 cb = (u32*)image->cb;
103 cr = (u32*)image->cr;
151 Write one macroblock into the image
171 h264bsdWriteOutputBlocks(image_t *image, u32 mbNum, u8 *data, i32 residual[][16]) argument
[all...]
H A Dh264bsd_intra_prediction.h52 image_t *image, u32 mbNum, u32 constrainedIntraPred, u8 *data);
63 void h264bsdGetNeighbourPels(image_t *image, u8 *above, u8 *left, u32 mbNum);
75 u32 h264bsdIntraChromaPrediction(mbStorage_t *pMb, u8 *data, image_t *image,
/frameworks/base/tests/RenderScriptTests/ImageProcessing/src/com/android/rs/image/
H A Dfisheye_approx_full.rs18 #pragma rs java_package_name(com.android.rs.image)
H A Dfisheye_full.rs18 #pragma rs java_package_name(com.android.rs.image)
H A Dlevels_full.rs18 #pragma rs java_package_name(com.android.rs.image)
H A Dvignette_approx_full.rs18 #pragma rs java_package_name(com.android.rs.image)
H A Dvignette_full.rs18 #pragma rs java_package_name(com.android.rs.image)
H A Dcopy.fs18 #pragma rs java_package_name(com.android.rs.image)
H A Dfisheye_approx_relaxed.fs18 #pragma rs java_package_name(com.android.rs.image)
H A Dfisheye_relaxed.fs18 #pragma rs java_package_name(com.android.rs.image)
H A Dlevels_relaxed.fs18 #pragma rs java_package_name(com.android.rs.image)
H A Dvignette_approx_relaxed.fs18 #pragma rs java_package_name(com.android.rs.image)
H A Dvignette_relaxed.fs18 #pragma rs java_package_name(com.android.rs.image)
H A DImageProcessingTestRunner.java17 package com.android.rs.image;
19 import com.android.rs.image.ImageProcessingTest;
27 * adb shell am instrument -e iteration <n> -w com.android.rs.image/.ImageProcessingTestRunner
H A Dgreyscale.fs18 #pragma rs java_package_name(com.android.rs.image)
/frameworks/base/core/java/android/widget/
H A DImageSwitcher.java40 ImageView image = (ImageView)this.getNextView();
41 image.setImageResource(resid);
47 ImageView image = (ImageView)this.getNextView();
48 image.setImageURI(uri);
54 ImageView image = (ImageView)this.getNextView();
55 image.setImageDrawable(drawable);
/frameworks/compile/linkloader/
H A Dmain.cpp37 unsigned char const *&image,
41 unsigned char const *image,
44 void dump_and_run_file(unsigned char const *image, size_t size,
59 unsigned char const *image = NULL; local
62 if (!open_mmap_file(filename, fd, image, image_size)) {
67 dump_and_run_file(image, image_size, argc - 1, argv + 1);
70 close_mmap_file(fd, image, image_size);
182 void dump_and_run_file(unsigned char const *image, size_t size, argument
189 if (image[EI_DATA] != ELFDATA2LSB && image[EI_DAT
211 open_mmap_file(char const *filename, int &fd, unsigned char const *&image, size_t &size) argument
249 close_mmap_file(int fd, unsigned char const *image, size_t size) argument
[all...]
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DBitmapShader_Delegate.java91 private BitmapShader_Delegate(java.awt.image.BufferedImage image, argument
93 mJavaPaint = new BitmapShaderPaint(image, tileModeX, tileModeY);
97 private final java.awt.image.BufferedImage mImage;
101 BitmapShaderPaint(java.awt.image.BufferedImage image, argument
103 mImage = image;
110 java.awt.image.ColorModel colorModel,
141 private final java.awt.image.ColorModel mColorModel;
146 java.awt.image
[all...]
H A DBitmap_Delegate.java29 import java.awt.image.BufferedImage;
122 * @param image the bitmap content
129 public static Bitmap createBitmap(BufferedImage image, boolean isMutable, argument
131 // create a delegate with the given image.
132 Bitmap_Delegate delegate = new Bitmap_Delegate(image, Config.ARGB_8888);
204 // create the image
205 BufferedImage image = new BufferedImage(width, height, imageType);
208 image.setRGB(0, 0, width, height, colors, offset, stride);
212 Bitmap_Delegate delegate = new Bitmap_Delegate(image, Config.nativeToConfig(nativeConfig));
231 // create the image
517 Bitmap_Delegate(BufferedImage image, Config config) argument
541 createCopy(BufferedImage image, int imageType, int alpha) argument
[all...]
H A DLinearGradient_Delegate.java137 java.awt.image.ColorModel colorModel,
169 private final java.awt.image.ColorModel mColorModel;
174 java.awt.image.ColorModel colorModel) {
185 public java.awt.image.ColorModel getColorModel() {
190 public java.awt.image.Raster getRaster(int x, int y, int w, int h) {
191 java.awt.image.BufferedImage image = new java.awt.image.BufferedImage(w, h,
192 java.awt.image.BufferedImage.TYPE_INT_ARGB);
215 image
[all...]
/frameworks/base/tools/aapt/
H A DImages.cpp33 // This holds an image as 8bpp RGBA.
427 static uint32_t get_color(image_info* image, int hpatch, int vpatch) argument
431 hpatch, image->info9Patch.xDivs[0], image->info9Patch.xDivs[1],
432 image->width, &left, &right);
434 vpatch, image->info9Patch.yDivs[0], image->info9Patch.yDivs[1],
435 image->height, &top, &bottom);
438 const uint32_t c = get_color(image->rows, left, top, right, bottom);
443 static status_t do_9patch(const char* imageName, image_info* image) argument
[all...]

Completed in 3640 milliseconds

1234