Searched defs:image (Results 1 - 25 of 41) sorted by relevance

12

/frameworks/base/tests/RenderScriptTests/ImageProcessing/src/com/android/rs/image/
H A DCopy.java17 package com.android.rs.image;
H A DCrossProcess.java17 package com.android.rs.image;
H A DGreyscale.java17 package 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 DColorMatrix.java17 package com.android.rs.image;
H A DConvolve3x3.java17 package com.android.rs.image;
H A DConvolve5x5.java17 package com.android.rs.image;
H A DGroupTest.java17 package com.android.rs.image;
H A DGrain.java17 package com.android.rs.image;
H A DMandelbrot.java17 package com.android.rs.image;
H A DBlend.java17 package com.android.rs.image;
H A DBlur25.java17 package com.android.rs.image;
H A DFisheye.java17 package com.android.rs.image;
H A DLevelsV4.java17 package com.android.rs.image;
H A DTestBase.java17 package com.android.rs.image;
H A DVignette.java17 package com.android.rs.image;
H A DImageProcessingTest.java17 package com.android.rs.image;
19 import com.android.rs.image.ImageProcessingTestRunner;
22 import com.android.rs.image.ImageProcessingActivity.TestName;
32 * adb shell am instrument -e iteration <n> -w com.android.rs.image/.ImageProcessingTestRunner
/frameworks/compile/linkloader/android/
H A Dtest-librsloader.c87 unsigned char const *image = (unsigned char const *) local
90 if (image == MAP_FAILED) {
96 RSExecRef object = rsloaderCreateExec(image, sb.st_size, find_sym, 0);
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
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...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm_neon_asm/
H A Dh264bsdWriteMacroblock.s25 image RN 0 label
74 ; Write one macroblock into the image. Both luma and chroma
82 ; image pointer to the image where the macroblock will be written
93 LDR width, [image, #4]
94 LDR luma, [image, #0xC]
95 LDR cb, [image, #0x10]
96 LDR cr, [image, #0x14]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm_neon_asm_gcc/
H A Dh264bsdWriteMacroblock.S27 #define image r0 define
76 Write one macroblock into the image. Both luma and chroma
84 image pointer to the image where the macroblock will be written
95 LDR width, [image, #4]
96 LDR luma, [image, #0xC]
97 LDR cb, [image, #0x10]
98 LDR cr, [image, #0x14]
/frameworks/base/libs/hwui/
H A DFontRenderer.h69 image(dropShadow.image), penX(dropShadow.penX),
75 uint8_t* image; member in struct:android::uirenderer::FontRenderer::DropShadow
80 // After renderDropShadow returns, the called owns the memory in DropShadow.image
183 static void blurImage(uint8_t* image, int32_t width, int32_t height, int32_t radius);
/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...]

Completed in 1807 milliseconds

12