Lines Matching refs:order

28   typedef order endianness;
32 template <BOOST_SCOPED_ENUM(order) Order, class T, std::size_t n_bits,
38 typedef endian_arithmetic< order::big, int_least8_t, 8 > big8_t;
39 typedef endian_arithmetic< order::big, int_least16_t, 16 > big16_t;
40 typedef endian_arithmetic< order::big, int_least32_t, 24 > big24_t;
41 typedef endian_arithmetic< order::big, int_least32_t, 32 > big32_t;
42 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;
48 typedef endian_arithmetic< order::big, uint_least8_t, 8 > ubig8_t;
49 typedef endian_arithmetic< order::big, uint_least16_t, 16 > ubig16_t;
50 typedef endian_arithmetic< order::big, uint_least32_t, 24 > ubig24_t;
51 typedef endian_arithmetic< order::big, uint_least32_t, 32 > ubig32_t;
52 typedef endian_arithmetic< order::big, uint_least64_t, 40 > ubig40_t;
53 typedef endian_arithmetic< order::big, uint_least64_t, 48 > ubig48_t;
54 typedef endian_arithmetic< order::big, uint_least64_t, 56 > ubig56_t;
55 typedef endian_arithmetic< order::big, uint_least64_t, 64 > ubig64_t;
58 typedef endian_arithmetic< order::little, int_least8_t, 8 > little8_t;
59 typedef endian_arithmetic< order::little, int_least16_t, 16 > little16_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;
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;
68 typedef endian_arithmetic< order::little, uint_least8_t, 8 > ulittle8_t;
69 typedef endian_arithmetic< order::little, uint_least16_t, 16 > ulittle16_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;
72 typedef endian_arithmetic< order::little, uint_least64_t, 40 > ulittle40_t;
73 typedef endian_arithmetic< order::little, uint_least64_t, 48 > ulittle48_t;
74 typedef endian_arithmetic< order::little, uint_least64_t, 56 > ulittle56_t;
75 typedef endian_arithmetic< order::little, uint_least64_t, 64 > ulittle64_t;
78 typedef endian_arithmetic< order::native, int_least8_t, 8 > native8_t;
79 typedef endian_arithmetic< order::native, int_least16_t, 16 > native16_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;
82 typedef endian_arithmetic< order::native, int_least64_t, 40 > native40_t;
83 typedef endian_arithmetic< order::native, int_least64_t, 48 > native48_t;
84 typedef endian_arithmetic< order::native, int_least64_t, 56 > native56_t;
85 typedef endian_arithmetic< order::native, int_least64_t, 64 > native64_t;
88 typedef endian_arithmetic< order::native, uint_least8_t, 8 > unative8_t;
89 typedef endian_arithmetic< order::native, uint_least16_t, 16 > unative16_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;
92 typedef endian_arithmetic< order::native, uint_least64_t, 40 > unative40_t;
93 typedef endian_arithmetic< order::native, uint_least64_t, 48 > unative48_t;
94 typedef endian_arithmetic< order::native, uint_least64_t, 56 > unative56_t;
95 typedef endian_arithmetic< order::native, uint_least64_t, 64 > unative64_t;
100 typedef endian_arithmetic< order::big, int16_t, 16, align::yes > aligned_big16_t;
101 typedef endian_arithmetic< order::big, uint16_t, 16, align::yes > aligned_ubig16_t;
102 typedef endian_arithmetic< order::little, int16_t, 16, align::yes > aligned_little16_t;
103 typedef endian_arithmetic< order::little, uint16_t, 16, align::yes > aligned_ulittle16_t;
105 typedef endian_arithmetic< order::big, int32_t, 32, align::yes > aligned_big32_t;
106 typedef endian_arithmetic< order::big, uint32_t, 32, align::yes > aligned_ubig32_t;
107 typedef endian_arithmetic< order::little, int32_t, 32, align::yes > aligned_little32_t;
108 typedef endian_arithmetic< order::little, uint32_t, 32, align::yes > aligned_ulittle32_t;
110 typedef endian_arithmetic< order::big, int64_t, 64, align::yes > aligned_big64_t;
111 typedef endian_arithmetic< order::big, uint64_t, 64, align::yes > aligned_ubig64_t;
112 typedef endian_arithmetic< order::little, int64_t, 64, align::yes > aligned_little64_t;
113 typedef endian_arithmetic< order::little, uint64_t, 64, align::yes > aligned_ulittle64_t;