/third_party/boost/libs/histogram/test/ |
D | axis_option_test.cpp | 23 << "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()
|
D | axis_traits_test.cpp | 75 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()
|
D | axis_integer_fail3.cpp | 14 decltype(axis::option::growth | axis::option::underflow)>(1, 2); in main()
|
D | axis_variable_fail1.cpp | 14 decltype(axis::option::circular | axis::option::growth)>( in main()
|
D | axis_category_fail2.cpp | 14 decltype(axis::option::growth | axis::option::overflow)>({1, 2}); in main()
|
D | axis_integer_fail4.cpp | 14 decltype(axis::option::growth | axis::option::overflow)>(1, 2); in main()
|
D | axis_integer_fail0.cpp | 14 decltype(axis::option::circular | axis::option::growth)>(1, 2); in main()
|
D | axis_regular_fail1.cpp | 14 decltype(axis::option::circular | axis::option::growth)>(1, 2, 3); in main()
|
D | histogram_growing_test.cpp | 27 axis::option::growth)>;
|
/third_party/boost/boost/histogram/axis/ |
D | integer.hpp | 55 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()
|
D | category.hpp | 60 static_assert(!(options_type::test(option::growth) && 154 return options() & (option::overflow | option::growth); in inclusive()
|
D | option.hpp | 74 constexpr growth_t growth{}; ///< Instance of `growth_t`. variable
|
D | regular.hpp | 202 (!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()
|
D | variable.hpp | 66 (!options_type::test(option::circular) && !options_type::test(option::growth)) || 67 (options_type::test(option::circular) ^ options_type::test(option::growth)),
|
D | ostream.hpp | 100 BOOST_HISTOGRAM_AXIS_OPTION_OSTREAM(growth); in ostream_options()
|
/third_party/glslang/glslang/Include/ |
D | InfoSink.h | 129 void checkMem(size_t growth) { if (sink.capacity() < sink.size() + growth + 2) in checkMem() argument
|
/third_party/abseil-cpp/absl/container/internal/ |
D | raw_hash_set_test.cc | 75 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/ |
D | script | 1 test_description="very large fs growth using ext4"
|
/third_party/e2fsprogs/tests/r_64bit_big_expand/ |
D | script | 1 test_description="very large fs growth using ext4 w/64bit"
|
/third_party/python/Objects/ |
D | bytearrayobject.c | 450 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/ |
D | tutorial_chaotic_system.qbk | 20 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/ |
D | raw_hash_set_test.cc | 80 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/ |
D | axes.hpp | 66 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/ |
D | config.h.win32.in | 141 direction of stack growth for your system; otherwise it will be 145 STACK_DIRECTION = 0 => direction of growth unknown */
|
/third_party/libffi/ |
D | fficonfig.h.in | 161 direction of stack growth for your system; otherwise it will be 165 STACK_DIRECTION = 0 => direction of growth unknown */
|