HomeSort by relevance Sort by last modified time
    Searched refs:imageWidth (Results 1 - 25 of 32) sorted by null

1 2

  /external/opencv/cv/src/
cvoptflowhs.cpp 107 int imageWidth = imgSize.width;
167 VelBufX[k] = (float *) cvAlloc( imageWidth * sizeof( float ));
171 VelBufY[k] = (float *) cvAlloc( imageWidth * sizeof( float ));
177 BufferSize = imageHeight * imageWidth;
209 for( j = 1; j < imageWidth - 1; j++ )
222 MemY[0][imageWidth - 1] =
223 MemY[1][imageWidth - 1] = CONV( imgA[imageWidth - 2],
224 imgA[imageWidth - 1], imgA[imageWidth - 1] )
    [all...]
cvoptflowlk.cpp 110 int imageWidth = imgSize.width;
158 if( imageWidth < winWidth )
172 BufferWidth = imageWidth;
246 for( j = 1; j < imageWidth - 1; j++ )
259 MemY[0][imageWidth - 1] =
260 MemY[1][imageWidth - 1] = CONV( imgA[imageWidth - 2],
261 imgA[imageWidth - 1], imgA[imageWidth - 1] );
323 for( j = 1; j < imageWidth - 1; j++
    [all...]
  /sdk/assetstudio/tests/src/com/android/assetstudiolib/
GeneratorTest.java 108 int imageWidth = Math.min(goldenImage.getWidth(), image.getWidth());
117 int width = 3 * imageWidth;
125 for (int x = 0; x < imageWidth; x++) {
129 deltaImage.setRGB(imageWidth + x, y, 0x00808080);
135 deltaImage.setRGB(imageWidth + x, y, 0x00808080);
150 deltaImage.setRGB(imageWidth + x, y, newRGB);
159 long total = imageHeight * imageWidth * 3L * 256L;
166 g.drawImage(image, 2 * imageWidth, 0, null);
169 if (imageWidth > 80) {
172 g.drawString("Actual", 2 * imageWidth + 10, 20)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/cairo/
GraphicsContext3DCairo.cpp 87 void GraphicsContext3D::paintToCanvas(const unsigned char* imagePixels, int imageWidth, int imageHeight, int canvasWidth, int canvasHeight, PlatformContextCairo* context)
89 if (!imagePixels || imageWidth <= 0 || imageHeight <= 0 || canvasWidth <= 0 || canvasHeight <= 0 || !context)
100 const_cast<unsigned char*>(imagePixels), CAIRO_FORMAT_ARGB32, imageWidth, imageHeight, imageWidth * 4));
  /external/webkit/Source/WebCore/platform/chromium/
DragImageChromiumSkia.cpp 62 int imageWidth = scale.width() * image->width();
66 imageWidth, imageHeight));
  /external/webkit/Source/WebKit2/Platform/cg/
