Home
last modified time | relevance | path

Searched refs:is_integral (Results 1 – 25 of 108) sorted by relevance

12345

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/type_traits/
H A Dis_integral.hpp19 struct is_integral : public integral_constant<bool, __is_integral(T)> {}; struct
22 template <class T> struct is_integral : public false_type {};
23 template <class T> struct is_integral<const T> : public is_integral<T> {};
24 template <class T> struct is_integral<volatile const T> : public is_integral<T>{};
25 template <class T> struct is_integral<volatile T> : public is_integral<T>{};
30 template<> struct is_integral<unsigned char> : public true_type {};
31 template<> struct is_integral<unsigned short> : public true_type{};
32 template<> struct is_integral<unsigned int> : public true_type{};
33 template<> struct is_integral<unsigned long> : public true_type{};
35 template<> struct is_integral<signed char> : public true_type{};
[all …]
H A Dmake_signed.hpp31 …BOOST_STATIC_ASSERT_MSG(( ::boost::is_integral<T>::value || ::boost::is_enum<T>::value), "The temp…
37 && ::boost::is_integral<T>::value
43 (::boost::is_integral<T>::value
H A Dmake_unsigned.hpp31 …BOOST_STATIC_ASSERT_MSG((::boost::is_integral<T>::value || ::boost::is_enum<T>::value), "The templ…
36 (::boost::is_unsigned<T>::value && ::boost::is_integral<T>::value
42 (::boost::is_integral<T>::value
H A Dhas_right_shift.hpp21 (! ::boost::is_integral< Lhs_noref >::value ) || \
22 (! ::boost::is_integral< Rhs_noref >::value )\
H A Dhas_left_shift.hpp21 (! ::boost::is_integral< Lhs_noref >::value ) || \
22 (! ::boost::is_integral< Rhs_noref >::value )\
H A Dhas_plus.hpp37 (! ::boost::is_integral< Rhs_noref >::value )\
43 (! ::boost::is_integral< Lhs_noref >::value )\
H A Dis_arithmetic.hpp18 struct is_arithmetic : public integral_constant<bool, is_integral<T>::value || is_floating_point<T>…
/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 Drandom.h96 if (is_integral<_Engine_result_type>::value in _GLIBCXX_VISIBILITY()
97 && is_integral<result_type>::value) in _GLIBCXX_VISIBILITY()
108 if (is_integral<_Engine_result_type>::value in _GLIBCXX_VISIBILITY()
109 && is_integral<result_type>::value) in _GLIBCXX_VISIBILITY()
111 else if (!is_integral<result_type>::value) in _GLIBCXX_VISIBILITY()
131 if (is_integral<_Engine_result_type>::value in _GLIBCXX_VISIBILITY()
132 && is_integral<result_type>::value) in _GLIBCXX_VISIBILITY()
134 else if (!is_integral<_Engine_result_type>::value in _GLIBCXX_VISIBILITY()
135 && !is_integral<result_type>::value) in _GLIBCXX_VISIBILITY()
138 else if (is_integral<_Engine_result_type>::value in _GLIBCXX_VISIBILITY()
[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/tr1/
H A Drandom.h96 if (is_integral<_Engine_result_type>::value in _GLIBCXX_VISIBILITY()
97 && is_integral<result_type>::value) in _GLIBCXX_VISIBILITY()
108 if (is_integral<_Engine_result_type>::value in _GLIBCXX_VISIBILITY()
109 && is_integral<result_type>::value) in _GLIBCXX_VISIBILITY()
111 else if (!is_integral<result_type>::value) in _GLIBCXX_VISIBILITY()
131 if (is_integral<_Engine_result_type>::value in _GLIBCXX_VISIBILITY()
132 && is_integral<result_type>::value) in _GLIBCXX_VISIBILITY()
134 else if (!is_integral<_Engine_result_type>::value in _GLIBCXX_VISIBILITY()
135 && !is_integral<result_type>::value) in _GLIBCXX_VISIBILITY()
138 else if (is_integral<_Engine_result_type>::value in _GLIBCXX_VISIBILITY()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/index/detail/algorithms/
H A Ddiff_abs.hpp32 boost::is_integral<T>::value in diff_abs()
33 > is_integral; in diff_abs() typedef
34 return diff_abs_dispatch(v1, v2, is_integral()); in diff_abs()
/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 Dcharconv.h49 static_assert(is_integral<_Tp>::value, "implementation bug"); in _GLIBCXX_VISIBILITY()
74 static_assert(is_integral<_Tp>::value, "implementation bug"); in _GLIBCXX_VISIBILITY()
/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 Dcharconv.h49 static_assert(is_integral<_Tp>::value, "implementation bug"); in _GLIBCXX_VISIBILITY()
74 static_assert(is_integral<_Tp>::value, "implementation bug"); in _GLIBCXX_VISIBILITY()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/math/
H A Dminmax.hpp11 typename std::enable_if_t<std::is_integral<T>::value, T> max(T a, T b) { in max()
26 typename std::enable_if_t<std::is_integral<T>::value, T> min(T a, T b) { in min()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/strategies/cartesian/
H A Dside_by_triangle.hpp243 boost::is_integral<coordinate_type1>::value in apply()
244 && boost::is_integral<coordinate_type2>::value in apply()
245 && boost::is_integral<coordinate_type3>::value; in apply()
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/libcxx/include/
H A D__functional_03463 typename enable_if<!is_integral<_Fp>::value>::type* = 0);
475 typename enable_if<!is_integral<_Fp>::value>::type* = 0);
482 !is_integral<_Fp>::value,
549 typename enable_if<!is_integral<_Fp>::value>::type*)
575 typename enable_if<!is_integral<_Fp>::value>::type*)
627 !is_integral<_Fp>::value,
743 typename enable_if<!is_integral<_Fp>::value>::type* = 0);
755 typename enable_if<!is_integral<_Fp>::value>::type* = 0);
762 !is_integral<_Fp>::value,
829 typename enable_if<!is_integral<_Fp>::value>::type*)
[all …]
H A Datomic890 template <class _Tp, bool = is_integral<_Tp>::value && !is_same<_Tp, bool>::value>
1398 is_integral<_Tp>::value && !is_same<_Tp, bool>::value,
1410 is_integral<_Tp>::value && !is_same<_Tp, bool>::value,
1440 is_integral<_Tp>::value && !is_same<_Tp, bool>::value,
1452 is_integral<_Tp>::value && !is_same<_Tp, bool>::value,
1483 is_integral<_Tp>::value && !is_same<_Tp, bool>::value,
1495 is_integral<_Tp>::value && !is_same<_Tp, bool>::value,
1525 is_integral<_Tp>::value && !is_same<_Tp, bool>::value,
1537 is_integral<_Tp>::value && !is_same<_Tp, bool>::value,
1568 is_integral<_Tp>::value && !is_same<_Tp, bool>::value,
[all …]
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/libcxx/include/
H A D__functional_03463 typename enable_if<!is_integral<_Fp>::value>::type* = 0);
475 typename enable_if<!is_integral<_Fp>::value>::type* = 0);
482 !is_integral<_Fp>::value,
549 typename enable_if<!is_integral<_Fp>::value>::type*)
575 typename enable_if<!is_integral<_Fp>::value>::type*)
627 !is_integral<_Fp>::value,
743 typename enable_if<!is_integral<_Fp>::value>::type* = 0);
755 typename enable_if<!is_integral<_Fp>::value>::type* = 0);
762 !is_integral<_Fp>::value,
829 typename enable_if<!is_integral<_Fp>::value>::type*)
[all …]
H A Datomic890 template <class _Tp, bool = is_integral<_Tp>::value && !is_same<_Tp, bool>::value>
1398 is_integral<_Tp>::value && !is_same<_Tp, bool>::value,
1410 is_integral<_Tp>::value && !is_same<_Tp, bool>::value,
1440 is_integral<_Tp>::value && !is_same<_Tp, bool>::value,
1452 is_integral<_Tp>::value && !is_same<_Tp, bool>::value,
1483 is_integral<_Tp>::value && !is_same<_Tp, bool>::value,
1495 is_integral<_Tp>::value && !is_same<_Tp, bool>::value,
1525 is_integral<_Tp>::value && !is_same<_Tp, bool>::value,
1537 is_integral<_Tp>::value && !is_same<_Tp, bool>::value,
1568 is_integral<_Tp>::value && !is_same<_Tp, bool>::value,
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/
H A Dinteger_traits.hpp47 BOOST_STATIC_CONSTANT(bool, is_integral = false);
55 BOOST_STATIC_CONSTANT(bool, is_integral = true);
63 const bool integer_traits_base<T, min_val, max_val>::is_integral; member in boost::detail::integer_traits_base<T, min_val, max_val>
/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/
H A Dcharconv122 static_assert(is_integral<_Tp>::value, "implementation bug");
163 static_assert(is_integral<_Tp>::value, "implementation bug");
210 static_assert(is_integral<_Tp>::value, "implementation bug");
234 static_assert(is_integral<_Tp>::value, "implementation bug");
288 static_assert(is_integral<_Tp>::value, "implementation bug");
416 static_assert(is_integral<_Tp>::value, "implementation bug");
444 static_assert(is_integral<_Tp>::value, "implementation bug");
/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/
H A Dcharconv122 static_assert(is_integral<_Tp>::value, "implementation bug");
163 static_assert(is_integral<_Tp>::value, "implementation bug");
210 static_assert(is_integral<_Tp>::value, "implementation bug");
234 static_assert(is_integral<_Tp>::value, "implementation bug");
288 static_assert(is_integral<_Tp>::value, "implementation bug");
416 static_assert(is_integral<_Tp>::value, "implementation bug");
444 static_assert(is_integral<_Tp>::value, "implementation bug");
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/function/
H A Dfunction_template.hpp710 !(is_integral<Functor>::value), in BOOST_FUNCTION_FUNCTION()
722 !(is_integral<Functor>::value), in BOOST_FUNCTION_FUNCTION()
771 !(is_integral<Functor>::value),
1057 !(is_integral<Functor>::value), in function()
1068 !(is_integral<Functor>::value), in function()
1107 !(is_integral<Functor>::value),
H A Dfunction_base.hpp54 !(::boost::is_integral<Functor>::value), \
733 typedef mpl::bool_<(is_integral<Functor>::value)> integral; in operator ==()
740 typedef mpl::bool_<(is_integral<Functor>::value)> integral; in operator ==()
747 typedef mpl::bool_<(is_integral<Functor>::value)> integral; in operator !=()
754 typedef mpl::bool_<(is_integral<Functor>::value)> integral; in operator !=()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/policies/robustness/
H A Dsegment_ratio.hpp33 bool IsIntegral = boost::is_integral<Type>::type::value
64 bool IsIntegral = boost::is_integral<Type>::type::value
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/util/
H A Dpromote_floating_point.hpp40 boost::is_integral<T>,

12345