Home
last modified time | relevance | path

Searched refs:growth (Results 1 – 25 of 103) sorted by relevance

12345

/third_party/boost/libs/histogram/test/
Daxis_option_test.cpp23 << "growth " << static_cast<bool>(N & option::growth); in operator <<()
30 constexpr auto uoflow_growth = uoflow{} | growth; in main()
41 BOOST_TEST_NOT(uoflow::test(growth)); in main()
44 BOOST_TEST(uoflow_growth.test(growth)); in main()
48 BOOST_TEST_EQ(uoflow_growth & growth, growth); in main()
51 BOOST_TEST_EQ(uoflow_growth - growth, uoflow{}); in main()
52 BOOST_TEST_EQ(uoflow_growth - uoflow{}, growth); in main()
53 BOOST_TEST_EQ(uoflow_growth - underflow, growth | overflow); in main()
Daxis_traits_test.cpp75 BOOST_TEST_EQ(traits::get_options<A>::test(option::growth), false); in main()
84 BOOST_TEST_EQ(traits::get_options<B>::test(option::growth), true); in main()
85 BOOST_TEST_EQ(traits::options(B{}), option::growth); in main()
91 BOOST_TEST_EQ(traits::get_options<C>::test(option::growth), true); in main()
93 BOOST_TEST_EQ(traits::options(c), option::growth); in main()
94 BOOST_TEST_EQ(traits::options(static_cast<C&>(c)), option::growth); in main()
95 BOOST_TEST_EQ(traits::options(static_cast<const C&>(c)), option::growth); in main()
96 BOOST_TEST_EQ(traits::options(std::move(c)), option::growth); in main()
102 BOOST_TEST_EQ(traits::get_options<D>::test(option::growth), false); in main()
Daxis_integer_fail3.cpp14 decltype(axis::option::growth | axis::option::underflow)>(1, 2); in main()
Daxis_variable_fail1.cpp14 decltype(axis::option::circular | axis::option::growth)>( in main()
Daxis_category_fail2.cpp14 decltype(axis::option::growth | axis::option::overflow)>({1, 2}); in main()
Daxis_integer_fail4.cpp14 decltype(axis::option::growth | axis::option::overflow)>(1, 2); in main()
Daxis_integer_fail0.cpp14 decltype(axis::option::circular | axis::option::growth)>(1, 2); in main()
Daxis_regular_fail1.cpp14 decltype(axis::option::circular | axis::option::growth)>(1, 2, 3); in main()
Dhistogram_growing_test.cpp27 axis::option::growth)>;
/third_party/boost/boost/histogram/axis/
Dinteger.hpp55 static_assert(!options_type::test(option::circular | option::growth) ||
57 options_type::test(option::growth)),
62 !options_type::test(option::growth)) ||
158 (options() & (option::growth | option::circular))); in inclusive()
Dcategory.hpp60 static_assert(!(options_type::test(option::growth) &&
154 return options() & (option::overflow | option::growth); in inclusive()
Doption.hpp74 constexpr growth_t growth{}; ///< Instance of `growth_t`. variable
Dregular.hpp202 (!options_type::test(option::circular) && !options_type::test(option::growth)) ||
203 (options_type::test(option::circular) ^ options_type::test(option::growth)),
313 assert(options_type::test(option::growth)); in update()
Dvariable.hpp66 (!options_type::test(option::circular) && !options_type::test(option::growth)) ||
67 (options_type::test(option::circular) ^ options_type::test(option::growth)),
Dostream.hpp100 BOOST_HISTOGRAM_AXIS_OPTION_OSTREAM(growth); in ostream_options()
/third_party/glslang/glslang/Include/
DInfoSink.h129 void checkMem(size_t growth) { if (sink.capacity() < sink.size() + growth + 2) in checkMem() argument
/third_party/abseil-cpp/absl/container/internal/
Draw_hash_set_test.cc75 for (size_t growth = 0; growth < 10000; ++growth) { in TEST() local
76 SCOPED_TRACE(growth); in TEST()
77 size_t capacity = NormalizeCapacity(GrowthToLowerboundCapacity(growth)); in TEST()
79 EXPECT_THAT(CapacityToGrowth(capacity), Ge(growth)); in TEST()
80 if (growth != 0 && capacity > 1) { in TEST()
82 EXPECT_THAT(CapacityToGrowth(capacity / 2), Lt(growth)); in TEST()
89 size_t growth = CapacityToGrowth(capacity); in TEST() local
90 EXPECT_THAT(growth, Lt(capacity)); in TEST()
91 EXPECT_LE(GrowthToLowerboundCapacity(growth), capacity); in TEST()
92 EXPECT_EQ(NormalizeCapacity(GrowthToLowerboundCapacity(growth)), capacity); in TEST()
/third_party/e2fsprogs/tests/r_ext4_big_expand/
Dscript1 test_description="very large fs growth using ext4"
/third_party/e2fsprogs/tests/r_64bit_big_expand/
Dscript1 test_description="very large fs growth using ext4 w/64bit"
/third_party/python/Objects/
Dbytearrayobject.c450 Py_ssize_t growth = bytes_len - avail; in bytearray_setslice_linear() local
454 if (growth < 0) { in bytearray_setslice_linear()
460 self->ob_start -= growth; in bytearray_setslice_linear()
479 Py_SIZE(self) + growth) < 0) { in bytearray_setslice_linear()
490 self->ob_start += growth; in bytearray_setslice_linear()
495 Py_SET_SIZE(self, Py_SIZE(self) + growth); in bytearray_setslice_linear()
500 else if (growth > 0) { in bytearray_setslice_linear()
501 if (Py_SIZE(self) > (Py_ssize_t)PY_SSIZE_T_MAX - growth) { in bytearray_setslice_linear()
507 Py_SIZE(self) + growth) < 0) { in bytearray_setslice_linear()
/third_party/boost/libs/numeric/odeint/doc/
Dtutorial_chaotic_system.qbk20 growth of perturbations ['__delta x]. In order to observe this exponential growth one usually solve…
27 time. The Lyapunov exponents are then defined as logarithmic growth rates of
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/
Draw_hash_set_test.cc80 for (size_t growth = 0; growth < 10000; ++growth) { in TEST() local
81 SCOPED_TRACE(growth); in TEST()
82 size_t capacity = NormalizeCapacity(GrowthToLowerboundCapacity(growth)); in TEST()
84 EXPECT_THAT(CapacityToGrowth(capacity), Ge(growth)); in TEST()
91 if (growth != 0 && capacity > 1) { in TEST()
93 EXPECT_THAT(CapacityToGrowth(capacity / 2), Lt(growth)); in TEST()
100 size_t growth = CapacityToGrowth(capacity); in TEST() local
101 EXPECT_THAT(growth, Lt(capacity)); in TEST()
102 EXPECT_LE(GrowthToLowerboundCapacity(growth), capacity); in TEST()
103 EXPECT_EQ(NormalizeCapacity(GrowthToLowerboundCapacity(growth)), capacity); in TEST()
/third_party/boost/boost/histogram/detail/
Daxes.hpp66 axis::traits::is_continuous<T>::value == false && O::test(axis::option::growth); in operator ()()
358 if (axis::traits::options(a) & axis::option::growth) in offset()
384 using is_growing = decltype(axis::traits::get_options<T>::test(axis::option::growth));
/third_party/libpsl/msvc/
Dconfig.h.win32.in141 direction of stack growth for your system; otherwise it will be
145 STACK_DIRECTION = 0 => direction of growth unknown */
/third_party/libffi/
Dfficonfig.h.in161 direction of stack growth for your system; otherwise it will be
165 STACK_DIRECTION = 0 => direction of growth unknown */

12345