Home
last modified time | relevance | path

Searched full:policies (Results 1 – 25 of 437) sorted by relevance

12345678910>>...18

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/math/constants/
H A Dcalculate_constants.hpp74 return 2 * pi<T, policies::policy<policies::digits2<N> > >(); in compute()
81 return 2 / pi<T, policies::policy<policies::digits2<N> > >(); in compute()
89 return sqrt((2 / pi<T, policies::policy<policies::digits2<N> > >())); in compute()
96 return 1 / two_pi<T, policies::policy<policies::digits2<N> > >(); in compute()
104 return sqrt(pi<T, policies::policy<policies::digits2<N> > >()); in compute()
112 return sqrt(pi<T, policies::policy<policies::digits2<N> > >() / 2); in compute()
120 return sqrt(two_pi<T, policies::policy<policies::digits2<N> > >()); in compute()
128 return log(root_two_pi<T, policies::policy<policies::digits2<N> > >()); in compute()
199 return euler<T, policies::policy<policies::digits2<N> > >() in compute()
200 * euler<T, policies::policy<policies::digits2<N> > >(); in compute()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/math/policies/
H A Derror_handling.hpp21 #include <boost/math/policies/policy.hpp>
51 namespace policies{ namespace
79 …typedef typename boost::math::policies::precision<T, boost::math::policies::policy<> >::type prec_… in prec_format()
134 replace_all_in_string(function, "%1%", boost::math::policies::detail::name_of<T>()); in raise_error()
158 replace_all_in_string(function, "%1%", boost::math::policies::detail::name_of<T>()); in raise_error()
178 const ::boost::math::policies::domain_error< ::boost::math::policies::throw_on_error>&) in raise_domain_error()
190 …const ::boost::math::policies::domain_error< ::boost::math::policies::ignore_error>&) BOOST_MATH_N… in raise_domain_error()
202 …const ::boost::math::policies::domain_error< ::boost::math::policies::errno_on_error>&) BOOST_MATH… in raise_domain_error()
215 const ::boost::math::policies::domain_error< ::boost::math::policies::user_error>&) in raise_domain_error()
225 const ::boost::math::policies::pole_error< ::boost::math::policies::throw_on_error>&) in raise_pole_error()
[all …]
H A Dpolicy.hpp42 namespace policies{ namespace
45 // Define macros for our default policies, if they're not defined already:
133 …template <class T> struct is_##name : public boost::mpl::bool_< ::boost::math::policies::detail::i…
148 …template <class T> struct is_##name : public boost::mpl::bool_< ::boost::math::policies::detail::i…
164 …BOOST_STATIC_CONSTANT(bool, value = sizeof( ::boost::math::policies::detail::is_##name##_tester<T>…
167 …template <class T> struct is_##name : public boost::mpl::bool_< ::boost::math::policies::detail::i…
186 …BOOST_STATIC_CONSTANT(bool, value = sizeof( ::boost::math::policies::detail::is_##name##_tester<T>…
189 …template <class T> struct is_##name : public boost::mpl::bool_< ::boost::math::policies::detail::i…
271 …(Digits2::value > ::boost::math::policies::detail::precision<Digits10,Digits2>::digits2_type::valu…
311 …BOOST_STATIC_CONSTANT(bool, value = sizeof(::boost::math::policies::detail::test_is_valid_arg(stat…
[all …]
/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 Dmulti_pass_fwd.hpp20 // input policies
28 // ownership policies
32 // checking policies
37 // storage policies
58 , typename Policies = iterator_policies::default_policy<> >
61 template <typename T, typename Policies>
62 void swap(multi_pass<T, Policies> &x, multi_pass<T, Policies> &y);
73 template <typename T, typename Policies>
74 void clear_queue(multi_pass<T, Policies>&
77 template <typename T, typename Policies>
[all …]
H A Dmulti_pass.hpp24 template<typename T, typename Policies>
27 typename Policies::BOOST_NESTED_TEMPLATE shared<T>*>
28 , public Policies::BOOST_NESTED_TEMPLATE unique<T>
32 typedef typename Policies::BOOST_NESTED_TEMPLATE unique<T>
34 typedef typename Policies::BOOST_NESTED_TEMPLATE shared<T>
181 template <typename Policies, typename T>
182 inline multi_pass<T, Policies>
185 return multi_pass<T, Policies>(i); in make_multi_pass()
187 template <typename Policies, typename T>
188 inline multi_pass<T, Policies>
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/math/special_functions/
H A Dlog1p.hpp22 #include <boost/math/policies/error_handling.hpp>
84 return policies::raise_domain_error<T>( in log1p_imp()
87 return -policies::raise_overflow_error<T>( in log1p_imp()
98 boost::uintmax_t max_iter = policies::get_max_series_iterations<Policy>(); in log1p_imp()
100 … result_type result = tools::sum_series(s, policies::get_epsilon<result_type, Policy>(), max_iter); in log1p_imp()
103 …result_type result = tools::sum_series(s, policies::get_epsilon<result_type, Policy>(), max_iter, … in log1p_imp()
105 policies::check_series_iterations<T>(function, max_iter, pol); in log1p_imp()
117 return policies::raise_domain_error<T>( in log1p_imp()
120 return -policies::raise_overflow_error<T>( in log1p_imp()
170 return policies::raise_domain_error<T>( in log1p_imp()
[all …]
H A Datanh.hpp22 #include <boost/math/policies/error_handling.hpp>
44 return policies::raise_domain_error<T>( in atanh_imp()
50 return policies::raise_domain_error<T>( in atanh_imp()
56 return policies::raise_domain_error<T>( in atanh_imp()
63 return -policies::raise_overflow_error<T>(function, 0, pol); in atanh_imp()
68 return policies::raise_overflow_error<T>(function, 0, pol); in atanh_imp()
100 typedef typename policies::evaluation<result_type, Policy>::type value_type; in atanh()
101 typedef typename policies::normalise< in atanh()
103 policies::promote_float<false>, in atanh()
104 policies::promote_double<false>, in atanh()
[all …]
H A Dtrunc.hpp15 #include <boost/math/policies/error_handling.hpp>
26 …return policies::raise_rounding_error("boost::math::trunc<%1%>(%1%)", 0, static_cast<result_type>(… in trunc()
46 return trunc(v, policies::policy<>()); in trunc()
64 …return static_cast<int>(policies::raise_rounding_error("boost::math::itrunc<%1%>(%1%)", 0, static_… in itrunc()
70 return itrunc(v, policies::policy<>()); in itrunc()
80 …return static_cast<long>(policies::raise_rounding_error("boost::math::ltrunc<%1%>(%1%)", 0, static… in ltrunc()
86 return ltrunc(v, policies::policy<>()); in ltrunc()
98 …return static_cast<boost::long_long_type>(policies::raise_rounding_error("boost::math::lltrunc<%1%… in lltrunc()
104 return lltrunc(v, policies::policy<>()); in lltrunc()
H A Dnext.hpp14 #include <boost/math/policies/error_handling.hpp>
184 return policies::raise_domain_error<T>( in float_next_imp()
190 return policies::raise_overflow_error<T>(function, 0, pol); in float_next_imp()
231 return policies::raise_domain_error<T>( in float_next_imp()
237 return policies::raise_overflow_error<T>(function, 0, pol); in float_next_imp()
282 return policies::raise_domain_error<double>(
287 return policies::raise_overflow_error<double>(function, 0, pol);
296 return float_next(val, policies::policy<>()); in float_next()
314 return policies::raise_domain_error<T>( in float_prior_imp()
320 return -policies::raise_overflow_error<T>(function, 0, pol); in float_prior_imp()
[all …]
/OK3568_Linux_fs/kernel/Documentation/admin-guide/mm/
H A Dnuma_memory_policy.rst17 Memory policies should not be confused with cpusets
20 memory may be allocated by a set of processes. Memory policies are a
22 both cpusets and policies are applied to a task, the restrictions of the cpuset
23 takes priority. See :ref:`Memory Policies and cpusets <mem_pol_and_cpusets>`
29 Scope of Memory Policies
63 In a multi-threaded task, task policies apply only to the thread
90 VMA policies have a few complicating details:
102 * VMA policies are shared between all tasks that share a
105 fork(). However, because VMA policies refer to a specific
107 space is discarded and recreated on exec*(), VMA policies
[all …]
/OK3568_Linux_fs/kernel/net/netlink/
H A Dpolicy.c24 } policies[]; member
38 if (state->policies[i].policy == policy && in add_policy()
39 state->policies[i].maxtype == maxtype) in add_policy()
42 if (!state->policies[i].policy) { in add_policy()
43 state->policies[i].policy = policy; in add_policy()
44 state->policies[i].maxtype = maxtype; in add_policy()
50 state = krealloc(state, struct_size(state, policies, n_alloc), in add_policy()
55 memset(&state->policies[state->n_alloc], 0, in add_policy()
56 flex_array_size(state, policies, n_alloc - state->n_alloc)); in add_policy()
58 state->policies[state->n_alloc].policy = policy; in add_policy()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/spirit/home/qi/numeric/
H A Dreal.hpp37 template <typename T = double, typename Policies = real_policies<T> >
39 : spirit::terminal<tag::stateful_tag<Policies, tag::double_, T> >
41 typedef tag::stateful_tag<Policies, tag::double_, T> tag_type;
44 real_parser(Policies const& p) in real_parser()
113 template <typename T, typename Policies>
115 , tag::stateful_tag<Policies, tag::double_, T> >
119 template <typename T, typename Policies, typename A0>
121 , terminal_ex<tag::stateful_tag<Policies, tag::double_, T>
126 template <typename T, typename Policies>
129 , tag::stateful_tag<Policies, tag::double_, T>
[all …]
H A Dbool.hpp207 , typename Policies = bool_policies<T> >
216 , is_same<bool_policies<T>, Policies>
219 , any_bool_parser<T, Policies> >::type
229 , typename Policies = bool_policies<T> >
238 , is_same<bool_policies<T>, Policies>
241 , literal_bool_parser<T, Policies, false> >::type
252 , typename Policies = bool_policies<T> >
261 , is_same<bool_policies<T>, Policies>
264 , literal_bool_parser<T, Policies, false> >::type
274 , typename Policies = bool_policies<T> >
[all …]
/OK3568_Linux_fs/kernel/drivers/gpu/drm/i915/gt/uc/
H A Dintel_guc_ads.c14 * scheduling policies (guc_policies), a structure describing a collection of
27 static void guc_policies_init(struct guc_policies *policies) in guc_policies_init() argument
32 policies->dpc_promote_time = POLICY_DEFAULT_DPC_PROMOTE_TIME_US; in guc_policies_init()
33 policies->max_num_work_items = POLICY_MAX_NUM_WI; in guc_policies_init()
37 policy = &policies->policy[p][i]; in guc_policies_init()
43 policies->is_valid = 1; in guc_policies_init()
60 struct guc_policies policies; member
76 /* GuC scheduling policies */ in __guc_ads_init()
77 guc_policies_init(&blob->policies); in __guc_ads_init()
120 blob->ads.scheduler_policies = base + ptr_offset(blob, policies); in __guc_ads_init()
/OK3568_Linux_fs/kernel/drivers/gpu/arm/midgard/
H A Dmali_kbase_hwaccess_pm.h163 * Retrieve a static list of the available policies.
165 * @param[out] policies An array pointer to take the list of policies. This may
169 * @return The number of policies
172 kbase_pm_ca_list_policies(const struct kbase_pm_ca_policy * const **policies);
199 * Retrieve a static list of the available policies.
201 * @param[out] policies An array pointer to take the list of policies. This may
205 * @return The number of policies
207 int kbase_pm_list_policies(const struct kbase_pm_policy * const **policies);
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/strategies/
H A Dintersection_strategies.hpp20 #include <boost/geometry/policies/relate/intersection_points.hpp>
21 #include <boost/geometry/policies/relate/direction.hpp>
22 #include <boost/geometry/policies/relate/tupled.hpp>
33 #include <boost/geometry/policies/robustness/segment_ratio_type.hpp>
73 typedef policies::relate::segments_tupled
75 policies::relate::segments_intersection_points
79 policies::relate::segments_direction
/OK3568_Linux_fs/kernel/Documentation/filesystems/
H A Dfscrypt.rst148 Limitations of v1 policies
151 v1 encryption policies have some weaknesses with respect to online
167 All the above problems are fixed with v2 encryption policies. For
169 policies on all new encrypted directories.
212 the key is used for v1 encryption policies or for v2 encryption
213 policies. Users **must not** use the same key for both v1 and v2
214 encryption policies. (No real-world attack is currently known on this
218 For v1 encryption policies, the KDF only supports deriving per-file
224 For v2 encryption policies, the KDF is HKDF-SHA512. The master key is
259 DIRECT_KEY policies
[all …]
/OK3568_Linux_fs/kernel/tools/testing/selftests/net/
H A Dxfrm_policy.sh59 # add policies with different netmasks, to make sure kernel carries
60 # the policies contained within new netmask over when search tree is
68 # policies it carries need to be merged with the existing one(s).
98 # the sub-tree. As no duplicates are allowed, policies in
110 # similar to above: add policies (with partially random address), with shrinking prefixes.
152 # policies that are not supposed to match any packets generated in this test.
290 # insert non-overlapping policies in a random order and check that
446 # insert block policies with adjacent/overlapping netmasks
449 check_exceptions "exceptions and block policies"
459 check_exceptions "exceptions and block policies after hresh changes"
[all …]
/OK3568_Linux_fs/kernel/drivers/gpu/arm/bifrost/
H A Dmali_kbase_hwaccess_pm.h167 * kbase_pm_ca_list_policies - Retrieve a static list of the available policies.
169 * @policies: An array pointer to take the list of policies. This may be NULL.
172 * Return: The number of policies
175 kbase_pm_ca_list_policies(const struct kbase_pm_ca_policy * const **policies);
200 * kbase_pm_list_policies - Retrieve a static list of the available policies.
203 * @list: An array pointer to take the list of policies. This may be NULL.
206 * Return: The number of policies
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/algorithms/detail/disjoint/
H A Dlinear_linear.hpp38 #include <boost/geometry/policies/disjoint_interrupt_policy.hpp>
39 #include <boost/geometry/policies/robustness/no_rescale_policy.hpp>
40 #include <boost/geometry/policies/robustness/segment_ratio_type.hpp>
76 typedef policies::relate::segments_intersection_points in apply()
137 // Specify two policies: in apply()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/policies/robustness/
H A Dno_rescale_policy.hpp18 #include <boost/geometry/policies/robustness/robust_point_type.hpp>
19 #include <boost/geometry/policies/robustness/segment_ratio.hpp>
20 #include <boost/geometry/policies/robustness/segment_ratio_type.hpp>
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/algorithms/detail/
H A Dhas_self_intersections.hpp27 #include <boost/geometry/policies/disjoint_interrupt_policy.hpp>
28 #include <boost/geometry/policies/robustness/robust_point_type.hpp>
29 #include <boost/geometry/policies/robustness/segment_ratio_type.hpp>
30 #include <boost/geometry/policies/robustness/get_rescale_policy.hpp>
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/linux/
H A Dmempolicy.h3 * NUMA memory policies for Linux.
18 /* Policies */
60 #define MPOL_F_SHARED (1 << 0) /* identify shared policies */
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/linux/
H A Dmempolicy.h3 * NUMA memory policies for Linux.
18 /* Policies */
60 #define MPOL_F_SHARED (1 << 0) /* identify shared policies */
/OK3568_Linux_fs/kernel/include/uapi/linux/
H A Dmempolicy.h3 * NUMA memory policies for Linux.
18 /* Policies */
60 #define MPOL_F_SHARED (1 << 0) /* identify shared policies */

12345678910>>...18