Home
last modified time | relevance | path

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

/external/libxcam/modules/soft/
Dsoft_blender_tasks_priv.cpp332 interpolate_uv_int_row_4x1 (Uchar2Image *image, uint32_t x, uint32_t y, Float2 *gauss_value, Float2… in interpolate_uv_int_row_4x1() argument
334 image->read_array<Float2, 3> (x, y, gauss_value); in interpolate_uv_int_row_4x1()
335 ret[0] = gauss_value[0]; in interpolate_uv_int_row_4x1()
336 ret[1] = gauss_value[0] + gauss_value[1]; in interpolate_uv_int_row_4x1()
338 ret[2] = gauss_value[1]; in interpolate_uv_int_row_4x1()
339 ret[3] = gauss_value[1] + gauss_value[2]; in interpolate_uv_int_row_4x1()
344 interpolate_uv_half_row_4x1 (Uchar2Image *image, uint32_t x, uint32_t y, Float2 *gauss_value, Float… in interpolate_uv_half_row_4x1() argument
348 ret[0] = (gauss_value[0] + next_gauss_uv[0]) * 0.5f; in interpolate_uv_half_row_4x1()
349 ret[2] = (gauss_value[1] + next_gauss_uv[1]) * 0.5f; in interpolate_uv_half_row_4x1()
350 Float2 tmp = (gauss_value[2] + next_gauss_uv[2]) * 0.5f; in interpolate_uv_half_row_4x1()