Home
last modified time | relevance | path

Searched refs:max_splits (Results 1 – 8 of 8) sorted by relevance

/third_party/boost/boost/sort/spreadsort/detail/
Dspreadsort_common.hpp57 BOOST_STATIC_ASSERT(log_min_split_count <= max_splits && in get_min_count()
59 BOOST_STATIC_ASSERT(max_splits > 1 && in get_min_count()
60 max_splits < (8 * sizeof(unsigned))); in get_min_count()
61 BOOST_STATIC_ASSERT(max_finishing_splits >= max_splits && in get_min_count()
68 if (log_range <= min_size && log_range <= max_splits) { in get_min_count()
75 const unsigned base_iterations = max_splits - log_min_split_count; in get_min_count()
78 ((base_iterations + 1) * (max_splits + log_min_split_count))/2 in get_min_count()
94 unsigned bit_length = ((((max_splits - 1) + remainder)/max_splits) in get_min_count()
Dconstants.hpp20 enum { max_splits = 11, enumerator
23 max_finishing_splits = max_splits + 1,
Dinteger_sort.hpp99 if ((log_range - log_divisor) > max_splits) in get_log_divisor()
100 log_divisor = log_range - max_splits; in get_log_divisor()
/third_party/boost/libs/sort/
Dtune.pl79 $max_splits = 11;
104 TuneVariable(\$log_min_size, $log_mean_bin_size + 1, $max_splits + $log_mean_bin_size);
112 …TuneVariable(\$float_log_min_size, $float_log_mean_bin_size + 1, $max_splits + $float_log_mean_bin…
213 print CONSTANTS "enum { max_splits = $max_splits,\n";
/third_party/boost/libs/sort/test/
Dsort_detail_test.cpp85 int base_iterations = max_splits - log_min_split_count; in get_min_count_test()
88 covered_log_range += max_splits * (iterations - base_iterations); in get_min_count_test()
97 BOOST_CHECK(covered_log_range - max_splits < log_range); in get_min_count_test()
122 BOOST_CHECK(log_range - log_divisor <= max_splits); in get_log_divisor_test()
/third_party/boost/libs/sort/doc/
Dspreadsort.qbk377 By far the most important constant is ['max_splits],
381 The ideal value of ['max_splits] depends upon the size of the L1 processor cache,
388 ( less than 1 million or so), the ideal ['max_splits] can be substantially larger,
392 Modifying tuning constants other than ['max_splits] is not recommended,
410 but may not pick the correct ['max_splits] if it is over 10.
414 (see above note about ['max_splits] on Windows).
498 ['s] is ['max_splits], which defaults to 11,
538 ['s] is ['max_splits], which defaults to 11,
716 and the size of ['max_splits] is tuned to the size of the cache.
717 On a computer where cache misses aren't this expensive, ['max_splits]
[all …]
/third_party/skia/third_party/externals/freetype/src/sdf/
Dftsdf.c1068 FT_Int max_splits, in split_sdf_conic() argument
1092 if ( max_splits <= 2 ) in split_sdf_conic()
1096 FT_CALL( split_sdf_conic( memory, &cpos[0], max_splits / 2, out ) ); in split_sdf_conic()
1097 FT_CALL( split_sdf_conic( memory, &cpos[2], max_splits / 2, out ) ); in split_sdf_conic()
1137 FT_Int max_splits, in split_sdf_cubic() argument
1162 if ( max_splits <= 2 ) in split_sdf_cubic()
1166 FT_CALL( split_sdf_cubic( memory, &cpos[0], max_splits / 2, out ) ); in split_sdf_cubic()
1167 FT_CALL( split_sdf_cubic( memory, &cpos[3], max_splits / 2, out ) ); in split_sdf_cubic()
/third_party/chromium/patch/
D0001-cve.patch22053 - FT_Int max_splits,
22054 + FT_UInt max_splits,
22062 - FT_Int max_splits,
22063 + FT_UInt max_splits,