Home
last modified time | relevance | path

Searched refs:img2 (Results 1 – 11 of 11) sorted by relevance

/external/libvpx/libvpx/test/
Dutil.h24 const vpx_image_t *img2) { in compute_psnr() argument
25 assert((img1->fmt == img2->fmt) && in compute_psnr()
26 (img1->d_w == img2->d_w) && in compute_psnr()
27 (img1->d_h == img2->d_h)); in compute_psnr()
37 img2->planes[VPX_PLANE_Y][i * img2->stride[VPX_PLANE_Y] + j]; in compute_psnr()
Dencode_test_driver.cc108 const vpx_image_t *img2) { in compare_img() argument
109 bool match = (img1->fmt == img2->fmt) && in compare_img()
110 (img1->d_w == img2->d_w) && in compare_img()
111 (img1->d_h == img2->d_h); in compare_img()
118 img2->planes[VPX_PLANE_Y] + i * img2->stride[VPX_PLANE_Y], in compare_img()
124 img2->planes[VPX_PLANE_U] + i * img2->stride[VPX_PLANE_U], in compare_img()
128 img2->planes[VPX_PLANE_V] + i * img2->stride[VPX_PLANE_V], in compare_img()
134 const vpx_image_t *img2) { in MismatchHook() argument
Derror_resilience_test.cc104 const vpx_image_t *img2) { in MismatchHook() argument
105 double mismatch_psnr = compute_psnr(img1, img2); in MismatchHook()
Dencode_test_driver.h203 const vpx_image_t *img2);
/external/clang/test/CodeGenOpenCL/
Dkernel-arg-info.cl14 kernel void foo2(read_only image1d_t img1, image2d_t img2, write_only image2d_array_t img3) {
20 // CHECK: metadata !{metadata !"kernel_arg_name", metadata !"img1", metadata !"img2", metadata !"im…
/external/libvpx/libvpx/vp9/encoder/
Dvp9_ssim.c84 double vp9_ssim2(uint8_t *img1, uint8_t *img2, int stride_img1, in vp9_ssim2() argument
92 i += 4, img1 += stride_img1 * 4, img2 += stride_img2 * 4) { in vp9_ssim2()
94 double v = ssim_8x8(img1 + j, stride_img1, img2 + j, stride_img2); in vp9_ssim2()
/external/libvpx/libvpx/
Dvpxenc.c912 static void find_mismatch(vpx_image_t *img1, vpx_image_t *img2, in find_mismatch() argument
931 *(img2->planes[VPX_PLANE_Y] + in find_mismatch()
932 (i + k) * img2->stride[VPX_PLANE_Y] + j + l)) { in find_mismatch()
937 yloc[3] = *(img2->planes[VPX_PLANE_Y] + in find_mismatch()
938 (i + k) * img2->stride[VPX_PLANE_Y] + j + l); in find_mismatch()
956 *(img2->planes[VPX_PLANE_U] + in find_mismatch()
957 (i + k) * img2->stride[VPX_PLANE_U] + j + l)) { in find_mismatch()
962 uloc[3] = *(img2->planes[VPX_PLANE_U] + in find_mismatch()
963 (i + k) * img2->stride[VPX_PLANE_V] + j + l); in find_mismatch()
980 *(img2->planes[VPX_PLANE_V] + in find_mismatch()
[all …]
/external/opencv/cxcore/src/
D_cxipp.h326 const srctype* img2, int imgstep2, \
331 const srctype* img2, int imgstep2, \
336 const srctype* img2, int imgstep2, \
355 const srctype* img2, int imgstep2, \
360 const srctype* img2, int imgstep2, \
365 const srctype* img2, int imgstep2, \
387 const srctype* img2, int imgstep2, \
393 const srctype* img2, int imgstep2, \
399 const srctype* img2, int imgstep2, \
/external/libvpx/libvpx/vp8/encoder/
Dssim.c150 unsigned char *img2, in vp8_ssim2() argument
162 for(i=0; i < height-8; i+=4, img1 += stride_img1*4, img2 += stride_img2*4) in vp8_ssim2()
166 double v = ssim_8x8(img1+j, stride_img1, img2+j, stride_img2); in vp8_ssim2()
/external/chromium_org/ui/gfx/image/
Dimage_unittest_util.cc85 bool IsEqual(const gfx::Image& img1, const gfx::Image& img2) { in IsEqual() argument
87 gfx::ImageSkia image_skia2 = img2.AsImageSkia(); in IsEqual()
/external/chromium/chrome/common/extensions/
Dextension_unittest.cc537 std::string img2("image2.png"); in TEST() local
544 icons->Set(1, Value::CreateStringValue(img2)); in TEST()
556 ASSERT_EQ(img2, (*action->icon_paths())[1]); in TEST()