| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/type_traits/ |
| H A D | intrinsics.hpp | 67 # define BOOST_IS_POD(T) ::boost::is_same< typename ::__type_traits<T>::is_POD_type, ::__true_typ… argument 68 # define BOOST_HAS_TRIVIAL_CONSTRUCTOR(T) ::boost::is_same< typename ::__type_traits<T>::has_triv… argument 69 # define BOOST_HAS_TRIVIAL_COPY(T) ::boost::is_same< typename ::__type_traits<T>::has_trivial_cop… argument 70 # define BOOST_HAS_TRIVIAL_ASSIGN(T) ::boost::is_same< typename ::__type_traits<T>::has_trivial_a… argument 71 # define BOOST_HAS_TRIVIAL_DESTRUCTOR(T) ::boost::is_same< typename ::__type_traits<T>::has_trivi… argument 84 # define BOOST_IS_UNION(T) BOOST_STD_EXTENSION_NAMESPACE::is_union<T>::value argument 85 # define BOOST_IS_POD(T) BOOST_STD_EXTENSION_NAMESPACE::is_POD<T>::value argument 86 # define BOOST_HAS_TRIVIAL_CONSTRUCTOR(T) BOOST_STD_EXTENSION_NAMESPACE::has_trivial_default_ctor… argument 87 # define BOOST_HAS_TRIVIAL_COPY(T) BOOST_STD_EXTENSION_NAMESPACE::has_trivial_copy_ctor<T>::value argument 88 # define BOOST_HAS_TRIVIAL_ASSIGN(T) BOOST_STD_EXTENSION_NAMESPACE::has_trivial_assignment<T>::va… argument [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/math/tools/ |
| H A D | precision.hpp | 42 inline BOOST_MATH_CONSTEXPR int digits(BOOST_MATH_EXPLICIT_TEMPLATE_TYPE_SPEC(T)) BOOST_NOEXCEPT in digits() 57 inline BOOST_MATH_CONSTEXPR T max_value(BOOST_MATH_EXPLICIT_TEMPLATE_TYPE(T)) BOOST_MATH_NOEXCEPT(… in max_value() 69 inline BOOST_MATH_CONSTEXPR T min_value(BOOST_MATH_EXPLICIT_TEMPLATE_TYPE(T)) BOOST_MATH_NOEXCEPT(T) in min_value() 89 inline BOOST_MATH_CONSTEXPR T log_max_value(const mpl::int_<128>& BOOST_MATH_APPEND_EXPLICIT_TEMPLA… in log_max_value() 95 inline BOOST_MATH_CONSTEXPR T log_min_value(const mpl::int_<128>& BOOST_MATH_APPEND_EXPLICIT_TEMPLA… in log_min_value() 103 inline BOOST_MATH_CONSTEXPR T log_max_value(const mpl::int_<1024>& BOOST_MATH_APPEND_EXPLICIT_TEMPL… in log_max_value() 109 inline BOOST_MATH_CONSTEXPR T log_min_value(const mpl::int_<1024>& BOOST_MATH_APPEND_EXPLICIT_TEMPL… in log_min_value() 117 …nline BOOST_MATH_CONSTEXPR T log_max_value(const mpl::int_<16384>& BOOST_MATH_APPEND_EXPLICIT_TEMP… in log_max_value() 123 …nline BOOST_MATH_CONSTEXPR T log_min_value(const mpl::int_<16384>& BOOST_MATH_APPEND_EXPLICIT_TEMP… in log_min_value() 129 inline T log_max_value(const mpl::int_<0>& BOOST_MATH_APPEND_EXPLICIT_TEMPLATE_TYPE(T)) in log_max_value() [all …]
|
| H A D | config.hpp | 230 # define BOOST_MATH_NOEXCEPT(T) noexcept(std::is_floating_point<T>::value) argument 231 # define BOOST_MATH_IS_FLOAT(T) (std::is_floating_point<T>::value) argument 234 # define BOOST_MATH_NOEXCEPT(T) noexcept(boost::is_floating_point<T>::value) argument 235 # define BOOST_MATH_IS_FLOAT(T) (boost::is_floating_point<T>::value) argument 238 # define BOOST_MATH_NOEXCEPT(T) argument 239 # define BOOST_MATH_IS_FLOAT(T) false argument 354 void suppress_unused_variable_warning(const T&) BOOST_MATH_NOEXCEPT(T) in suppress_unused_variable_warning()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/move/detail/ |
| H A D | type_traits.hpp | 79 # define BOOST_MOVE_IS_UNION(T) BOOST_STD_EXTENSION_NAMESPACE::is_union<T>::value argument 80 # define BOOST_MOVE_IS_POD(T) BOOST_STD_EXTENSION_NAMESPACE::is_POD<T>::value argument 81 # define BOOST_MOVE_HAS_TRIVIAL_CONSTRUCTOR(T) BOOST_STD_EXTENSION_NAMESPACE::has_trivial_default… argument 82 # define BOOST_MOVE_HAS_TRIVIAL_COPY(T) BOOST_STD_EXTENSION_NAMESPACE::has_trivial_copy_ctor<T>::… argument 83 # define BOOST_MOVE_HAS_TRIVIAL_ASSIGN(T) BOOST_STD_EXTENSION_NAMESPACE::has_trivial_assignment<T… argument 84 # define BOOST_MOVE_HAS_TRIVIAL_DESTRUCTOR(T) BOOST_STD_EXTENSION_NAMESPACE::has_trivial_dtor<T>:… argument 89 # define BOOST_MOVE_IS_UNION(T) __is_union(T) argument 90 # define BOOST_MOVE_IS_POD(T) (__is_pod(T) && __has_trivial_constructor(T)) argument 91 # define BOOST_MOVE_IS_EMPTY(T) __is_empty(T) argument 92 # define BOOST_MOVE_HAS_TRIVIAL_CONSTRUCTOR(T) __has_trivial_constructor(T) argument [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/typeof/ |
| H A D | modifiers.hpp | 34 #define BOOST_TYPEOF_const_fun(T) const T argument 35 #define BOOST_TYPEOF_volatile_fun(T) volatile T argument 36 #define BOOST_TYPEOF_volatile_const_fun(T) volatile const T argument 37 #define BOOST_TYPEOF_pointer_fun(T) T* argument 38 #define BOOST_TYPEOF_reference_fun(T) T& argument 43 #define BOOST_TYPEOF_const_pointer_fun(T) T const * argument 44 #define BOOST_TYPEOF_const_reference_fun(T) T const & argument 45 #define BOOST_TYPEOF_volatile_pointer_fun(T) T volatile* argument 46 #define BOOST_TYPEOF_volatile_reference_fun(T) T volatile& argument 47 #define BOOST_TYPEOF_volatile_const_pointer_fun(T) T volatile const * argument [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/detail/ |
| H A D | templated_streams.hpp | 26 #define BOOST_TEMPLATED_STREAM_TEMPLATE(E,T) \ argument 29 #define BOOST_TEMPLATED_STREAM_TEMPLATE_ALLOC(E,T,A) \ argument 32 #define BOOST_TEMPLATED_STREAM_ARGS(E,T) \ argument 35 #define BOOST_TEMPLATED_STREAM_ARGS_ALLOC(E,T,A) \ argument 41 #define BOOST_TEMPLATED_STREAM_TRAITS(T) T argument 44 #define BOOST_TEMPLATED_STREAM(X,E,T) \ argument 47 #define BOOST_TEMPLATED_STREAM_WITH_ALLOC(X,E,T,A) \ argument 52 #define BOOST_TEMPLATED_STREAM_TEMPLATE(E,T) /**/ argument 54 #define BOOST_TEMPLATED_STREAM_TEMPLATE_ALLOC(E,T,A) /**/ argument 56 #define BOOST_TEMPLATED_STREAM_ARGS(E,T) /**/ argument [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/lib/gcc/aarch64-none-linux-gnu/10.3.1/plugin/include/ |
| H A D | libiberty.h | 357 #define XALLOCA(T) ((T *) alloca (sizeof (T))) argument 358 #define XNEW(T) ((T *) xmalloc (sizeof (T))) argument 359 #define XCNEW(T) ((T *) xcalloc (1, sizeof (T))) argument 360 #define XDUP(T, P) ((T *) xmemdup ((P), sizeof (T), sizeof (T))) argument 365 #define XALLOCAVEC(T, N) ((T *) alloca (sizeof (T) * (N))) argument 366 #define XNEWVEC(T, N) ((T *) xmalloc (sizeof (T) * (N))) argument 367 #define XCNEWVEC(T, N) ((T *) xcalloc ((N), sizeof (T))) argument 368 #define XDUPVEC(T, P, N) ((T *) xmemdup ((P), sizeof (T) * (N), sizeof (T) * (N))) argument 369 #define XRESIZEVEC(T, P, N) ((T *) xrealloc ((void *) (P), sizeof (T) * (N))) argument 374 #define XALLOCAVAR(T, S) ((T *) alloca ((S))) argument [all …]
|
| H A D | fold-const.h | 102 #define invert_truthvalue(T)\ argument 119 #define build_fold_addr_expr(T)\ argument 122 #define build_fold_addr_expr_with_type(T,TYPE)\ argument 126 #define build_fold_indirect_ref(T)\ argument 129 #define fold_indirect_ref(T)\ argument 133 #define build_simple_mem_ref(T)\ argument 170 #define round_up(T,N) round_up_loc (UNKNOWN_LOCATION, T, N) argument 172 #define round_down(T,N) round_down_loc (UNKNOWN_LOCATION, T, N) argument 183 #define non_lvalue(T) non_lvalue_loc (UNKNOWN_LOCATION, T) argument
|
| H A D | vec.h | 276 va_heap::reserve (vec<T, va_heap, vl_embed> *&v, unsigned reserve, bool exact in reserve() 307 va_heap::release (vec<T, va_heap, vl_embed> *&v) in release() 348 va_gc::release (vec<T, A, vl_embed> *&v) in release() 363 va_gc::reserve (vec<T, A, vl_embed> *&v, unsigned reserve, bool exact in reserve() 453 debug_helper (vec<T, va_gc> &ref) in debug_helper() 467 #define DEFINE_DEBUG_VEC(T) \ argument
|
| H A D | int-vector-builder.h | 44 bool integral_p (T) const { return true; } in integral_p() argument 47 bool can_elide_p (T) const { return true; } in can_elide_p() argument 48 void note_representative (T *, T) {} in note_representative() argument
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/lib/gcc/arm-none-linux-gnueabihf/10.3.1/plugin/include/ |
| H A D | libiberty.h | 357 #define XALLOCA(T) ((T *) alloca (sizeof (T))) argument 358 #define XNEW(T) ((T *) xmalloc (sizeof (T))) argument 359 #define XCNEW(T) ((T *) xcalloc (1, sizeof (T))) argument 360 #define XDUP(T, P) ((T *) xmemdup ((P), sizeof (T), sizeof (T))) argument 365 #define XALLOCAVEC(T, N) ((T *) alloca (sizeof (T) * (N))) argument 366 #define XNEWVEC(T, N) ((T *) xmalloc (sizeof (T) * (N))) argument 367 #define XCNEWVEC(T, N) ((T *) xcalloc ((N), sizeof (T))) argument 368 #define XDUPVEC(T, P, N) ((T *) xmemdup ((P), sizeof (T) * (N), sizeof (T) * (N))) argument 369 #define XRESIZEVEC(T, P, N) ((T *) xrealloc ((void *) (P), sizeof (T) * (N))) argument 374 #define XALLOCAVAR(T, S) ((T *) alloca ((S))) argument [all …]
|
| H A D | fold-const.h | 102 #define invert_truthvalue(T)\ argument 119 #define build_fold_addr_expr(T)\ argument 122 #define build_fold_addr_expr_with_type(T,TYPE)\ argument 126 #define build_fold_indirect_ref(T)\ argument 129 #define fold_indirect_ref(T)\ argument 133 #define build_simple_mem_ref(T)\ argument 170 #define round_up(T,N) round_up_loc (UNKNOWN_LOCATION, T, N) argument 172 #define round_down(T,N) round_down_loc (UNKNOWN_LOCATION, T, N) argument 183 #define non_lvalue(T) non_lvalue_loc (UNKNOWN_LOCATION, T) argument
|
| H A D | vec.h | 276 va_heap::reserve (vec<T, va_heap, vl_embed> *&v, unsigned reserve, bool exact in reserve() 307 va_heap::release (vec<T, va_heap, vl_embed> *&v) in release() 348 va_gc::release (vec<T, A, vl_embed> *&v) in release() 363 va_gc::reserve (vec<T, A, vl_embed> *&v, unsigned reserve, bool exact in reserve() 453 debug_helper (vec<T, va_gc> &ref) in debug_helper() 467 #define DEFINE_DEBUG_VEC(T) \ argument
|
| H A D | int-vector-builder.h | 44 bool integral_p (T) const { return true; } in integral_p() argument 47 bool can_elide_p (T) const { return true; } in can_elide_p() argument 48 void note_representative (T *, T) {} in note_representative() argument
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/ |
| H A D | array.hpp | 158 void swap (array<T,N>& y) { in swap() 286 void swap (array<T,0>& /*y*/) { in swap() 304 void fill (const T& ) {} in fill() 324 bool operator== (const array<T,N>& x, const array<T,N>& y) { in operator ==() 328 bool operator< (const array<T,N>& x, const array<T,N>& y) { in operator <() 332 bool operator!= (const array<T,N>& x, const array<T,N>& y) { in operator !=() 336 bool operator> (const array<T,N>& x, const array<T,N>& y) { in operator >() 340 bool operator<= (const array<T,N>& x, const array<T,N>& y) { in operator <=() 344 bool operator>= (const array<T,N>& x, const array<T,N>& y) { in operator >=() 350 inline void swap (array<T,N>& x, array<T,N>& y) { in swap() [all …]
|
| H A D | foreach.hpp | 166 boost_foreach_is_lightweight_proxy(T *&, BOOST_FOREACH_TAG_DEFAULT) { return 0; } in boost_foreach_is_lightweight_proxy() argument 170 boost_foreach_is_lightweight_proxy(std::pair<T, T> *&, boost::foreach::tag) { return 0; } in boost_foreach_is_lightweight_proxy() argument 174 boost_foreach_is_lightweight_proxy(boost::iterator_range<T> *&, boost::foreach::tag) { return 0; } in boost_foreach_is_lightweight_proxy() 178 boost_foreach_is_lightweight_proxy(boost::sub_range<T> *&, boost::foreach::tag) { return 0; } in boost_foreach_is_lightweight_proxy() 182 boost_foreach_is_lightweight_proxy(T **&, boost::foreach::tag) { return 0; } in boost_foreach_is_lightweight_proxy() argument 191 boost_foreach_is_noncopyable(T *&, BOOST_FOREACH_TAG_DEFAULT) { return 0; } in boost_foreach_is_noncopyable() argument 221 inline boost::is_const<T> *is_const_(T &) { return 0; } in is_const_() argument 230 inline boost::mpl::false_ *is_rvalue_(T &, int) { return 0; } in is_rvalue_() argument 236 inline boost::is_rvalue_reference<T &&> *is_rvalue_(T &&, int) { return 0; } in is_rvalue_() argument 401 inline type2type<T> *encode_type(T &, boost::false_type*) { return 0; } in encode_type() argument [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/mpl/aux_/ |
| H A D | overload_names.hpp | 29 # define BOOST_MPL_AUX_OVERLOAD_CALL_VALUE_BY_KEY(T, x) BOOST_MPL_AUX_PTR_TO_REF(T) / x argument 30 # define BOOST_MPL_AUX_OVERLOAD_CALL_ITEM_BY_ORDER(T, x) BOOST_MPL_AUX_PTR_TO_REF(T) | x argument 31 # define BOOST_MPL_AUX_OVERLOAD_CALL_ORDER_BY_KEY(T, x) BOOST_MPL_AUX_PTR_TO_REF(T) || x argument 32 # define BOOST_MPL_AUX_OVERLOAD_CALL_IS_MASKED(T, x) BOOST_MPL_AUX_PTR_TO_REF(T) % x argument 41 # define BOOST_MPL_AUX_OVERLOAD_CALL_VALUE_BY_KEY(T, x) T::BOOST_MPL_AUX_OVERLOAD_VALUE_BY_KEY(… argument 42 # define BOOST_MPL_AUX_OVERLOAD_CALL_ITEM_BY_ORDER(T, x) T::BOOST_MPL_AUX_OVERLOAD_ITEM_BY_ORDER… argument 43 # define BOOST_MPL_AUX_OVERLOAD_CALL_ORDER_BY_KEY(T, x) T::BOOST_MPL_AUX_OVERLOAD_ORDER_BY_KEY(… argument 44 # define BOOST_MPL_AUX_OVERLOAD_CALL_IS_MASKED(T, x) T::BOOST_MPL_AUX_OVERLOAD_IS_MASKED( BO… argument
|
| H A D | nested_type_wknd.hpp | 33 # define BOOST_MPL_AUX_NESTED_TYPE_WKND(T) \ argument 37 # define BOOST_MPL_AUX_NESTED_TYPE_WKND(T) \ argument 44 # define BOOST_MPL_AUX_NESTED_TYPE_WKND(T) T::type argument
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/iostreams/detail/ |
| H A D | enable_if_stream.hpp | 21 # define BOOST_IOSTREAMS_ENABLE_IF_STREAM(T) \ argument 24 # define BOOST_IOSTREAMS_DISABLE_IF_STREAM(T) \ argument 28 # define BOOST_IOSTREAMS_ENABLE_IF_STREAM(T) argument 29 # define BOOST_IOSTREAMS_DISABLE_IF_STREAM(T) argument
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/index/detail/ |
| H A D | utilities.hpp | 24 static inline void assign_cond(T &, T const&, boost::mpl::bool_<false> const&) {} in assign_cond() argument 33 static inline void move_cond(T &, T &, boost::mpl::bool_<false> const&) {} in move_cond() argument 42 void swap_cond(T &, T &, boost::mpl::bool_<false> const&) {} in swap_cond() argument
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/i915/ |
| H A D | i915_params.c | 30 #define i915_param_named(name, T, perm, desc) \ argument 33 #define i915_param_named_unsafe(name, T, perm, desc) \ argument 38 #define MEMBER(T, member, value, ...) .member = (value), argument 229 #define PRINT(T, x, ...) _print_param(p, #x, #T, ¶ms->x); in i915_params_dump() argument 243 #define DUP(T, x, ...) dup_param(#T, &dest->x); in i915_params_copy() argument 259 #define FREE(T, x, ...) free_param(#T, ¶ms->x); in i915_params_free() argument
|
| /OK3568_Linux_fs/kernel/drivers/staging/comedi/drivers/tests/ |
| H A D | ni_routes_test.c | 315 const struct ni_route_tables *T = &private.routing_tables; in test_ni_route_to_register() local 365 const struct ni_route_tables *T = &private.routing_tables; in test_ni_lookup_route_register() local 404 const struct ni_route_tables *T = &private.routing_tables; in test_route_is_valid() local 459 const struct ni_route_tables *T = &private.routing_tables; in test_ni_count_valid_routes() local 467 const struct ni_route_tables *T = &private.routing_tables; in test_ni_get_valid_routes() local 484 const struct ni_route_tables *T = &private.routing_tables; in test_ni_find_route_source() local 501 const struct ni_route_tables *T = &private.routing_tables; in test_route_register_is_valid() local 516 const struct ni_route_tables *T = &private.routing_tables; in test_ni_check_trigger_arg() local 549 const struct ni_route_tables *T = &private.routing_tables; in test_ni_get_reg_value() local
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/functional/hash/ |
| H A D | extensions.hpp | 76 std::size_t hash_value(std::vector<T, A> const& v) in hash_value() 82 std::size_t hash_value(std::list<T, A> const& v) in hash_value() 88 std::size_t hash_value(std::deque<T, A> const& v) in hash_value() 106 std::size_t hash_value(std::map<K, T, C, A> const& v) in hash_value() argument 112 std::size_t hash_value(std::multimap<K, T, C, A> const& v) in hash_value() argument 128 std::size_t hash_value(std::array<T, N> const& v) in hash_value() 198 inline std::size_t hash_value(std::unique_ptr<T, Deleter> const& x) { in hash_value()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/spirit/home/support/iterators/ |
| H A D | multi_pass.hpp | 211 swap(multi_pass<T, Policies> &x, multi_pass<T, Policies> &y) in swap() 222 void clear_queue(multi_pass<T, Policies>& mp in clear_queue() 229 void inhibit_clear_queue(multi_pass<T, Policies>& mp, bool flag) in inhibit_clear_queue() 235 bool inhibit_clear_queue(multi_pass<T, Policies>& mp) in inhibit_clear_queue()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/optional/detail/ |
| H A D | optional_reference_spec.hpp | 135 …explicit optional(U& rhs, BOOST_DEDUCED_TYPENAME boost::enable_if_c<detail::is_same_decayed<T, U>:… in optional() 139 …optional(U& rhs, BOOST_DEDUCED_TYPENAME boost::enable_if_c<detail::is_same_decayed<T, U>::value &&… in optional() 165 optional(T&& /* rhs */) BOOST_NOEXCEPT { detail::prevent_binding_rvalue<T&&>(); } in optional() argument 168 …optional(R&& r, BOOST_DEDUCED_TYPENAME boost::enable_if<detail::no_unboxing_cond<T, R> >::type* = … in optional() 203 …explicit optional(U& v, BOOST_DEDUCED_TYPENAME boost::enable_if_c<detail::no_unboxing_cond<T, U>::… in optional() 207 …optional(U& v, BOOST_DEDUCED_TYPENAME boost::enable_if_c<detail::no_unboxing_cond<T, U>::value && … in optional()
|