Home
last modified time | relevance | path

Searched refs:dst_ref (Results 1 – 5 of 5) sorted by relevance

/external/webrtc/webrtc/modules/video_processing/test/
Ddenoiser_test.cc73 uint8_t running_src[16 * 16], src[16 * 16], dst[16 * 16], dst_ref[16 * 16]; in TEST_F() local
80 dst_ref[i * 16 + j] = running_src[i * 16 + j]; in TEST_F()
85 EXPECT_EQ(0, memcmp(dst, dst_ref, 16 * 16)); in TEST_F()
92 dst_ref[i * 16 + j] = src[i * 16 + j] - 2; in TEST_F()
97 EXPECT_EQ(0, memcmp(dst, dst_ref, 16 * 16)); in TEST_F()
100 EXPECT_EQ(0, memcmp(dst, dst_ref, 16 * 16)); in TEST_F()
107 dst_ref[i * 16 + j] = src[i * 16 + j] - 6; in TEST_F()
112 EXPECT_EQ(0, memcmp(dst, dst_ref, 16 * 16)); in TEST_F()
115 EXPECT_EQ(0, memcmp(dst, dst_ref, 16 * 16)); in TEST_F()
/external/libaom/libaom/test/
Dconvolve_round_test.cc91 uint8_t *dst_ref = 0; in ConvolveRoundingRun() local
95 dst_ref = reinterpret_cast<uint8_t *>(dst_ref_); in ConvolveRoundingRun()
98 dst_ref = CONVERT_TO_BYTEPTR(dst_ref_); in ConvolveRoundingRun()
115 func_ref_(src_, src_stride, dst_ref, dst_stride, w, h, bits); in ConvolveRoundingRun()
122 ASSERT_EQ(dst_ref[r * dst_stride + c], dst[r * dst_stride + c]) in ConvolveRoundingRun()
/external/mesa3d/src/gallium/winsys/svga/drm/
Dvmw_shader.c39 struct pipe_reference *dst_ref; in vmw_svga_winsys_shader_reference() local
48 dst_ref = dst ? &dst->refcnt : NULL; in vmw_svga_winsys_shader_reference()
50 if (pipe_reference(dst_ref, src_ref)) { in vmw_svga_winsys_shader_reference()
Dvmw_surface.c197 struct pipe_reference *dst_ref; in vmw_svga_winsys_surface_reference() local
206 dst_ref = dst ? &dst->refcnt : NULL; in vmw_svga_winsys_surface_reference()
208 if (pipe_reference(dst_ref, src_ref)) { in vmw_svga_winsys_surface_reference()
/external/tensorflow/tensorflow/core/util/
Dpresized_cuckoo_map.h291 Bucket& dst_ref = buckets_[dst_bucket]; in CopyItem() local
292 dst_ref.keys[dst_slot] = src_ref.keys[src_slot]; in CopyItem()
293 dst_ref.values[dst_slot] = src_ref.values[src_slot]; in CopyItem()