** Warning **
Issuing rollback() due to DESTROY without explicit disconnect() of DBD::mysql::db handle dbname=lxr_eic at /usr/local/share/lxr/lxr-2.3.7/lib/LXR/Common.pm line 1161, <GEN558> line 1.
Last-Modified: Wed, 15 Sep 2026 09:32:39 GMT
Content-Type: text/html; charset=utf-8
/master/include/boost/units/systems/information/prefixes.hpp
File indexing completed on 2026-09-15 09:03:59
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010 #ifndef BOOST_UNITS_SYSTEMS_INFORMATION_PREFIXES_HPP_INCLUDED
0011 #define BOOST_UNITS_SYSTEMS_INFORMATION_PREFIXES_HPP_INCLUDED
0012
0013 #include <boost/units/make_scaled_unit.hpp>
0014 #include <boost/units/static_rational.hpp>
0015 #include <boost/units/scale.hpp>
0016
0017 #include <boost/units/systems/information/byte.hpp>
0018
0019 #define BOOST_UNITS_INFOSYS_PREFIX (exponent , name ) \
0020 typedef make_scaled_unit <dimensionless , scale <2, static_rational <exponent > > >::type name # # _pf_type; \
0021 BOOST_UNITS_STATIC_CONSTANT (name , name # # _pf_type)
0022
0023 namespace boost {
0024 namespace units {
0025 namespace information {
0026
0027
0028
0029
0030 BOOST_UNITS_INFOSYS_PREFIX (10, kibi );
0031 BOOST_UNITS_INFOSYS_PREFIX (20, mebi );
0032 BOOST_UNITS_INFOSYS_PREFIX (30, gibi );
0033 BOOST_UNITS_INFOSYS_PREFIX (40, tebi );
0034 BOOST_UNITS_INFOSYS_PREFIX (50, pebi );
0035 BOOST_UNITS_INFOSYS_PREFIX (60, exbi );
0036 BOOST_UNITS_INFOSYS_PREFIX (70, zebi);
0037 BOOST_UNITS_INFOSYS_PREFIX (80, yobi);
0038
0039 }
0040 }
0041 }
0042
0043 #undef BOOST_UNITS_INFOSYS_PREFIX
0044
0045 #endif