Home
last modified time | relevance | path

Searched refs:ref_y (Results 1 – 6 of 6) sorted by relevance

/external/libvpx/libvpx/tools/3D-Reconstruction/MotionEST/
DExhaust.py37 ref_y = cur_y
47 ref_y = y
48 return ref_x, ref_y
53 ref_x, ref_y = self.search(i, j)
55 [ref_y - i * self.blk_sz, ref_x - j * self.blk_sz])
111 ref_y = cur_y
124 ref_y = y
125 return ref_x, ref_y
130 ref_x, ref_y = self.search(i, j)
132 [ref_y - i * self.blk_sz, ref_x - j * self.blk_sz])
[all …]
DMotionEST.py54 ref_y = int(cur_y + mv[0])
55 if 0 <= ref_x < self.width - w and 0 <= ref_y < self.height - h:
56 ref_blk = self.ref_yuv[ref_y:ref_y + h, ref_x:ref_x + w, :]
/external/tensorflow/tensorflow/python/keras/saving/
Dsaved_model_experimental_test.py75 ref_y = model.predict(x)
82 self.assertAllClose(ref_y, y, atol=1e-05)
93 ref_y = model.predict(x)
100 self.assertAllClose(ref_y, y, atol=1e-05)
119 ref_y = model.predict(x)
126 self.assertAllClose(ref_y, y, atol=1e-05)
140 ref_y = model.predict(x)
147 self.assertAllClose(ref_y, y, atol=1e-05)
162 ref_y = model.predict(x)
174 self.assertAllClose(ref_y, y, atol=1e-05)
[all …]
Dhdf5_format_test.py70 ref_y = model.predict(x)
74 self.assertAllClose(ref_y, y)
84 self.assertAllClose(ref_y, y)
233 ref_y = model.predict(x)
243 self.assertAllClose(y, ref_y)
275 ref_y = model.predict(x)
283 self.assertAllClose(y, ref_y)
1108 ref_y = self.evaluate(ref_y_tensor)
1128 self.assertAllClose(ref_y, y)
/external/libgav1/libgav1/src/tile/
Dprediction.cc1024 for (int y = 0, ref_y = copy_start_y; y < block_height; ++y) { in BuildConvolveBlock() local
1025 Memset(buf_ptr, reference_block[ref_y][ref_x], block_extended_width); in BuildConvolveBlock()
1028 ++ref_y; in BuildConvolveBlock()
1035 for (int y = 0, ref_y = copy_start_y; y < block_height; ++y) { in BuildConvolveBlock() local
1037 Memset(buf_ptr, reference_block[ref_y][copy_start_x], left_width); in BuildConvolveBlock()
1039 memcpy(buf_ptr + left_width, &reference_block[ref_y][copy_start_x], in BuildConvolveBlock()
1043 reference_block[ref_y][copy_end_x], in BuildConvolveBlock()
1048 ++ref_y; in BuildConvolveBlock()
/external/webrtc/talk/app/webrtc/androidtests/src/org/webrtc/
DSurfaceTextureHelperTest.java388 final int ref_y[] = new int[] {81, 180, 168}; in testTexturetoYUV() local
426 assertClose(1, buffer.get() & 0xff, ref_y[i]); in testTexturetoYUV()