Home
last modified time | relevance | path

Searched refs:abs (Results 1 – 25 of 1197) sorted by relevance

12345678910>>...48

/OK3568_Linux_fs/kernel/drivers/input/sensors/accel/da228e/
H A Dda228e_core.c90 delta_sum = abs(max_x - min_x) + abs(max_y - min_y) + in da228e_temp_calibrate_detect_static()
91 abs(max_z - min_z); in da228e_temp_calibrate_detect_static()
110 if ((abs(*x) < MIR3DA_OFFSET_MAX) && in da228e_temp_calibrate()
111 (abs(*y) < MIR3DA_OFFSET_MAX)) { in da228e_temp_calibrate()
120 if (abs(abs(*z) - MIR3DA_OFFSET_SEN) > MIR3DA_OFFSET_CUS) { in da228e_temp_calibrate()
128 } else if ((abs((abs(*x) - MIR3DA_OFFSET_SEN)) < MIR3DA_OFFSET_MAX) && in da228e_temp_calibrate()
129 (abs(*y) < MIR3DA_OFFSET_MAX) && (z_offset)) { in da228e_temp_calibrate()
130 if (abs(*x) > MIR3DA_OFFSET_SEN) { in da228e_temp_calibrate()
132 (*x - (abs(*x) - MIR3DA_OFFSET_SEN)*cus/MIR3DA_OFFSET_MAX) : in da228e_temp_calibrate()
133 (*x + (abs(*x) - MIR3DA_OFFSET_SEN)*cus/MIR3DA_OFFSET_MAX); in da228e_temp_calibrate()
[all …]
/OK3568_Linux_fs/kernel/drivers/input/sensors/accel/da215s/
H A Dda215s_core.c93 delta_sum = abs(max_x - min_x) + abs(max_y - min_y) + abs(max_z - min_z); in da215s_temp_calibrate_detect_static()
112 if ((abs(*x) < MIR3DA_OFFSET_MAX) && (abs(*y) < MIR3DA_OFFSET_MAX)) { in da215s_temp_calibrate()
121 if (abs(abs(*z) - MIR3DA_OFFSET_SEN) > MIR3DA_OFFSET_CUS) { in da215s_temp_calibrate()
130 } else if ((abs((abs(*x)-MIR3DA_OFFSET_SEN)) < MIR3DA_OFFSET_MAX) && in da215s_temp_calibrate()
131 (abs(*y) < MIR3DA_OFFSET_MAX) && (z_offset)) { in da215s_temp_calibrate()
132 if (abs(*x) > MIR3DA_OFFSET_SEN) { in da215s_temp_calibrate()
134 (*x - (abs(*x) - MIR3DA_OFFSET_SEN) * cus/MIR3DA_OFFSET_MAX) : in da215s_temp_calibrate()
135 (*x + (abs(*x) - MIR3DA_OFFSET_SEN) * cus/MIR3DA_OFFSET_MAX); in da215s_temp_calibrate()
138 (*x + (MIR3DA_OFFSET_SEN-abs(*x)) * cus/MIR3DA_OFFSET_MAX) : in da215s_temp_calibrate()
139 (*x - (MIR3DA_OFFSET_SEN-abs(*x)) * cus/MIR3DA_OFFSET_MAX); in da215s_temp_calibrate()
[all …]
/OK3568_Linux_fs/kernel/drivers/input/touchscreen/cyttsp5/
H A Dcyttsp5_mt_common.c115 enum cyttsp5_tch_abs abs; in cyttsp5_get_touch_record() local
117 for (abs = CY_TCH_X; abs < CY_TCH_NUM_ABS; abs++) { in cyttsp5_get_touch_record()
118 if (!si->tch_abs[abs].report) in cyttsp5_get_touch_record()
120 cyttsp5_get_touch_axis(md, &touch->abs[abs], in cyttsp5_get_touch_record()
121 si->tch_abs[abs].size, in cyttsp5_get_touch_record()
122 si->tch_abs[abs].max, in cyttsp5_get_touch_record()
123 xy_data + si->tch_abs[abs].ofs, in cyttsp5_get_touch_record()
124 si->tch_abs[abs].bofs); in cyttsp5_get_touch_record()
126 __func__, cyttsp5_tch_abs_string[abs], in cyttsp5_get_touch_record()
127 touch->abs[abs], touch->abs[abs]); in cyttsp5_get_touch_record()
[all …]
H A Dcyttsp5_proximity.c104 enum cyttsp5_tch_abs abs; in cyttsp5_get_touch() local
106 for (abs = CY_TCH_X; abs < CY_TCH_NUM_ABS; abs++) { in cyttsp5_get_touch()
107 if (!si->tch_abs[abs].report) in cyttsp5_get_touch()
109 cyttsp5_get_touch_axis(pd, &touch->abs[abs], in cyttsp5_get_touch()
110 si->tch_abs[abs].size, in cyttsp5_get_touch()
111 si->tch_abs[abs].max, in cyttsp5_get_touch()
112 xy_data + si->tch_abs[abs].ofs, in cyttsp5_get_touch()
113 si->tch_abs[abs].bofs); in cyttsp5_get_touch()
115 __func__, cyttsp5_tch_abs_string[abs], in cyttsp5_get_touch()
116 touch->abs[abs], touch->abs[abs]); in cyttsp5_get_touch()
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/bits/
H A Dstd_abs.h44 #undef abs
52 using ::abs; in _GLIBCXX_VISIBILITY()
56 abs(long __i) { return __builtin_labs(__i); } in _GLIBCXX_VISIBILITY()
61 abs(long long __x) { return __builtin_llabs (__x); } in _GLIBCXX_VISIBILITY()
71 abs(double __x) in _GLIBCXX_VISIBILITY()
75 abs(float __x) in _GLIBCXX_VISIBILITY()
79 abs(long double __x) in _GLIBCXX_VISIBILITY()
85 abs(__GLIBCXX_TYPE_INT_N_0 __x) { return __x >= 0 ? __x : -__x; } in _GLIBCXX_VISIBILITY()
89 abs(__GLIBCXX_TYPE_INT_N_1 __x) { return __x >= 0 ? __x : -__x; } in _GLIBCXX_VISIBILITY()
93 abs(__GLIBCXX_TYPE_INT_N_2 __x) { return __x >= 0 ? __x : -__x; } in _GLIBCXX_VISIBILITY()
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/bits/
H A Dstd_abs.h44 #undef abs
52 using ::abs; in _GLIBCXX_VISIBILITY()
56 abs(long __i) { return __builtin_labs(__i); } in _GLIBCXX_VISIBILITY()
61 abs(long long __x) { return __builtin_llabs (__x); } in _GLIBCXX_VISIBILITY()
71 abs(double __x) in _GLIBCXX_VISIBILITY()
75 abs(float __x) in _GLIBCXX_VISIBILITY()
79 abs(long double __x) in _GLIBCXX_VISIBILITY()
85 abs(__GLIBCXX_TYPE_INT_N_0 __x) { return __x >= 0 ? __x : -__x; } in _GLIBCXX_VISIBILITY()
89 abs(__GLIBCXX_TYPE_INT_N_1 __x) { return __x >= 0 ? __x : -__x; } in _GLIBCXX_VISIBILITY()
93 abs(__GLIBCXX_TYPE_INT_N_2 __x) { return __x >= 0 ? __x : -__x; } in _GLIBCXX_VISIBILITY()
[all …]
/OK3568_Linux_fs/kernel/tools/testing/selftests/timens/
H A Dclock_nanosleep.c29 int abs; member
36 clock_nanosleep(args->clockid, args->abs ? TIMER_ABSTIME : 0, args->now, args->rem); in call_nanosleep()
41 int run_test(int clockid, int abs) in run_test() argument
63 if (abs) { in run_test()
69 args.abs = abs; in run_test()
100 ksft_test_result_pass("clockid: %d abs:%d timeout\n", clockid, abs); in run_test()
106 clockid, abs, rem.tv_sec); in run_test()
109 ksft_test_result_pass("clockid: %d abs:%d\n", clockid, abs); in run_test()
/OK3568_Linux_fs/kernel/drivers/input/touchscreen/
H A Dcyttsp4_core.c377 enum cyttsp4_tch_abs abs; in cyttsp4_si_get_opcfg_data() local
421 for (abs = CY_TCH_X; abs < CY_NUM_TCH_FIELDS; abs++) { in cyttsp4_si_get_opcfg_data()
422 tch = &si->si_ofs.tch_abs[abs]; in cyttsp4_si_get_opcfg_data()
423 tch_old = &si->si_ptrs.opcfg->tch_rec_old[abs]; in cyttsp4_si_get_opcfg_data()
438 for (i = 0; i < CY_NUM_EXT_TCH_FIELDS; abs++, i++) { in cyttsp4_si_get_opcfg_data()
439 tch = &si->si_ofs.tch_abs[abs]; in cyttsp4_si_get_opcfg_data()
449 for (abs = 0; abs < CY_TCH_NUM_ABS; abs++) { in cyttsp4_si_get_opcfg_data()
451 cyttsp4_tch_abs_string[abs]); in cyttsp4_si_get_opcfg_data()
453 si->si_ofs.tch_abs[abs].ofs); in cyttsp4_si_get_opcfg_data()
455 si->si_ofs.tch_abs[abs].size); in cyttsp4_si_get_opcfg_data()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/algorithms/detail/
H A Ddirection_code.hpp80 calc_t ax = (std::min)(math::abs(x1), math::abs(x2)); in apply()
81 calc_t ay = (std::min)(math::abs(y1), math::abs(y2)); in apply()
137 bool const is_a_pole = math::equals(pi_half1, math::abs(a1)); in apply()
138 bool const is_b_pole = math::equals(pi_half1, math::abs(b1)); in apply()
139 bool const is_p_pole = math::equals(pi_half2, math::abs(p1)); in apply()
159 (std::min)(is_antilon1 ? c0 : math::abs(dlon1), in apply()
160 is_antilon2 ? c0 : math::abs(dlon2)); in apply()
161 calc_t my = (std::min)(math::abs(dlat1), in apply()
162 math::abs(dlat2)); in apply()
186 is_antilon = math::equals(math::abs(lon_ds), pi); in latitude_distance_signed()
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/tr1/
H A Dbessel_function.tcc111 if (std::abs(__mu) < std::numeric_limits<_Tp>::epsilon()) in __gamma_temme()
193 if (std::abs(__d) < __fp_min) in __bessel_jn()
196 if (std::abs(__c) < __fp_min) in __bessel_jn()
203 if (std::abs(__del - _Tp(1)) < __eps) in __bessel_jn()
229 _Tp __fact = (std::abs(__pimu) < __eps in __bessel_jn()
233 _Tp __fact2 = (std::abs(__e) < __eps in __bessel_jn()
243 _Tp __fact3 = (std::abs(__pimu2) < __eps in __bessel_jn()
260 if ( std::abs(__del) < __eps * (_Tp(1) + std::abs(__sum)) ) in __bessel_jn()
296 if (std::abs(__dr) + std::abs(__di) < __fp_min) in __bessel_jn()
301 if (std::abs(__cr) + std::abs(__ci) < __fp_min) in __bessel_jn()
[all …]
H A Dhypergeometric.tcc97 if (std::abs(__term) < __eps) in __conf_hyperg_series()
169 __prec = std::abs((__F - __r) / __F); in __conf_hyperg_luke()
175 if (std::abs(__An) > __big || std::abs(__Bn) > __big) in __conf_hyperg_luke()
186 else if (std::abs(__An) < _Tp(1) / __big in __conf_hyperg_luke()
187 || std::abs(__Bn) < _Tp(1) / __big) in __conf_hyperg_luke()
285 if (std::abs(__term) < __eps) in __hyperg_series()
361 const _Tp __prec = std::abs((__F - __r) / __F); in __hyperg_luke()
367 if (std::abs(__An) > __big || std::abs(__Bn) > __big) in __hyperg_luke()
378 else if (std::abs(__An) < _Tp(1) / __big in __hyperg_luke()
379 || std::abs(__Bn) < _Tp(1) / __big) in __hyperg_luke()
[all …]
H A Dell_integral.tcc115 _Tp __epsilon = std::max(std::abs(__xndev), std::abs(__yndev)); in __ellint_rf()
116 __epsilon = std::max(__epsilon, std::abs(__zndev)); in __ellint_rf()
200 else if (std::abs(__k) >= _Tp(1)) in __comp_ellint_1()
228 else if (std::abs(__k) > _Tp(1)) in __ellint_1()
357 _Tp __epsilon = std::max(std::abs(__xndev), std::abs(__yndev)); in __ellint_rd()
358 __epsilon = std::max(__epsilon, std::abs(__zndev)); in __ellint_rd()
410 else if (std::abs(__k) == 1) in __comp_ellint_2()
412 else if (std::abs(__k) > _Tp(1)) in __comp_ellint_2()
444 else if (std::abs(__k) > _Tp(1)) in __ellint_2()
529 if (std::abs(__sn) < __errtol) in __ellint_rc()
[all …]
H A Dexp_integral.tcc93 if (std::abs(__term) < __eps) in __expint_E1_series()
130 if (std::abs(__term) > std::abs(__prev)) in __expint_E1_asymp()
180 if (std::abs(__del) < __eps * std::abs(__ans)) in __expint_En_series()
221 if (std::abs(__del - _Tp(1)) < __eps) in __expint_En_cont_frac()
418 if (std::abs(__term) > std::abs(__prev)) in __expint_asymp()
454 if (std::abs(__term) < std::numeric_limits<_Tp>::epsilon()) in __expint_large_n()
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/tr1/
H A Dbessel_function.tcc111 if (std::abs(__mu) < std::numeric_limits<_Tp>::epsilon()) in __gamma_temme()
193 if (std::abs(__d) < __fp_min) in __bessel_jn()
196 if (std::abs(__c) < __fp_min) in __bessel_jn()
203 if (std::abs(__del - _Tp(1)) < __eps) in __bessel_jn()
229 _Tp __fact = (std::abs(__pimu) < __eps in __bessel_jn()
233 _Tp __fact2 = (std::abs(__e) < __eps in __bessel_jn()
243 _Tp __fact3 = (std::abs(__pimu2) < __eps in __bessel_jn()
260 if ( std::abs(__del) < __eps * (_Tp(1) + std::abs(__sum)) ) in __bessel_jn()
296 if (std::abs(__dr) + std::abs(__di) < __fp_min) in __bessel_jn()
301 if (std::abs(__cr) + std::abs(__ci) < __fp_min) in __bessel_jn()
[all …]
H A Dhypergeometric.tcc97 if (std::abs(__term) < __eps) in __conf_hyperg_series()
169 __prec = std::abs((__F - __r) / __F); in __conf_hyperg_luke()
175 if (std::abs(__An) > __big || std::abs(__Bn) > __big) in __conf_hyperg_luke()
186 else if (std::abs(__An) < _Tp(1) / __big in __conf_hyperg_luke()
187 || std::abs(__Bn) < _Tp(1) / __big) in __conf_hyperg_luke()
285 if (std::abs(__term) < __eps) in __hyperg_series()
361 const _Tp __prec = std::abs((__F - __r) / __F); in __hyperg_luke()
367 if (std::abs(__An) > __big || std::abs(__Bn) > __big) in __hyperg_luke()
378 else if (std::abs(__An) < _Tp(1) / __big in __hyperg_luke()
379 || std::abs(__Bn) < _Tp(1) / __big) in __hyperg_luke()
[all …]
H A Dell_integral.tcc115 _Tp __epsilon = std::max(std::abs(__xndev), std::abs(__yndev)); in __ellint_rf()
116 __epsilon = std::max(__epsilon, std::abs(__zndev)); in __ellint_rf()
200 else if (std::abs(__k) >= _Tp(1)) in __comp_ellint_1()
228 else if (std::abs(__k) > _Tp(1)) in __ellint_1()
357 _Tp __epsilon = std::max(std::abs(__xndev), std::abs(__yndev)); in __ellint_rd()
358 __epsilon = std::max(__epsilon, std::abs(__zndev)); in __ellint_rd()
410 else if (std::abs(__k) == 1) in __comp_ellint_2()
412 else if (std::abs(__k) > _Tp(1)) in __comp_ellint_2()
444 else if (std::abs(__k) > _Tp(1)) in __ellint_2()
529 if (std::abs(__sn) < __errtol) in __ellint_rc()
[all …]
H A Dexp_integral.tcc93 if (std::abs(__term) < __eps) in __expint_E1_series()
130 if (std::abs(__term) > std::abs(__prev)) in __expint_E1_asymp()
180 if (std::abs(__del) < __eps * std::abs(__ans)) in __expint_En_series()
221 if (std::abs(__del - _Tp(1)) < __eps) in __expint_En_cont_frac()
418 if (std::abs(__term) > std::abs(__prev)) in __expint_asymp()
454 if (std::abs(__term) < std::numeric_limits<_Tp>::epsilon()) in __expint_large_n()
/OK3568_Linux_fs/kernel/drivers/virtio/
H A Dvirtio_input.c157 static void virtinput_cfg_abs(struct virtio_input *vi, int abs) in virtinput_cfg_abs() argument
161 virtinput_cfg_select(vi, VIRTIO_INPUT_CFG_ABS_INFO, abs); in virtinput_cfg_abs()
162 virtio_cread_le(vi->vdev, struct virtio_input_config, u.abs.min, &mi); in virtinput_cfg_abs()
163 virtio_cread_le(vi->vdev, struct virtio_input_config, u.abs.max, &ma); in virtinput_cfg_abs()
164 virtio_cread_le(vi->vdev, struct virtio_input_config, u.abs.res, &re); in virtinput_cfg_abs()
165 virtio_cread_le(vi->vdev, struct virtio_input_config, u.abs.fuzz, &fu); in virtinput_cfg_abs()
166 virtio_cread_le(vi->vdev, struct virtio_input_config, u.abs.flat, &fl); in virtinput_cfg_abs()
167 input_set_abs_params(vi->idev, abs, mi, ma, fu, fl); in virtinput_cfg_abs()
168 input_abs_set_res(vi->idev, abs, re); in virtinput_cfg_abs()
169 if (abs == ABS_MT_TRACKING_ID) { in virtinput_cfg_abs()
[all …]
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/cuda/
H A Dborder_interpolate.hpp280 return ::abs(x) % (last_col + 1); in idx_col_low()
285 return ::abs(last_col - ::abs(last_col - x)) % (last_col + 1); in idx_col_high()
320 return ::abs(y) % (last_row + 1); in idx_row_low()
325 return ::abs(last_row - ::abs(last_row - y)) % (last_row + 1); in idx_row_high()
360 return ::abs(y) % (last_row + 1); in idx_row_low()
365 return ::abs(last_row - ::abs(last_row - y)) % (last_row + 1); in idx_row_high()
375 return ::abs(x) % (last_col + 1); in idx_col_low()
380 return ::abs(last_col - ::abs(last_col - x)) % (last_col + 1); in idx_col_high()
414 return (::abs(x) - (x < 0)) % (last_col + 1); in idx_col_low()
419 return ::abs(last_col - ::abs(last_col - x) + (x > last_col)) % (last_col + 1); in idx_col_high()
[all …]
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-armhf/include/opencv2/core/cuda/
H A Dborder_interpolate.hpp280 return ::abs(x) % (last_col + 1); in idx_col_low()
285 return ::abs(last_col - ::abs(last_col - x)) % (last_col + 1); in idx_col_high()
320 return ::abs(y) % (last_row + 1); in idx_row_low()
325 return ::abs(last_row - ::abs(last_row - y)) % (last_row + 1); in idx_row_high()
360 return ::abs(y) % (last_row + 1); in idx_row_low()
365 return ::abs(last_row - ::abs(last_row - y)) % (last_row + 1); in idx_row_high()
375 return ::abs(x) % (last_col + 1); in idx_col_low()
380 return ::abs(last_col - ::abs(last_col - x)) % (last_col + 1); in idx_col_high()
414 return (::abs(x) - (x < 0)) % (last_col + 1); in idx_col_low()
419 return ::abs(last_col - ::abs(last_col - x) + (x > last_col)) % (last_col + 1); in idx_col_high()
[all …]
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-aarch64/include/opencv2/core/cuda/
H A Dborder_interpolate.hpp280 return ::abs(x) % (last_col + 1); in idx_col_low()
285 return ::abs(last_col - ::abs(last_col - x)) % (last_col + 1); in idx_col_high()
320 return ::abs(y) % (last_row + 1); in idx_row_low()
325 return ::abs(last_row - ::abs(last_row - y)) % (last_row + 1); in idx_row_high()
360 return ::abs(y) % (last_row + 1); in idx_row_low()
365 return ::abs(last_row - ::abs(last_row - y)) % (last_row + 1); in idx_row_high()
375 return ::abs(x) % (last_col + 1); in idx_col_low()
380 return ::abs(last_col - ::abs(last_col - x)) % (last_col + 1); in idx_col_high()
414 return (::abs(x) - (x < 0)) % (last_col + 1); in idx_col_low()
419 return ::abs(last_col - ::abs(last_col - x) + (x > last_col)) % (last_col + 1); in idx_col_high()
[all …]
/OK3568_Linux_fs/kernel/drivers/input/sensors/accel/
H A Dsc7a30.c268 if (abs(pcalidata->xfoutput) < err) { in check_output_set_finalflag()
272 if (abs(pcalidata->yfoutput) < err) { in check_output_set_finalflag()
276 if (abs(pcalidata->zfoutput) < err) { in check_output_set_finalflag()
349 if (abs(pcalidata->xfoutput)<25)pcalidata->xtempf=1; in updata_mmis_pnfoutput_set_tempflag()
350 if (abs(pcalidata->yfoutput)<25)pcalidata->ytempf=1; in updata_mmis_pnfoutput_set_tempflag()
351 if (abs(pcalidata->zfoutput)<25)pcalidata->ztempf=1; in updata_mmis_pnfoutput_set_tempflag()
401 if (abs(pcalidata->xfoutput)<3)pcalidata->xtempf = 1; in updata_moff_pnfoutput_set_tempflag()
402 if (abs(pcalidata->yfoutput)<3)pcalidata->ytempf = 1; in updata_moff_pnfoutput_set_tempflag()
403 if (abs(pcalidata->zfoutput)<3)pcalidata->ztempf = 1; in updata_moff_pnfoutput_set_tempflag()
537 if (abs(calidata.xpoutput)<=abs(calidata.xnoutput)) { in auto_calibration_instant()
[all …]
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-aarch64/include/opencv2/flann/
H A Ddist.h58 inline T abs(T x) { return (x<0) ? -x : x; } in abs() function
61 inline int abs<int>(int x) { return ::abs(x); }
64 inline float abs<float>(float x) { return fabsf(x); }
67 inline double abs<double>(double x) { return fabs(x); }
225 diff0 = (ResultType)abs(a[0] - b[0]);
226 diff1 = (ResultType)abs(a[1] - b[1]);
227 diff2 = (ResultType)abs(a[2] - b[2]);
228 diff3 = (ResultType)abs(a[3] - b[3]);
239 diff0 = (ResultType)abs(*a++ - *b++);
251 return abs(a-b);
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/strategies/agnostic/
H A Dbuffer_distance_asymmetric.hpp64 return negative() ? math::abs(result) : result; in apply()
86 NumericType const left = geometry::math::abs(m_left); in max_distance()
87 NumericType const right = geometry::math::abs(m_right); in max_distance()
96 NumericType const left = geometry::math::abs(m_left); in simplify_distance()
97 NumericType const right = geometry::math::abs(m_right); in simplify_distance()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/util/
H A Dmath.hpp89 struct abs struct
99 struct abs<T, true> struct
117 return greatest(abs<T>::apply(a), abs<T>::apply(b), T(1)); in apply()
128 : factor(greatest(abs<T>::apply(v), T(1))) in equals_factor_policy()
131 : factor(greatest(abs<T>::apply(v0), abs<T>::apply(v1), in equals_factor_policy()
132 abs<T>::apply(v2), abs<T>::apply(v3), in equals_factor_policy()
185 return abs<Type>::apply(a - b) in apply()
460 return (std::max)(abs<T>::apply(val), T(1)) in apply()
744 inline T abs(T const& value) in abs() function
746 return detail::abs<T>::apply(value); in abs()

12345678910>>...48