CGUtilities.cpp 41 size_t imageWidth = CGImageGetWidth(image);
46 CGContextDrawImage(context, CGRectMake(destX, destY, imageWidth, imageHeight), image);
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_deblocking.c 174 u32 imageWidth);
177 u32 imageWidth);
180 u32 imageWidth);
182 i32 imageWidth);
184 i32 imageWidth);
187 u32 imageWidth);
189 i32 imageWidth);
191 i32 imageWidth);
653 u32 imageWidth)
674 for (i = 4; i; i--, data += imageWidth)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/cg/
GraphicsContext3DCG.cpp 257 void GraphicsContext3D::paintToCanvas(const unsigned char* imagePixels, int imageWidth, int imageHeight, int canvasWidth, int canvasHeight, CGContextRef context)
259 if (!imagePixels || imageWidth <= 0 || imageHeight <= 0 || canvasWidth <= 0 || canvasHeight <= 0 || !context)
261 int rowBytes = imageWidth * 4;
263 RetainPtr<CGImageRef> cgImage(AdoptCF, CGImageCreate(imageWidth, imageHeight, 8, 32, rowBytes, deviceRGBColorSpaceRef(), kCGImageAlphaPremultipliedFirst | kCGBitmapByteOrder32Host,
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
ImageControl.java 155 int imageWidth = imageRect.width;
156 int destWidth = imageWidth;
168 gc.drawImage(mImage, 0, 0, imageWidth, imageHeight, rect.x + mLeftMargin, rect.y
  /packages/apps/Gallery/src/com/android/camera/
GalleryPicker.java 621 int imageWidth, int widthPadding, int imageHeight,
627 int xPos = (col * (imageWidth + widthPadding)) - offsetX;
643 int imageWidth = width;
648 imageWidth = (imageWidth - padding) / 2; // 2 here because we show two
704 temp = Util.transform(m, temp, imageWidth,
708 Bitmap thumb = Bitmap.createBitmap(imageWidth, imageHeight,
714 mCellOutline.setBounds(0, 0, imageWidth, imageHeight);
717 placeImage(thumb, c, pdpaint, imageWidth, padding, imageHeight,
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SwtUtilsTest.java 324 * @param imageWidth the width of the target image
328 private Image createSampleImage(int imageWidth, int imageHeight) {
332 ImageData data = new ImageData(imageWidth, imageHeight, 32, new PaletteData(0x00FF0000,
335 for (int x = 0; x < imageWidth; x++) {
  /external/qemu/distrib/sdl-1.2.12/src/video/Xext/extensions/
xf86dga.h 68 int imageWidth; /* linear accessible portion (pixels) */
  /frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/
GlobalScreenshot.java 110 int imageWidth = data.image.getWidth();
114 if (imageWidth > imageHeight) {
115 iconWidth = (int) (((float) iconHeight / imageHeight) * imageWidth);
117 iconHeight = (int) (((float) iconWidth / imageWidth) * imageHeight);
  /prebuilt/common/ninepatch/
ninepatch-prebuilt.jar 
  /external/webkit/Source/WebCore/rendering/
RenderBoxModelObject.cpp     [all...]
  /sdk/ninepatch/src/com/android/ninepatch/
NinePatchChunk.java 372 private List<Rectangle> getHorizontalRectangles(int imageWidth,
379 rectangles.add(new Rectangle(0, y, imageWidth, height));
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
PhotoView.java 296 private static int gapToSide(int imageWidth, int viewWidth) {
297 return Math.max(0, (viewWidth - imageWidth) / 2);
  /external/v8/benchmarks/
raytrace.js 880 var imageWidth = 100; // $F('imageWidth');
891 canvasWidth: imageWidth,
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v4/
v8-raytrace.js 906 var imageWidth = 100; // $F('imageWidth');
917 canvasWidth: imageWidth,
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v5/
v8-raytrace.js 906 var imageWidth = 100; // $F('imageWidth');
917 canvasWidth: imageWidth,
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v6/
v8-raytrace.js 875 var imageWidth = 100; // $F('imageWidth');
886 canvasWidth: imageWidth,
  /external/qemu/distrib/sdl-1.2.12/src/video/Xext/Xxf86dga/
XF86DGA2.c 322 modes[i].imageWidth = info.image_width;
400 dev->mode.imageWidth = info.image_width;
  /external/webkit/Source/WebCore/platform/graphics/
GraphicsContext3D.h 766 void paintToCanvas(const unsigned char* imagePixels, int imageWidth, int imageHeight,
769 void paintToCanvas(const unsigned char* imagePixels, int imageWidth, int imageHeight,
    [all...]
  /prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/lib/gcc/i686-unknown-linux-gnu/4.2.1/include/xorg/
xf86str.h 786 int imageWidth; /* linear accessible portion (pixels) */
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
VideoEditorStressTest.java 677 final int imageWidth = 640;
721 imageWidth, mediaItem2.getWidth());
    [all...]

Completed in 804 milliseconds

1 2