/external/libvpx/libvpx/test/ |
D | util.h | 24 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()
|
D | encode_test_driver.cc | 108 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
|
D | error_resilience_test.cc | 104 const vpx_image_t *img2) { in MismatchHook() argument 105 double mismatch_psnr = compute_psnr(img1, img2); in MismatchHook()
|
D | encode_test_driver.h | 203 const vpx_image_t *img2);
|
/external/clang/test/CodeGenOpenCL/ |
D | kernel-arg-info.cl | 14 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/ |
D | vp9_ssim.c | 84 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/ |
D | vpxenc.c | 912 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.h | 326 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/ |
D | ssim.c | 150 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/ |
D | image_unittest_util.cc | 85 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/ |
D | extension_unittest.cc | 537 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()
|