Home
last modified time | relevance | path

Searched refs:upper_limit (Results 1 – 15 of 15) sorted by relevance

/third_party/boost/tools/build/src/util/
Dpath.py345 def all_parents(path, upper_limit=None, cwd=None): argument
352 if upper_limit:
353 upper_limit = os.path.join(cwd, upper_limit)
356 while path_abs and path_abs != upper_limit:
362 if upper_limit and path_abs != upper_limit:
363 raise BaseException("'%s' is not a prefix of '%s'" % (upper_limit, path))
370 def glob_in_parents(dir, patterns, upper_limit=None): argument
373 parent_dirs = all_parents(dir, upper_limit)
890 def glob_in_parents(dir, patterns, upper_limit=None): argument
Dpath.jam297 # 'upper_limit' is specified, directories above it will be pruned.
299 rule all-parents ( path : upper_limit ? : cwd ? )
304 if ! $(upper_limit)
306 upper_limit = / ;
308 local upper_ele = [ regex.split [ root $(upper_limit) $(cwd) ] / ] ;
321 errors.error "$(upper_limit) is not prefix of $(path)" ;
336 # 'upper_limit', if it is specified, or up to the filesystem root otherwise.
/third_party/boost/boost/math/distributions/detail/
Dhypergeometric_cdf.hpp46 unsigned upper_limit = (std::min)(r, n); in hypergeometric_cdf_imp() local
47 if(x != upper_limit) in hypergeometric_cdf_imp()
52 while((x <= upper_limit) && (diff > (invert ? T(1) : result) * tools::epsilon<T>())) in hypergeometric_cdf_imp()
/third_party/boost/libs/math/example/
Dchi_square_std_dev_test.cpp71 double upper_limit = sqrt((N - 1) * Sd * Sd / quantile(dist, alpha[i] / 2)); in confidence_limits_on_std_deviation() local
74 cout << fixed << setprecision(5) << setw(15) << right << upper_limit << endl; in confidence_limits_on_std_deviation()
121 double upper_limit = sqrt((N - 1) * Sd * Sd / quantile(dist, alpha / 2)); in confidence_limits_on_std_deviation_alpha() local
124 cout << fixed << setprecision(4) << setw(15) << right << upper_limit << endl; in confidence_limits_on_std_deviation_alpha()
/third_party/boost/boost/math/special_functions/detail/
Dhypergeometric_1F1_scaled_series.hpp24 T sum(0), term(1), upper_limit(sqrt(boost::math::tools::max_value<T>())), diff; in hypergeometric_1F1_scaled_series() local
33 if (sum >= upper_limit) in hypergeometric_1F1_scaled_series()
Dhypergeometric_series.hpp253 T sum(0), term(1), upper_limit(sqrt(boost::math::tools::max_value<T>())), diff; in hypergeometric_1F1_generic_series() local
254 T lower_limit(1 / upper_limit); in hypergeometric_1F1_generic_series()
309 if (fabs(sum) >= upper_limit) in hypergeometric_1F1_generic_series()
350 if (fabs(sum) >= upper_limit) in hypergeometric_1F1_generic_series()
386 if (fabs(sum) >= upper_limit) in hypergeometric_1F1_generic_series()
Dhypergeometric_pFq_checked_series.hpp128 Real upper_limit(sqrt(boost::math::tools::max_value<Real>())), diff; in hypergeometric_pFq_checked_series_impl() local
129 Real lower_limit(1 / upper_limit); in hypergeometric_pFq_checked_series_impl()
219 if (fabs(abs_result) >= upper_limit) in hypergeometric_pFq_checked_series_impl()
378 if (fabs(loop_result) >= upper_limit) in hypergeometric_pFq_checked_series_impl()
549 if (fabs(loop_result) >= upper_limit) in hypergeometric_pFq_checked_series_impl()
Dhypergeometric_1F1_negative_b_regions.hpp512 …T upper_limit = static_cast<T>(1 / ((x2 - x1) * (y2 - y1)) * (f11 * (x2 - a) * (y2 - b) + f21 * (a… in hypergeometric_1F1_negative_b_recurrence_region() local
513 if (z > upper_limit) in hypergeometric_1F1_negative_b_recurrence_region()
/third_party/boost/libs/multiprecision/test/
Dtest_cpp_int_karatsuba.cpp158 …unsigned upper_limit = std::numeric_limits<N>::is_bounded ? std::numeric_limits<N>::digits - 1 : 8… in test() local
159 for (unsigned i = 1024; i < upper_limit; i *= 2) in test()
243 …unsigned upper_limit = std::numeric_limits<N>::is_bounded ? std::numeric_limits<N>::digits - 1 : 8… in test() local
244 for (unsigned i = 1024; i < upper_limit; i *= 2) in test()
/third_party/mindspore/mindspore/
D_checkparam.py192 def check_number_range(arg_value, lower_limit, upper_limit, rel, value_type, arg_name=None, prim_na… argument
207 if not rel_fn(arg_value, lower_limit, upper_limit):
208 rel_str = Rel.get_strs(rel).format(lower_limit, upper_limit)
409 def check_int_range(arg_value, lower_limit, upper_limit, rel, arg_name=None, prim_name=None): argument
417 … return check_number_range(arg_value, lower_limit, upper_limit, rel, int, arg_name, prim_name)
420 def check_float_range(arg_value, lower_limit, upper_limit, rel, arg_name=None, prim_name=None): argument
428 … return check_number_range(arg_value, lower_limit, upper_limit, rel, float, arg_name, prim_name)
/third_party/boost/tools/build/doc/src/
Dpath.adoc93 14. [[bbv2.reference.modules.path.all-parents]] `rule all-parents ( path : upper_limit ? : cwd ? )`
97 relative names. If `upper_limit` is specified, directories above it will
103 including `upper_limit`, if it is specified, or till the filesystem root
/third_party/mesa3d/include/android_stub/system/
Dradio.h113 uint32_t upper_limit; member
/third_party/python/Modules/
Dfaulthandler.c1155 uintptr_t stop, lower_limit, upper_limit; in faulthandler_stack_overflow() local
1168 upper_limit = sp + STACK_OVERFLOW_MAX_SIZE; in faulthandler_stack_overflow()
1171 upper_limit = UINTPTR_MAX; in faulthandler_stack_overflow()
1174 stop = stack_overflow(lower_limit, upper_limit, &depth); in faulthandler_stack_overflow()
/third_party/jerryscript/jerry-core/ecma/base/
Decma-helpers-conversion.c304 lit_code_point_t upper_limit = LIT_CHAR_0 + radix; in ecma_utf8_string_to_number_by_radix() local
310 if (*iter_p >= LIT_CHAR_0 && *iter_p < upper_limit) in ecma_utf8_string_to_number_by_radix()
/third_party/boost/libs/math/doc/distributions/
Dchi_squared_examples.qbk69 double upper_limit = sqrt((N - 1) * Sd * Sd / quantile(dist, alpha[i] / 2));
72 cout << fixed << setprecision(5) << setw(15) << right << upper_limit << endl;