Home
last modified time | relevance | path

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

/external/libyuv/files/unit_test/
Dcolor_test.cc46 align_buffer_page_end(orig_v, kHalfPixels); \
57 MemRandomize(orig_v, kHalfPixels); \
99 orig_v, (benchmark_width_ + 1) / 2, orig_pixels, \
131 free_aligned_buffer_page_end(orig_v); \
152 SIMD_ALIGNED(uint8 orig_v[8]); in YUVToRGB()
156 memset(orig_v, v, kHalfPixels); in YUVToRGB()
159 I422ToARGB(orig_y, kWidth, orig_u, (kWidth + 1) / 2, orig_v, (kWidth + 1) / 2, in YUVToRGB()
175 SIMD_ALIGNED(uint8 orig_v[8]); in YUVJToRGB()
179 memset(orig_v, v, kHalfPixels); in YUVJToRGB()
182 J422ToARGB(orig_y, kWidth, orig_u, (kWidth + 1) / 2, orig_v, (kWidth + 1) / 2, in YUVJToRGB()
Dconvert_test.cc1680 align_buffer_page_end(orig_v, \
1695 orig_u, SUBSAMPLE(kWidth, 2), orig_v, \
1697 libyuv::I420ToNV12(orig_y, kWidth, orig_u, SUBSAMPLE(kWidth, 2), orig_v, \
1721 free_aligned_buffer_page_end(orig_v); \
/external/webp/src/dsp/
Dlossless_enc.c336 const uint32_t orig_v = v; in FastSLog2Slow_C() local
348 correction = (23 * (orig_v & (y - 1))) >> 4; in FastSLog2Slow_C()
360 const uint32_t orig_v = v; in FastLog2Slow_C() local
368 if (orig_v >= APPROX_LOG_MAX) { in FastLog2Slow_C()
371 const int correction = (23 * (orig_v & (y - 1))) >> 4; in FastLog2Slow_C()
372 log_2 += (double)correction / orig_v; in FastLog2Slow_C()
/external/libxcam/modules/soft/
Dsoft_blender_tasks_priv.cpp305 float orig_v[8]; in interplate_luma_8x2() local
309 orig_luma->read_array_no_check<float, 8> (out_x, out_y, orig_v); in interplate_luma_8x2()
310 minus_array_8 (orig_v, inter_value, lap_ret); in interplate_luma_8x2()
315 orig_luma->read_array_no_check<float, 8> (out_x, out_y + 1, orig_v); in interplate_luma_8x2()
316 minus_array_8 (orig_v, inter_value, lap_ret); in interplate_luma_8x2()
/external/tensorflow/tensorflow/python/kernel_tests/
Dcontrol_flow_ops_py_test.py890 orig_v = array_ops.identity(v)
891 merged_op = control_flow_ops.merge([assign_v, orig_v])