Searched refs:ref_y (Results 1 – 6 of 6) sorted by relevance
/external/libvpx/libvpx/tools/3D-Reconstruction/MotionEST/ |
D | Exhaust.py | 37 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 …]
|
D | MotionEST.py | 54 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/ |
D | saved_model_experimental_test.py | 70 ref_y = model.predict(x) 77 self.assertAllClose(ref_y, y, atol=1e-05) 87 ref_y = model.predict(x) 94 self.assertAllClose(ref_y, y, atol=1e-05) 111 ref_y = model.predict(x) 118 self.assertAllClose(ref_y, y, atol=1e-05) 131 ref_y = model.predict(x) 138 self.assertAllClose(ref_y, y, atol=1e-05) 152 ref_y = model.predict(x) 162 self.assertAllClose(ref_y, y, atol=1e-05) [all …]
|
D | save_weights_test.py | 72 ref_y = model.predict(x) 76 self.assertAllClose(ref_y, y) 86 self.assertAllClose(ref_y, y) 231 ref_y = model.predict(x) 241 self.assertAllClose(y, ref_y) 271 ref_y = model.predict(x) 279 self.assertAllClose(y, ref_y) 535 ref_y = self.evaluate(ref_y_tensor) 555 self.assertAllClose(ref_y, y)
|
/external/libgav1/libgav1/src/tile/ |
D | prediction.cc | 1078 for (int y = 0, ref_y = copy_start_y; y < block_height; ++y) { in BuildConvolveBlock() local 1079 Memset(buf_ptr, reference_block[ref_y][ref_x], block_extended_width); in BuildConvolveBlock() 1082 ++ref_y; in BuildConvolveBlock() 1089 for (int y = 0, ref_y = copy_start_y; y < block_height; ++y) { in BuildConvolveBlock() local 1091 Memset(buf_ptr, reference_block[ref_y][copy_start_x], left_width); in BuildConvolveBlock() 1093 memcpy(buf_ptr + left_width, &reference_block[ref_y][copy_start_x], in BuildConvolveBlock() 1097 reference_block[ref_y][copy_end_x], in BuildConvolveBlock() 1102 ++ref_y; in BuildConvolveBlock()
|
/external/webrtc/sdk/android/instrumentationtests/src/org/webrtc/ |
D | SurfaceTextureHelperTest.java | 460 final int ref_y[] = new int[] {85, 170, 161}; in testTexturetoYuv() local 498 assertClose(1, ref_y[i], dataY.get(y * strideY + x) & 0xFF); in testTexturetoYuv()
|