Searched defs:image1 (Results 1 - 8 of 8) sorted by relevance

/external/webrtc/webrtc/modules/desktop_capture/
H A Ddiffer_block.cc21 bool BlockDifference_C(const uint8_t* image1, argument
27 if (memcmp(image1, image2, width_bytes) != 0)
29 image1 += stride;
35 bool BlockDifference(const uint8_t* image1, argument
58 return diff_proc(image1, image2, stride);
H A Ddiffer_block_sse2.cc24 extern bool BlockDifference_SSE2_W16(const uint8_t* image1, argument
32 const __m128i* i1 = reinterpret_cast<const __m128i*>(image1);
58 image1 += stride;
64 extern bool BlockDifference_SSE2_W32(const uint8_t* image1, argument
72 const __m128i* i1 = reinterpret_cast<const __m128i*>(image1);
114 image1 += stride;
/external/skia/tests/
H A DEGLImageTest.cpp23 const GrGLTextureInfo* grbackendtex1, GrEGLImage image1) {
34 if (GR_EGL_NO_IMAGE != image1) {
35 glctx1->destroyEGLImage(image1);
22 cleanup(GLTestContext* glctx0, GrGLuint texID0, GLTestContext* glctx1, GrContext* grctx1, const GrGLTextureInfo* grbackendtex1, GrEGLImage image1) argument
H A DSurfaceTest.cpp234 sk_sp<SkImage> image1(surface->makeImageSnapshot());
236 REPORTER_ASSERT(reporter, image0->uniqueID() == image1->uniqueID());
385 sk_sp<SkImage> image1(surface1->makeImageSnapshot());
402 REPORTER_ASSERT(reporter, as_IB(image4)->peekTexture() != as_IB(image1)->peekTexture());
404 REPORTER_ASSERT(reporter, as_IB(image3)->peekTexture() != as_IB(image1)->peekTexture());
405 REPORTER_ASSERT(reporter, as_IB(image2)->peekTexture() != as_IB(image1)->peekTexture());
497 sk_sp<SkImage> image1 = surface->makeImageSnapshot(); local
498 sk_sp<SkImage> aur_image1(image1);
499 SkDEBUGCODE(image1->validate();)
502 SkDEBUGCODE(image1
[all...]
/external/ImageMagick/MagickCore/
H A Dlayer.c156 % MagickBooleanType IsBoundsCleared(const Image *image1,
161 % o image1, image 2: the images to check for cleared pixels
168 static MagickBooleanType IsBoundsCleared(const Image *image1,
185 p=GetVirtualPixels(image1,bounds->x,bounds->y+y,bounds->width,1,exception);
191 if ((GetPixelAlpha(image1,p) >= (Quantum) (QuantumRange/2)) &&
194 p+=GetPixelChannels(image1);
584 % const Image *image1, const Image *image2, ExceptionInfo *exception)
591 % o image1, image2: the two images to compare.
597 static RectangleInfo CompareImagesBounds(const Image *image1,
620 GetPixelInfo(image1,
165 IsBoundsCleared(const Image *image1, const Image *image2,RectangleInfo *bounds,ExceptionInfo *exception) argument
590 CompareImagesBounds(const Image *image1, const Image *image2,const LayerMethod method,ExceptionInfo *exception) argument
[all...]
/external/deqp/external/vulkancts/modules/vulkan/tessellation/
H A DvktTessellationGeometryPassthroughTests.cpp600 tcu::ConstPixelBufferAccess image1 = getPixelBufferAccess(vk, device, *colorBuffer[1], colorFormat, colorBufferSizeBytes, renderSize); local
614 log, "ImageCompare", "Image comparison", image0, image1, colorThreshold, positionDeviation, ignoreOutOfBounds, tcu::COMPARE_LOG_RESULT);
/external/pdfium/samples/
H A Dimage_diff.cc253 bool CreateImageDiff(const Image& image1, const Image& image2, Image* out) { argument
254 int w = std::min(image1.w(), image2.w());
255 int h = std::min(image1.h(), image2.h());
256 *out = Image(image1);
257 bool same = (image1.w() == image2.w()) && (image1.h() == image2.h());
263 uint32_t base_pixel = image1.pixel_at(x, y);
/external/opencv/cvaux/src/
H A Dcvcorrimages.cpp176 /* For given points1 (with pntStatus) on image1 finds corresponding points2 on image2 and set pntStatus2 for them */
178 int icvFindCorrForGivenPoints( IplImage *image1,/* Image 1 */ argument
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);

Completed in 736 milliseconds