Home
last modified time | relevance | path

Searched refs:int_least32_t (Results 1 – 25 of 49) sorted by relevance

12

/third_party/boost/boost/detail/
Dbitmask.hpp26 { return static_cast<Bitmask>( static_cast<boost::int_least32_t>(x) \
27 | static_cast<boost::int_least32_t>(y)); } \
30 { return static_cast<Bitmask>( static_cast<boost::int_least32_t>(x) \
31 & static_cast<boost::int_least32_t>(y)); } \
34 { return static_cast<Bitmask>( static_cast<boost::int_least32_t>(x) \
35 ^ static_cast<boost::int_least32_t>(y)); } \
38 { return static_cast<Bitmask>(~static_cast<boost::int_least32_t>(x)); } \
/third_party/boost/boost/smart_ptr/detail/
Dsp_counted_base_pt.hpp47 boost::int_least32_t use_count_; // #shared
48 boost::int_least32_t weak_count_; // #weak + (#shared != 0)
104 boost::int_least32_t new_use_count = --use_count_; in release()
124 boost::int_least32_t new_weak_count = --weak_count_; in weak_release()
136 boost::int_least32_t r = use_count_; in use_count()
Dsp_counted_base_clang.hpp29 typedef _Atomic( boost::int_least32_t ) atomic_int_least32_t;
36 inline boost::int_least32_t atomic_decrement( atomic_int_least32_t * pw ) BOOST_SP_NOEXCEPT in atomic_decrement()
41 inline boost::int_least32_t atomic_conditional_increment( atomic_int_least32_t * pw ) BOOST_SP_NOEX… in atomic_conditional_increment()
47 boost::int_least32_t r = __c11_atomic_load( pw, __ATOMIC_RELAXED ); in atomic_conditional_increment()
Dsp_counted_base_std_atomic.hpp42 inline std::int_least32_t atomic_decrement( std::atomic_int_least32_t * pw ) BOOST_SP_NOEXCEPT in atomic_decrement()
47 inline std::int_least32_t atomic_conditional_increment( std::atomic_int_least32_t * pw ) BOOST_SP_N… in atomic_conditional_increment()
53 std::int_least32_t r = pw->load( std::memory_order_relaxed ); in atomic_conditional_increment()
Datomic_count_sync.hpp41 explicit atomic_count( long v ): value_( static_cast< boost::int_least32_t >( v ) ) in atomic_count()
65 mutable boost::int_least32_t value_;
Datomic_count_gcc_atomic.hpp32 explicit atomic_count( long v ): value_( static_cast< boost::int_least32_t >( v ) ) in atomic_count()
56 boost::int_least32_t value_;
Dsp_counted_base_nt.hpp46 boost::int_least32_t use_count_; // #shared
47 boost::int_least32_t weak_count_; // #weak + (#shared != 0)
Datomic_count_std_atomic.hpp36 explicit atomic_count( long v ): value_( static_cast< std::int_least32_t >( v ) ) in atomic_count()
/third_party/boost/libs/endian/test/
Dendian_test.cpp532 VERIFY_VALUE_AND_OPS( big_int24_t, int_least32_t, 0x7ffffe ); in check_representation_and_range_and_ops()
533 VERIFY_VALUE_AND_OPS( big_int24_t, int_least32_t, -0x800000 ); in check_representation_and_range_and_ops()
536 VERIFY_VALUE_AND_OPS( big_int32_t, int_least32_t, 0x7ffffffe ); in check_representation_and_range_and_ops()
537 VERIFY_VALUE_AND_OPS( big_int32_t, int_least32_t, -0x7fffffff-1 ); in check_representation_and_range_and_ops()
588 VERIFY_VALUE_AND_OPS( little_int24_t, int_least32_t, 0x7ffffe ); in check_representation_and_range_and_ops()
589 VERIFY_VALUE_AND_OPS( little_int24_t, int_least32_t, -0x800000 ); in check_representation_and_range_and_ops()
592 VERIFY_VALUE_AND_OPS( little_int32_t, int_least32_t, 0x7ffffffe ); in check_representation_and_range_and_ops()
593 VERIFY_VALUE_AND_OPS( little_int32_t, int_least32_t, -0x7fffffff-1 ); in check_representation_and_range_and_ops()
644 VERIFY_VALUE_AND_OPS( native_int24_t, int_least32_t, 0x7ffffe ); in check_representation_and_range_and_ops()
645 VERIFY_VALUE_AND_OPS( native_int24_t, int_least32_t, -0x800000 ); in check_representation_and_range_and_ops()
[all …]
Ddata_test.cpp62 test_unaligned<boost::int_least32_t, 24>(); in main()
63 test_unaligned<boost::int_least32_t, 32>(); in main()
/third_party/boost/boost/endian/
Dendian.hpp40 typedef endian_arithmetic< order::big, int_least32_t, 24 > big24_t;
41 typedef endian_arithmetic< order::big, int_least32_t, 32 > big32_t;
60 typedef endian_arithmetic< order::little, int_least32_t, 24 > little24_t;
61 typedef endian_arithmetic< order::little, int_least32_t, 32 > little32_t;
80 typedef endian_arithmetic< order::native, int_least32_t, 24 > native24_t;
81 typedef endian_arithmetic< order::native, int_least32_t, 32 > native32_t;
Darithmetic.hpp111 typedef endian_arithmetic<order::big, int_least32_t, 24> big_int24_t;
112 typedef endian_arithmetic<order::big, int_least32_t, 32> big_int32_t;
131 typedef endian_arithmetic<order::little, int_least32_t, 24> little_int24_t;
132 typedef endian_arithmetic<order::little, int_least32_t, 32> little_int32_t;
151 typedef endian_arithmetic<order::native, int_least32_t, 24> native_int24_t;
152 typedef endian_arithmetic<order::native, int_least32_t, 32> native_int32_t;
Dbuffers.hpp114 typedef endian_buffer<order::big, int_least32_t, 24> big_int24_buf_t;
115 typedef endian_buffer<order::big, int_least32_t, 32> big_int32_buf_t;
134 typedef endian_buffer<order::little, int_least32_t, 24> little_int24_buf_t;
135 typedef endian_buffer<order::little, int_least32_t, 32> little_int32_buf_t;
154 typedef endian_buffer<order::native, int_least32_t, 24> native_int24_buf_t;
155 typedef endian_buffer<order::native, int_least32_t, 32> native_int32_buf_t;
/third_party/boost/boost/
Dcstdint.hpp98 typedef ::intleast32_t int_least32_t; typedef
132 using ::int_least32_t;
175 typedef int32_t int_least32_t; typedef
275 typedef int int_least32_t; typedef
282 typedef short int_least32_t; typedef
289 typedef long int_least32_t; typedef
297 typedef __int32 int_least32_t; typedef
/third_party/boost/boost/asio/detail/
Dcstdint.hpp35 using std::int_least32_t;
49 using boost::int_least32_t;
/third_party/boost/libs/asio/include/boost/asio/detail/
Dcstdint.hpp35 using std::int_least32_t;
49 using boost::int_least32_t;
/third_party/boost/boost/spirit/home/support/detail/endian/
Dendian.hpp469 typedef endian< endianness::big, int_least32_t, 24 > big24_t;
470 typedef endian< endianness::big, int_least32_t, 32 > big32_t;
489 typedef endian< endianness::little, int_least32_t, 24 > little24_t;
490 typedef endian< endianness::little, int_least32_t, 32 > little32_t;
509 typedef endian< endianness::native, int_least32_t, 24 > native24_t;
510 typedef endian< endianness::native, int_least32_t, 32 > native32_t;
/third_party/boost/libs/config/test/
Dcstdint_test.cpp59 static const boost::int_least32_t int_least32 = INT32_C(-2147483647);
179 boost::int_least32_t int_least32 = INT32_C(-2147483647); in main()
Dcstdint_test2.cpp69 static const boost::int_least32_t int_least32 = INT32_C(-2147483647);
189 boost::int_least32_t int_least32 = INT32_C(-2147483647); in main()
Dcstdint_include_test.cpp37 boost::int_least32_t i32least = INT32_C(0); in main()
/third_party/skia/third_party/externals/abseil-cpp/absl/time/internal/cctz/src/
Dtime_zone_info.cc65 const std::int_least32_t kDaysPerYear[2] = {365, 366};
75 const std::int_least32_t kSecsPerDay = 24 * 60 * 60;
81 const std::int_least32_t kSecsPerYear[2] = {
208 tt.utc_offset = static_cast<std::int_least32_t>(offset.count()); in ResetToBuiltinUTC()
316 tt.utc_offset = static_cast<std::int_least32_t>(utc_offset); in GetTransitionType()
452 static_cast<std::int_least32_t>(Decode32(bp)); in Load()
/third_party/abseil-cpp/absl/time/internal/cctz/src/
Dtime_zone_info.cc64 const std::int_least32_t kDaysPerYear[2] = {365, 366};
74 const std::int_least32_t kSecsPerDay = 24 * 60 * 60;
80 const std::int_least32_t kSecsPerYear[2] = {
207 tt.utc_offset = static_cast<std::int_least32_t>(offset.count()); in ResetToBuiltinUTC()
315 tt.utc_offset = static_cast<std::int_least32_t>(utc_offset); in GetTransitionType()
451 static_cast<std::int_least32_t>(Decode32(bp)); in Load()
/third_party/musl/porting/liteos_m/kernel/include/
Dstdint.h27 typedef int32_t int_least32_t; typedef
/third_party/musl/porting/liteos_a/kernel/include/
Dstdint.h27 typedef int32_t int_least32_t; typedef
/third_party/musl/include/
Dstdint.h27 typedef int32_t int_least32_t; typedef

12