/third_party/boost/boost/smart_ptr/detail/ |
D | sp_counted_base_gcc_atomic.hpp | 33 inline void atomic_increment( boost::uint_least32_t * pw ) in atomic_increment() 38 inline boost::uint_least32_t atomic_decrement( boost::uint_least32_t * pw ) in atomic_decrement() 43 inline boost::uint_least32_t atomic_conditional_increment( boost::uint_least32_t * pw ) in atomic_conditional_increment() 49 boost::uint_least32_t r = __atomic_load_n( pw, __ATOMIC_RELAXED ); in atomic_conditional_increment() 65 inline boost::uint_least32_t atomic_load( boost::uint_least32_t const * pw ) in atomic_load() 77 boost::uint_least32_t use_count_; // #shared 78 boost::uint_least32_t weak_count_; // #weak + (#shared != 0)
|
/third_party/boost/boost/random/detail/ |
D | seed_impl.hpp | 92 boost::uint_least32_t saved_bits = 0; in generate_from_real() 101 saved_bits |= boost::uint_least32_t(val) << remaining_bits; in generate_from_real() 108 boost::uint_least32_t divisor = in generate_from_real() 109 (boost::uint_least32_t(1) << (32 - remaining_bits)); in generate_from_real() 110 … boost::uint_least32_t extra_bits = boost::uint_least32_t(fmod(val, mult32)) & (divisor - 1); in generate_from_real() 120 boost::uint_least32_t word = boost::uint_least32_t(fmod(val, mult32)); in generate_from_real() 127 saved_bits = static_cast<boost::uint_least32_t>(val); in generate_from_real() 138 boost::uint_least32_t saved_bits = 0; in generate_from_int() 166 *begin++ = static_cast<boost::uint_least32_t>(val) & 0xFFFFFFFFu; in generate_from_int() 170 boost::uint_least32_t word = boost::uint_least32_t(val) & 0xFFFFFFFFu; in generate_from_int() [all …]
|
/third_party/boost/boost/assert/ |
D | source_location.hpp | 24 boost::uint_least32_t line_; 25 boost::uint_least32_t column_; 33 …R source_location( char const * file, boost::uint_least32_t ln, char const * function, boost::uint… in source_location() 47 BOOST_CONSTEXPR boost::uint_least32_t line() const BOOST_NOEXCEPT in line() 52 BOOST_CONSTEXPR boost::uint_least32_t column() const BOOST_NOEXCEPT in column()
|
/third_party/boost/boost/utility/detail/ |
D | minstd_rand.hpp | 25 boost::uint_least32_t x_; 35 explicit minstd_rand( boost::uint_least32_t x ): x_( x % m ) in minstd_rand() 43 boost::uint_least32_t operator()() in operator ()() 49 x_ = static_cast<boost::uint_least32_t>( y ); in operator ()()
|
/third_party/boost/libs/assert/doc/ |
D | source_location.adoc | 32 constexpr source_location(char const* file, uint_least32_t line, 33 char const* function, uint_least32_t column = 0) noexcept; 37 constexpr uint_least32_t line() const noexcept; 38 constexpr uint_least32_t column() const noexcept; 62 constexpr source_location(char const* file, uint_least32_t line, 63 char const* function, uint_least32_t column = 0) noexcept;
|
/third_party/boost/boost/endian/ |
D | endian.hpp | 50 typedef endian_arithmetic< order::big, uint_least32_t, 24 > ubig24_t; 51 typedef endian_arithmetic< order::big, uint_least32_t, 32 > ubig32_t; 70 typedef endian_arithmetic< order::little, uint_least32_t, 24 > ulittle24_t; 71 typedef endian_arithmetic< order::little, uint_least32_t, 32 > ulittle32_t; 90 typedef endian_arithmetic< order::native, uint_least32_t, 24 > unative24_t; 91 typedef endian_arithmetic< order::native, uint_least32_t, 32 > unative32_t;
|
D | arithmetic.hpp | 121 typedef endian_arithmetic<order::big, uint_least32_t, 24> big_uint24_t; 122 typedef endian_arithmetic<order::big, uint_least32_t, 32> big_uint32_t; 141 typedef endian_arithmetic<order::little, uint_least32_t, 24> little_uint24_t; 142 typedef endian_arithmetic<order::little, uint_least32_t, 32> little_uint32_t; 161 typedef endian_arithmetic<order::native, uint_least32_t, 24> native_uint24_t; 162 typedef endian_arithmetic<order::native, uint_least32_t, 32> native_uint32_t;
|
D | buffers.hpp | 124 typedef endian_buffer<order::big, uint_least32_t, 24> big_uint24_buf_t; 125 typedef endian_buffer<order::big, uint_least32_t, 32> big_uint32_buf_t; 144 typedef endian_buffer<order::little, uint_least32_t, 24> little_uint24_buf_t; 145 typedef endian_buffer<order::little, uint_least32_t, 32> little_uint32_buf_t; 164 typedef endian_buffer<order::native, uint_least32_t, 24> native_uint24_buf_t; 165 typedef endian_buffer<order::native, uint_least32_t, 32> native_uint32_buf_t;
|
/third_party/boost/boost/ |
D | cstdint.hpp | 100 typedef ::uintleast32_t uint_least32_t; typedef 135 using ::uint_least32_t; 178 typedef uint32_t uint_least32_t; typedef 278 typedef unsigned int uint_least32_t; typedef 285 typedef unsigned short uint_least32_t; typedef 292 typedef unsigned long uint_least32_t; typedef 300 typedef unsigned __int32 uint_least32_t; typedef
|
D | cxx11_char_types.hpp | 61 typedef boost::uint_least32_t char32;
|
/third_party/boost/boost/asio/detail/ |
D | cstdint.hpp | 37 using std::uint_least32_t; 51 using boost::uint_least32_t;
|
/third_party/boost/boost/spirit/home/x3/binary/ |
D | binary.hpp | 114 BOOST_SPIRIT_MAKE_BINARY_PRIMITIVE(dword, native, uint_least32_t, 32) 115 BOOST_SPIRIT_MAKE_BINARY_PRIMITIVE(big_dword, big, uint_least32_t, 32) 116 BOOST_SPIRIT_MAKE_BINARY_PRIMITIVE(little_dword, little, uint_least32_t, 32)
|
/third_party/boost/libs/endian/test/ |
D | endian_test.cpp | 562 VERIFY_VALUE_AND_OPS( big_uint24_t, uint_least32_t, 0xffffff ); in check_representation_and_range_and_ops() 565 VERIFY_VALUE_AND_OPS( big_uint32_t, uint_least32_t, 0xffffffff ); in check_representation_and_range_and_ops() 618 VERIFY_VALUE_AND_OPS( little_uint24_t, uint_least32_t, 0xffffff ); in check_representation_and_range_and_ops() 621 VERIFY_VALUE_AND_OPS( little_uint32_t, uint_least32_t, 0xffffffff ); in check_representation_and_range_and_ops() 674 VERIFY_VALUE_AND_OPS( native_uint24_t, uint_least32_t, 0xffffff ); in check_representation_and_range_and_ops() 677 VERIFY_VALUE_AND_OPS( native_uint32_t, uint_least32_t, 0xffffffff ); in check_representation_and_range_and_ops() 708 VERIFY_VALUE_AND_OPS( big_uint32_at, uint_least32_t, 0xffffffff ); in check_representation_and_range_and_ops() 729 VERIFY_VALUE_AND_OPS( little_uint32_at, uint_least32_t, 0xffffffff ); in check_representation_and_range_and_ops()
|
D | data_test.cpp | 71 test_unaligned<boost::uint_least32_t, 24>(); in main() 72 test_unaligned<boost::uint_least32_t, 32>(); in main()
|
/third_party/boost/boost/archive/ |
D | basic_binary_oarchive.hpp | 90 BOOST_STATIC_ASSERT(sizeof(object_id_type) == sizeof(uint_least32_t)); 91 BOOST_STATIC_ASSERT(sizeof(object_reference_type) == sizeof(uint_least32_t));
|
D | basic_binary_iarchive.hpp | 85 BOOST_STATIC_ASSERT(sizeof(object_id_type) == sizeof(uint_least32_t)); 86 BOOST_STATIC_ASSERT(sizeof(object_reference_type) == sizeof(uint_least32_t));
|
D | basic_archive.hpp | 44 typedef uint_least32_t base_type; 116 typedef uint_least32_t base_type;
|
/third_party/boost/boost/spirit/home/support/detail/endian/ |
D | endian.hpp | 479 typedef endian< endianness::big, uint_least32_t, 24 > ubig24_t; 480 typedef endian< endianness::big, uint_least32_t, 32 > ubig32_t; 499 typedef endian< endianness::little, uint_least32_t, 24 > ulittle24_t; 500 typedef endian< endianness::little, uint_least32_t, 32 > ulittle32_t; 519 typedef endian< endianness::native, uint_least32_t, 24 > unative24_t; 520 typedef endian< endianness::native, uint_least32_t, 32 > unative32_t;
|
/third_party/boost/boost/mpi/ |
D | datatype.hpp | 352 BOOST_MPI_DATATYPE(boost::archive::object_id_type, get_mpi_datatype(uint_least32_t()), integer); 353 BOOST_MPI_DATATYPE(boost::archive::object_reference_type, get_mpi_datatype(uint_least32_t()), integ…
|
/third_party/mingw-w64/mingw-w64-headers/crt/ |
D | uchar.h | 35 typedef uint_least32_t char32_t;
|
/third_party/boost/libs/config/test/ |
D | cstdint_test2.cpp | 73 static const boost::uint_least32_t uint_least32 = UINT32_C(4294967295); 193 boost::uint_least32_t uint_least32 = UINT32_C(4294967295); in main()
|
D | cstdint_test.cpp | 63 static const boost::uint_least32_t uint_least32 = UINT32_C(4294967295); 183 boost::uint_least32_t uint_least32 = UINT32_C(4294967295); in main()
|
D | cstdint_include_test.cpp | 39 boost::uint_least32_t ui32least = UINT32_C(0); in main()
|
/third_party/boost/boost/archive/impl/ |
D | basic_xml_grammar.hpp | 152 uint_least32_t object_id;
|
/third_party/musl/porting/liteos_a/kernel/include/ |
D | stdint.h | 35 typedef uint32_t uint_least32_t; typedef
|