Home
last modified time | relevance | path

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

/external/libxcam/xcore/interface/
Dgeo_mapper.cpp40 ERROR, !XCAM_DOUBLE_EQUAL_AROUND (x, 0.0f) && !XCAM_DOUBLE_EQUAL_AROUND (y, 0.0f), false, in set_factors()
Dstitcher.cpp212 if (XCAM_DOUBLE_EQUAL_AROUND (view_slice.hori_angle_start, 0.0001f)) in estimate_round_slices()
322 XCAM_ASSERT (!XCAM_DOUBLE_EQUAL_AROUND (left.hori_angle_range, 0.0f)); in estimate_overlap()
323 XCAM_ASSERT (!XCAM_DOUBLE_EQUAL_AROUND (right.hori_angle_range, 0.0f)); in estimate_overlap()
564 if (XCAM_DOUBLE_EQUAL_AROUND (length_mm, 0.0f) || in get_topview_rect_map()
565 XCAM_DOUBLE_EQUAL_AROUND (width_mm, 0.0f)) { in get_topview_rect_map()
/external/libxcam/xcore/
Dxcam_utils.cpp109 if(XCAM_DOUBLE_EQUAL_AROUND (angle, PI / 2)) { in bowl_view_image_to_world()
112 } else if (XCAM_DOUBLE_EQUAL_AROUND (angle, PI * 3 / 2)) { in bowl_view_image_to_world()
135 if(XCAM_DOUBLE_EQUAL_AROUND (angle, PI / 2)) { in bowl_view_image_to_world()
138 } else if (XCAM_DOUBLE_EQUAL_AROUND (angle, PI * 3 / 2)) { in bowl_view_image_to_world()
/external/libxcam/modules/soft/
Dsoft_geo_tasks_priv.cpp43 !XCAM_DOUBLE_EQUAL_AROUND (factors.x, 0.0f) && in work_range()
44 !XCAM_DOUBLE_EQUAL_AROUND (factors.y, 0.0f)); in work_range()
Dsoft_geo_mapper.cpp95 if (XCAM_DOUBLE_EQUAL_AROUND (factors.x, 0.0f) || in configure_resource()
96 XCAM_DOUBLE_EQUAL_AROUND (factors.y, 0.0f)) { in configure_resource()
Dsoft_stitcher.cpp221 if (XCAM_DOUBLE_EQUAL_AROUND (unify_factor.x, 0.0f) || in init_dewarp_factors()
222 XCAM_DOUBLE_EQUAL_AROUND (unify_factor.y, 0.0f)) { // not started. in init_dewarp_factors()
/external/libxcam/modules/isp/
Daiq_handler.cpp635 if (XCAM_DOUBLE_EQUAL_AROUND(ae_speed, 1.0 )) in adjust_ae_speed()
1491 if (!XCAM_DOUBLE_EQUAL_AROUND (aiq_common->_params.nr_level, 0.0)) { in limit_nr_levels()
1517 if (!XCAM_DOUBLE_EQUAL_AROUND (aiq_common->_params.tnr_level, 0.0)) { in limit_nr_levels()
1524 if (XCAM_DOUBLE_EQUAL_AROUND (aiq_common->_params.tnr_level, 1.0)) { in limit_nr_levels()
1584 if (XCAM_DOUBLE_EQUAL_AROUND (aiq_awb->_params.gr_gain, 0.0) || in integrate()
1585 XCAM_DOUBLE_EQUAL_AROUND (aiq_awb->_params.r_gain, 0.0) || in integrate()
1586 XCAM_DOUBLE_EQUAL_AROUND (aiq_awb->_params.b_gain, 0.0) || in integrate()
1587 XCAM_DOUBLE_EQUAL_AROUND (aiq_awb->_params.gb_gain, 0.0)) { in integrate()
/external/libxcam/modules/ocl/
Dcl_utils.cpp325 …if (XCAM_DOUBLE_EQUAL_AROUND (plane_point_coords[2], 0.0f) && XCAM_DOUBLE_EQUAL_AROUND (plane_poin… in generate_rectifiedview_map_table()
329 } else if (XCAM_DOUBLE_EQUAL_AROUND (plane_point_coords[2], 0.0f)) { in generate_rectifiedview_map_table()
/external/libxcam/xcore/base/
Dxcam_defs.h89 #define XCAM_DOUBLE_EQUAL_AROUND(a, b) \ macro