Searched refs:orig_v (Results 1 – 2 of 2) sorted by relevance
/external/libyuv/files/unit_test/ |
D | rotate_test.cc | 717 align_buffer_16(orig_v, uv_plane_size) in TEST_F() 729 memset(orig_v, 0, uv_plane_size); in TEST_F() 750 orig_v[i * (uvw + b * 2) + j] = random() & 0xff; in TEST_F() 766 orig_v+uv_off_0, uv_st_0, in TEST_F() 801 if (orig_v[i] != ro0_v[i]) { in TEST_F() 808 free_aligned_buffer_16(orig_v) in TEST_F() 840 align_buffer_16(orig_v, uv_plane_size) in TEST_F() 852 memset(orig_v, 0, uv_plane_size); in TEST_F() 873 orig_v[i * (uvw + b * 2) + j] = random() & 0xff; in TEST_F() 889 orig_v+uv_off_0, uv_st_0, in TEST_F() [all …]
|
/external/webp/src/dsp/ |
D | lossless_enc.c | 339 const uint32_t orig_v = v; in FastSLog2Slow() local 351 correction = (23 * (orig_v & (y - 1))) >> 4; in FastSLog2Slow() 363 const uint32_t orig_v = v; in FastLog2Slow() local 371 if (orig_v >= APPROX_LOG_MAX) { in FastLog2Slow() 374 const int correction = (23 * (orig_v & (y - 1))) >> 4; in FastLog2Slow() 375 log_2 += (double)correction / orig_v; in FastLog2Slow()
|