Home
last modified time | relevance | path

Searched refs:int_least64_t (Results 1 – 25 of 61) sorted by relevance

123

/third_party/boost/boost/endian/
Dendian.hpp42 typedef endian_arithmetic< order::big, int_least64_t, 40 > big40_t;
43 typedef endian_arithmetic< order::big, int_least64_t, 48 > big48_t;
44 typedef endian_arithmetic< order::big, int_least64_t, 56 > big56_t;
45 typedef endian_arithmetic< order::big, int_least64_t, 64 > big64_t;
62 typedef endian_arithmetic< order::little, int_least64_t, 40 > little40_t;
63 typedef endian_arithmetic< order::little, int_least64_t, 48 > little48_t;
64 typedef endian_arithmetic< order::little, int_least64_t, 56 > little56_t;
65 typedef endian_arithmetic< order::little, int_least64_t, 64 > little64_t;
82 typedef endian_arithmetic< order::native, int_least64_t, 40 > native40_t;
83 typedef endian_arithmetic< order::native, int_least64_t, 48 > native48_t;
[all …]
Darithmetic.hpp113 typedef endian_arithmetic<order::big, int_least64_t, 40> big_int40_t;
114 typedef endian_arithmetic<order::big, int_least64_t, 48> big_int48_t;
115 typedef endian_arithmetic<order::big, int_least64_t, 56> big_int56_t;
116 typedef endian_arithmetic<order::big, int_least64_t, 64> big_int64_t;
133 typedef endian_arithmetic<order::little, int_least64_t, 40> little_int40_t;
134 typedef endian_arithmetic<order::little, int_least64_t, 48> little_int48_t;
135 typedef endian_arithmetic<order::little, int_least64_t, 56> little_int56_t;
136 typedef endian_arithmetic<order::little, int_least64_t, 64> little_int64_t;
153 typedef endian_arithmetic<order::native, int_least64_t, 40> native_int40_t;
154 typedef endian_arithmetic<order::native, int_least64_t, 48> native_int48_t;
[all …]
Dbuffers.hpp116 typedef endian_buffer<order::big, int_least64_t, 40> big_int40_buf_t;
117 typedef endian_buffer<order::big, int_least64_t, 48> big_int48_buf_t;
118 typedef endian_buffer<order::big, int_least64_t, 56> big_int56_buf_t;
119 typedef endian_buffer<order::big, int_least64_t, 64> big_int64_buf_t;
136 typedef endian_buffer<order::little, int_least64_t, 40> little_int40_buf_t;
137 typedef endian_buffer<order::little, int_least64_t, 48> little_int48_buf_t;
138 typedef endian_buffer<order::little, int_least64_t, 56> little_int56_buf_t;
139 typedef endian_buffer<order::little, int_least64_t, 64> little_int64_buf_t;
156 typedef endian_buffer<order::native, int_least64_t, 40> native_int40_buf_t;
157 typedef endian_buffer<order::native, int_least64_t, 48> native_int48_buf_t;
[all …]
/third_party/boost/libs/endian/test/
Dendian_test.cpp540 VERIFY_VALUE_AND_OPS( big_int40_t, int_least64_t, 0x7ffffffffeLL ); in check_representation_and_range_and_ops()
541 VERIFY_VALUE_AND_OPS( big_int40_t, int_least64_t, -0x8000000000LL ); in check_representation_and_range_and_ops()
544 VERIFY_VALUE_AND_OPS( big_int48_t, int_least64_t, 0x7ffffffffffeLL ); in check_representation_and_range_and_ops()
545 VERIFY_VALUE_AND_OPS( big_int48_t, int_least64_t, -0x800000000000LL ); in check_representation_and_range_and_ops()
548 VERIFY_VALUE_AND_OPS( big_int56_t, int_least64_t, 0x7ffffffffffffeLL ); in check_representation_and_range_and_ops()
549 VERIFY_VALUE_AND_OPS( big_int56_t, int_least64_t, -0x80000000000000LL ); in check_representation_and_range_and_ops()
552 VERIFY_VALUE_AND_OPS( big_int64_t, int_least64_t, 0x7ffffffffffffffeLL ); in check_representation_and_range_and_ops()
553 VERIFY_VALUE_AND_OPS( big_int64_t, int_least64_t, -0x7fffffffffffffffLL-1 ); in check_representation_and_range_and_ops()
596 VERIFY_VALUE_AND_OPS( little_int40_t, int_least64_t, 0x7ffffffffeLL ); in check_representation_and_range_and_ops()
597 VERIFY_VALUE_AND_OPS( little_int40_t, int_least64_t, -0x8000000000LL ); in check_representation_and_range_and_ops()
[all …]
Ddata_test.cpp64 test_unaligned<boost::int_least64_t, 40>(); in main()
65 test_unaligned<boost::int_least64_t, 48>(); in main()
66 test_unaligned<boost::int_least64_t, 56>(); in main()
67 test_unaligned<boost::int_least64_t, 64>(); in main()
/third_party/boost/libs/chrono/test/io/
Dduration_input.cpp91 test_good("5000 deciseconds", duration<boost::int_least64_t, deci> (5000)); in main()
92 test_good("5000 [1/30]seconds", duration<boost::int_least64_t, ratio<1, 30> > (5000)); in main()
93 test_good("5000 [1/30]second", duration<boost::int_least64_t, ratio<1, 30> > (5000)); in main()
103 test_good("5000 ds", duration<boost::int_least64_t, deci> (5000)); in main()
104 test_good("5000 [1/30]s", duration<boost::int_least64_t, ratio<1, 30> > (5000)); in main()
105 test_not_eof("5000 [1/30]ss", duration<boost::int_least64_t, ratio<1, 30> > (5000)); in main()
Dduration_output.cpp89 test_good_prefix("5000 deciseconds", duration<boost::int_least64_t, deci> (5000)); in main()
90 test_good_prefix("5000 [1/30]seconds", duration<boost::int_least64_t, ratio<1, 30> > (5000)); in main()
101 test_good_symbol("5000 ds", duration<boost::int_least64_t, deci> (5000)); in main()
102 test_good_symbol("5000 [1/30]s", duration<boost::int_least64_t, ratio<1, 30> > (5000)); in main()
Dtime_point_output.cpp149 test_good_prefix<Clock> ("2 deciseconds", duration<boost::int_least64_t, deci> (2)); in check_all()
150 test_good_prefix<Clock> ("2 [1/30]seconds", duration<boost::int_least64_t, ratio<1, 30> > (2)); in check_all()
161 test_good_symbol<Clock> ("2 ds", duration<boost::int_least64_t, deci> (2)); in check_all()
162 test_good_symbol<Clock> ("2 [1/30]s", duration<boost::int_least64_t, ratio<1, 30> > (2)); in check_all()
183 …efix_system_clock("1970-01-01 00:00:00.200000000 +0000", duration<boost::int_least64_t, deci> (2)); in check_all_system_clock()
184 …x_system_clock("1970-01-01 00:00:00.066666667 +0000", duration<boost::int_least64_t, ratio<1, 30> … in check_all_system_clock()
191 …mbol_system_clock("1970-01-01 00:00:00.200000000 +0000", duration<boost::int_least64_t, deci> (2)); in check_all_system_clock()
192 …l_system_clock("1970-01-01 00:00:00.066666667 +0000", duration<boost::int_least64_t, ratio<1, 30> … in check_all_system_clock()
Dtime_point_input.cpp132 test_good<Clock> ("5000 deciseconds", duration<boost::int_least64_t, deci> (5000)); in check_all()
133 test_good<Clock> ("5000 [1/30]seconds", duration<boost::int_least64_t, ratio<1, 30> > (5000)); in check_all()
144 test_good<Clock> ("5000 ds", duration<boost::int_least64_t, deci> (5000)); in check_all()
145 test_good<Clock> ("5000 [1/30]s", duration<boost::int_least64_t, ratio<1, 30> > (5000)); in check_all()
184 …test_good_system_clock ("1970-01-01 00:08:20.000000 +0000", duration<boost::int_least64_t, deci> (… in check_all_system_clock()
185 …test_good_system_clock ("1970-01-01 00:02:46.666667 +0000", duration<boost::int_least64_t, ratio<1… in check_all_system_clock()
/third_party/boost/boost/spirit/home/support/detail/endian/
Dendian.hpp471 typedef endian< endianness::big, int_least64_t, 40 > big40_t;
472 typedef endian< endianness::big, int_least64_t, 48 > big48_t;
473 typedef endian< endianness::big, int_least64_t, 56 > big56_t;
474 typedef endian< endianness::big, int_least64_t, 64 > big64_t;
491 typedef endian< endianness::little, int_least64_t, 40 > little40_t;
492 typedef endian< endianness::little, int_least64_t, 48 > little48_t;
493 typedef endian< endianness::little, int_least64_t, 56 > little56_t;
494 typedef endian< endianness::little, int_least64_t, 64 > little64_t;
511 typedef endian< endianness::native, int_least64_t, 40 > native40_t;
512 typedef endian< endianness::native, int_least64_t, 48 > native48_t;
[all …]
/third_party/boost/boost/
Dcstdint.hpp105 typedef ::intleast64_t int_least64_t; typedef
141 using ::int_least64_t;
184 typedef int64_t int_least64_t; typedef
323 typedef ::boost::long_long_type int_least64_t; typedef
335 typedef long int_least64_t; typedef
347 __extension__ typedef long long int_least64_t; typedef
359 typedef __int64 int_least64_t; typedef
/third_party/boost/boost/asio/detail/
Dcstdint.hpp39 using std::int_least64_t;
53 using boost::int_least64_t;
/third_party/boost/libs/asio/include/boost/asio/detail/
Dcstdint.hpp39 using std::int_least64_t;
53 using boost::int_least64_t;
/third_party/boost/libs/timer/src/
Dcpu_timer.cpp97 boost::int_least64_t tick_factor() // multiplier to convert ticks in tick_factor()
100 static boost::int_least64_t tick_factor = 0; in tick_factor()
148 boost::int_least64_t factor; in get_cpu_times()
/third_party/boost/libs/endian/doc/endian/
Dbuffers.adoc264 typedef endian_buffer<order::big, int_least64_t, 40> big_int40_buf_t;
265 typedef endian_buffer<order::big, int_least64_t, 48> big_int48_buf_t;
266 typedef endian_buffer<order::big, int_least64_t, 56> big_int56_buf_t;
267 typedef endian_buffer<order::big, int_least64_t, 64> big_int64_buf_t;
288 typedef endian_buffer<order::little, int_least64_t, 40> little_int40_buf_t;
289 typedef endian_buffer<order::little, int_least64_t, 48> little_int48_buf_t;
290 typedef endian_buffer<order::little, int_least64_t, 56> little_int56_buf_t;
291 typedef endian_buffer<order::little, int_least64_t, 64> little_int64_buf_t;
312 typedef endian_buffer<order::native, int_least64_t, 40> native_int40_buf_t;
313 typedef endian_buffer<order::native, int_least64_t, 48> native_int48_buf_t;
[all …]
Darithmetic.adoc287 typedef endian_arithmetic<order::big, int_least64_t, 40> big_int40_t;
288 typedef endian_arithmetic<order::big, int_least64_t, 48> big_int48_t;
289 typedef endian_arithmetic<order::big, int_least64_t, 56> big_int56_t;
290 typedef endian_arithmetic<order::big, int_least64_t, 64> big_int64_t;
311 typedef endian_arithmetic<order::little, int_least64_t, 40> little_int40_t;
312 typedef endian_arithmetic<order::little, int_least64_t, 48> little_int48_t;
313 typedef endian_arithmetic<order::little, int_least64_t, 56> little_int56_t;
314 typedef endian_arithmetic<order::little, int_least64_t, 64> little_int64_t;
335 typedef endian_arithmetic<order::native, int_least64_t, 40> native_int40_t;
336 typedef endian_arithmetic<order::native, int_least64_t, 48> native_int48_t;
[all …]
/third_party/boost/boost/chrono/
Dduration.hpp198 typedef duration<boost::int_least64_t, nano> nanoseconds; // at least 64 bits needed
199 typedef duration<boost::int_least64_t, micro> microseconds; // at least 55 bits needed
200 typedef duration<boost::int_least64_t, milli> milliseconds; // at least 45 bits needed
201 typedef duration<boost::int_least64_t> seconds; // at least 35 bits needed
/third_party/boost/libs/ratio/example/
Dduration.hpp259 typedef duration<boost::int_least64_t, boost::nano> nanoseconds; // at least 64 bits needed
260 typedef duration<boost::int_least64_t, boost::micro> microseconds; // at least 55 bits needed
261 typedef duration<boost::int_least64_t, boost::milli> milliseconds; // at least 45 bits needed
262 typedef duration<boost::int_least64_t> seconds; // at least 35 bits needed
/third_party/boost/libs/config/test/
Dcstdint_include_test.cpp42 boost::int_least64_t i64least = 0; in main()
/third_party/musl/porting/liteos_m/kernel/include/
Dstdint.h28 typedef int64_t int_least64_t; typedef
/third_party/boost/boost/timer/
Dtimer.hpp35 typedef boost::int_least64_t nanosecond_type;
/third_party/musl/porting/liteos_a/kernel/include/
Dstdint.h28 typedef int64_t int_least64_t; typedef
/third_party/musl/include/
Dstdint.h28 typedef int64_t int_least64_t; typedef
/third_party/musl/porting/uniproton/kernel/include/
Dstdint.h28 typedef int64_t int_least64_t; typedef
/third_party/musl/porting/liteos_m/user/include/
Dstdint.h28 typedef int64_t int_least64_t; typedef

123