HomeSort by relevance Sort by last modified time
    Searched refs:image1 (Results 1 - 22 of 22) sorted by null

  /external/chromium_org/third_party/webrtc/modules/desktop_capture/
differ_block_sse2.h 22 extern int BlockDifference_SSE2_W16(const uint8_t* image1,
27 extern int BlockDifference_SSE2_W32(const uint8_t* image1,
differ_block.cc 21 int BlockDifference_C(const uint8_t* image1,
27 if (memcmp(image1, image2, width_bytes) != 0)
29 image1 += stride;
35 int BlockDifference(const uint8_t* image1, const uint8_t* image2, int stride) {
56 return diff_proc(image1, image2, stride);
differ_block.h 27 int BlockDifference(const uint8_t* image1, const uint8_t* image2, int stride);
differ_block_sse2.cc 24 extern int BlockDifference_SSE2_W16(const uint8_t* image1,
32 const __m128i* i1 = reinterpret_cast<const __m128i*>(image1);
58 image1 += stride;
64 extern int BlockDifference_SSE2_W32(const uint8_t* image1,
72 const __m128i* i1 = reinterpret_cast<const __m128i*>(image1);
114 image1 += stride;
  /external/chromium_org/chrome/test/ispy/common/
image_tools.py 30 def _GetDifferenceWithMask(image1, image2, mask=None,
41 image1: the first image to compare.
56 Exception: if image1, image2, and mask are not the same size.
60 image_mask = Image.new('RGBA', image1.size, (0, 0, 0, 255))
61 if not _AreTheSameSize([image1, image2, image_mask]):
63 image_diff = Image.new('RGBA', image1.size, (0, 0, 0, 255))
67 image1.getdata(),
159 def VisualizeImageDifferences(image1, image2, mask=None):
169 image1: an RGB image
170 image2: another RGB image of the same size as image1
    [all...]
  /external/chromium_org/ui/gfx/image/
image_unittest_util.h 43 bool IsEqual(const gfx::Image& image1, const gfx::Image& image2);
82 bool PlatformImagesEqual(PlatformImage image1, PlatformImage image2);
image_unittest.cc 75 gfx::Image image1(NULL);
76 EXPECT_TRUE(image1.IsEmpty());
77 EXPECT_EQ(0, image1.Width());
78 EXPECT_EQ(0, image1.Height());
79 EXPECT_EQ(0U, image1.RepresentationCount());
104 gfx::Image image1(image_png_reps1);
105 EXPECT_TRUE(image1.IsEmpty());
106 EXPECT_EQ(0U, image1.RepresentationCount());
175 gfx::Image image1(image_skia);
176 scoped_refptr<base::RefCountedMemory> png_bytes1 = image1.As1xPNGBytes()
    [all...]
image_unittest_util.cc 254 bool PlatformImagesEqual(PlatformImage image1, PlatformImage image2) {
256 return image1 == image2;
258 return image1.BackedBySameObjectAs(image2);
  /external/chromium_org/ppapi/tests/
test_graphics_2d.h 46 bool CompareImages(const pp::ImageData& image1,
50 bool CompareImageRect(const pp::ImageData& image1,
test_graphics_2d.cc 130 bool TestGraphics2D::CompareImages(const pp::ImageData& image1,
133 image1, pp::Rect(0, 0, image1.size().width(), image1.size().height()),
137 bool TestGraphics2D::CompareImageRect(const pp::ImageData& image1,
146 if (*(image1.GetAddr32(pp::Point(rc1.x() + x, rc1.y() + y))) !=
  /external/chromium_org/tools/imagediff/
image_diff.cc 335 bool CreateImageDiff(const Image& image1, const Image& image2, Image* out) {
336 int w = std::min(image1.w(), image2.w());
337 int h = std::min(image1.h(), image2.h());
338 *out = Image(image1);
339 bool same = (image1.w() == image2.w()) && (image1.h() == image2.h());
345 uint32 base_pixel = image1.pixel_at(x, y);
  /cts/hostsidetests/theme/src/android/theme/cts/
ComparisonTask.java 115 private static void createDiff(BufferedImage image1, BufferedImage image2, File out)
117 final int w1 = image1.getWidth();
118 final int h1 = image1.getHeight();
123 // The diff will contain image1, image2 and the difference between the two.
134 color1 = image1.getRGB(i, j);
138 color1 = image1.getRGB(i, j);
  /external/chromium_org/third_party/skia/tests/
SurfaceTest.cpp 363 SkAutoTUnref<SkImage> image1(surface1->newImageSnapshot());
380 REPORTER_ASSERT(reporter, image4->getTexture() != image1->getTexture());
382 REPORTER_ASSERT(reporter, image3->getTexture() != image1->getTexture());
383 REPORTER_ASSERT(reporter, image2->getTexture() != image1->getTexture());
419 SkImage* image1 = surface->newImageSnapshot(); local
420 SkAutoTUnref<SkImage> aur_image1(image1);
421 SkDEBUGCODE(image1->validate();)
424 SkDEBUGCODE(image1->validate();)
430 REPORTER_ASSERT(reporter, image1 != image2);
DeferredCanvasTest.cpp 111 SkAutoTUnref<SkImage> image1(canvas->newImageSnapshot());
719 SkImage* image1 = canvas->newImageSnapshot(); local
720 SkAutoTUnref<SkImage> aur_i1(image1);
731 REPORTER_ASSERT(reporter, image1->uniqueID() == image2->uniqueID());
736 REPORTER_ASSERT(reporter, image1->uniqueID() != image3->uniqueID());
806 SkAutoTUnref<SkImage> image1(canvas->newImageSnapshot());
809 REPORTER_ASSERT(reporter, image1->uniqueID() != image2->uniqueID());
    [all...]
  /external/chromium_org/chrome/browser/ui/app_list/test/
fast_show_pickler_unittest.cc 35 void CompareImages(const gfx::ImageSkia& image1,
37 std::vector<gfx::ImageSkiaRep> reps1(image1.image_reps());
  /external/chromium_org/ui/views/controls/button/
image_button_unittest.cc 83 gfx::ImageSkia image1 = CreateTestImage(10, 11); local
85 button.SetImage(Button::STATE_NORMAL, &image1);
88 button.GetImage(Button::STATE_NORMAL).BackedBySameObjectAs(image1));
  /external/opencv/cvaux/src/
cvcorrimages.cpp 176 /* For given points1 (with pntStatus) on image1 finds corresponding points2 on image2 and set pntStatus2 for them */
178 int icvFindCorrForGivenPoints( IplImage *image1,/* Image 1 */
206 if( image1 == 0 || image2 == 0 ||
215 w = image1->width;
216 h = image1->height;
220 CV_ERROR( CV_StsOutOfRange, "Size of image1 must be > 0" );
267 /* Compute number of visible points on image1 */
308 cvCvtColor(image1,grayImage1,CV_BGR2GRAY);
312 grayImage1.CopyOf(image1,0);
    [all...]
  /external/chromium_org/chrome/renderer/printing/
print_web_view_helper_browsertest.cc 359 const Image& image1(printer->GetPrintedPage(0)->image());
362 // only the content of the iframe. Currently image1 will contain the full
364 EXPECT_NE(0, image1.size().width());
365 EXPECT_NE(0, image1.size().height());
    [all...]
  /development/samples/training/AnimationsDemo/src/com/example/android/animationsdemo/
ZoomActivity.java 64 zoomImageFromThumb(thumb1View, R.drawable.image1);
  /external/chromium_org/skia/ext/
vector_canvas_unittest.cc 292 Image image1(canvas);
294 double diff = image1.PercentageDifferent(image2);
412 Image image1(*vcanvas_);
414 double diff = image1.PercentageDifferent(image2);
  /external/chromium_org/gpu/command_buffer/service/
texture_manager_unittest.cc     [all...]
  /external/opencv/cv/include/
cv.h 562 CVAPI(void) cvMultiplyAcc( const CvArr* image1, const CvArr* image2, CvArr* acc,
    [all...]

Completed in 934 milliseconds