Home
last modified time | relevance | path

Searched refs:little (Results 1 – 25 of 1135) sorted by relevance

12345678910>>...46

/third_party/boost/libs/endian/test/
Dconversion_test.cpp94 T little; in test() local
97 little_value(little); in test()
104 BOOST_TEST_EQ(::std_endian_reverse(native), little); in test()
109 BOOST_TEST_EQ(native, little); in test()
115 BOOST_TEST_EQ(be::endian_reverse(big), little); in test()
116 BOOST_TEST_EQ(be::endian_reverse(little), big); in test()
120 BOOST_TEST_EQ(be::native_to_little(native), little); in test()
122 BOOST_TEST_EQ(be::little_to_native(little), native); in test()
126 BOOST_TEST_EQ((be::conditional_reverse<be::order::little, in test()
127 be::order::little>(little)), little); in test()
[all …]
Dendian_load_test.cpp19 …BOOST_TEST_EQ( (boost::endian::endian_load<boost::int8_t, 1, boost::endian::order::little>( v )), … in main()
20 …BOOST_TEST_EQ( (boost::endian::endian_load<boost::uint8_t, 1, boost::endian::order::little>( v )),… in main()
27 …BOOST_TEST_EQ( (boost::endian::endian_load<boost::int16_t, 1, boost::endian::order::little>( v )),… in main()
28 …BOOST_TEST_EQ( (boost::endian::endian_load<boost::uint16_t, 1, boost::endian::order::little>( v ))… in main()
35 …BOOST_TEST_EQ( (boost::endian::endian_load<boost::int16_t, 2, boost::endian::order::little>( v )),… in main()
36 …BOOST_TEST_EQ( (boost::endian::endian_load<boost::uint16_t, 2, boost::endian::order::little>( v ))… in main()
43 …BOOST_TEST_EQ( (boost::endian::endian_load<boost::int32_t, 1, boost::endian::order::little>( v )),… in main()
44 …BOOST_TEST_EQ( (boost::endian::endian_load<boost::uint32_t, 1, boost::endian::order::little>( v ))… in main()
51 …BOOST_TEST_EQ( (boost::endian::endian_load<boost::int32_t, 2, boost::endian::order::little>( v )),… in main()
52 …BOOST_TEST_EQ( (boost::endian::endian_load<boost::uint32_t, 2, boost::endian::order::little>( v ))… in main()
[all …]
Dspeed_test_functions.cpp37 return conditional_reverse<order::native, order::little>(x); in return_x_value_little_int16()
45 conditional_reverse_inplace<order::native, order::little>(x); return x; in return_x_inplace_little_int16()
60 return conditional_reverse<order::native, order::little>(x); in return_x_value_little_int32()
68 conditional_reverse_inplace<order::native, order::little>(x); return x; in return_x_inplace_little_int32()
83 return conditional_reverse<order::native, order::little>(x); in return_x_value_little_int64()
91 conditional_reverse_inplace<order::native, order::little>(x); return x; in return_x_inplace_little_int64()
Dendian_store_test.cpp67 boost::endian::endian_store<T, 1, boost::endian::order::little>( v, 0x01 ); in test_1()
90 boost::endian::endian_store<T, 2, boost::endian::order::little>( v, 0x0102 ); in test_2()
113 boost::endian::endian_store<T, 3, boost::endian::order::little>( v, 0x010203 ); in test_3()
136 boost::endian::endian_store<T, 4, boost::endian::order::little>( v, 0x01020304 ); in test_4()
159 boost::endian::endian_store<T, 5, boost::endian::order::little>( v, 0x0102030405 ); in test_5()
182 boost::endian::endian_store<T, 6, boost::endian::order::little>( v, 0x010203040506 ); in test_6()
205 boost::endian::endian_store<T, 7, boost::endian::order::little>( v, 0x01020304050607 ); in test_7()
228 boost::endian::endian_store<T, 8, boost::endian::order::little>( v, 0x0102030405060708 ); in test_8()
/third_party/gstreamer/gstplugins_bad/sys/ipcpipeline/
Dprotocol.txt23 - a request ID, 4 bytes, little endian
24 - the payload size, 4 bytes, little endian
30 result: 4 bytes, little endian
35 query type: 4 bytes, little endian
38 pts: 8 bytes, little endian
39 dts: 8 bytes, little endian
40 duration: 8 bytes, little endian
41 offset: 8 bytes, little endian
42 offset end: 8 bytes, little endian
43 flags: 8 bytes, little endian
[all …]
/third_party/boost/boost/endian/
Dendian.hpp58 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;
[all …]
Darithmetic.hpp88 typedef endian_arithmetic<order::little, int8_t, 8, align::yes> little_int8_at;
89 typedef endian_arithmetic<order::little, int16_t, 16, align::yes> little_int16_at;
90 typedef endian_arithmetic<order::little, int32_t, 32, align::yes> little_int32_at;
91 typedef endian_arithmetic<order::little, int64_t, 64, align::yes> little_int64_at;
94 typedef endian_arithmetic<order::little, uint8_t, 8, align::yes> little_uint8_at;
95 typedef endian_arithmetic<order::little, uint16_t, 16, align::yes> little_uint16_at;
96 typedef endian_arithmetic<order::little, uint32_t, 32, align::yes> little_uint32_at;
97 typedef endian_arithmetic<order::little, uint64_t, 64, align::yes> little_uint64_at;
102 typedef endian_arithmetic<order::little, float, 32, align::yes> little_float32_at;
103 typedef endian_arithmetic<order::little, double, 64, align::yes> little_float64_at;
[all …]
Dbuffers.hpp91 typedef endian_buffer<order::little, int8_t, 8, align::yes> little_int8_buf_at;
92 typedef endian_buffer<order::little, int16_t, 16, align::yes> little_int16_buf_at;
93 typedef endian_buffer<order::little, int32_t, 32, align::yes> little_int32_buf_at;
94 typedef endian_buffer<order::little, int64_t, 64, align::yes> little_int64_buf_at;
97 typedef endian_buffer<order::little, uint8_t, 8, align::yes> little_uint8_buf_at;
98 typedef endian_buffer<order::little, uint16_t, 16, align::yes> little_uint16_buf_at;
99 typedef endian_buffer<order::little, uint32_t, 32, align::yes> little_uint32_buf_at;
100 typedef endian_buffer<order::little, uint64_t, 64, align::yes> little_uint64_buf_at;
105 typedef endian_buffer<order::little, float, 32, align::yes> little_float32_buf_at;
106 typedef endian_buffer<order::little, double, 64, align::yes> little_float64_buf_at;
[all …]
Dconversion.hpp162 return boost::endian::conditional_reverse<order::little, order::native>( x ); in little_to_native()
168 return boost::endian::conditional_reverse<order::native, order::little>( x ); in native_to_little()
224 boost::endian::conditional_reverse_inplace<order::little, order::native>( x ); in little_to_native_inplace()
230 boost::endian::conditional_reverse_inplace<order::native, order::little>( x ); in native_to_little_inplace()
283 return boost::endian::endian_load<boost::int16_t, 2, order::little>( p ); in load_little_s16()
288 return boost::endian::endian_load<boost::uint16_t, 2, order::little>( p ); in load_little_u16()
305 return boost::endian::endian_load<boost::int32_t, 3, order::little>( p ); in load_little_s24()
310 return boost::endian::endian_load<boost::uint32_t, 3, order::little>( p ); in load_little_u24()
327 return boost::endian::endian_load<boost::int32_t, 4, order::little>( p ); in load_little_s32()
332 return boost::endian::endian_load<boost::uint32_t, 4, order::little>( p ); in load_little_u32()
[all …]
/third_party/boost/boost/spirit/home/support/detail/endian/
Dendian.hpp302 BOOST_SCOPED_ENUM_START(endianness) { big, little, native }; BOOST_SCOPED_ENUM_END in BOOST_SCOPED_ENUM_START()
348 class endian< endianness::little, T, n_bits, alignment::unaligned >
349 : cover_operators< endian< endianness::little, T, n_bits >, T >
438 class endian< endianness::little, T, n_bits, alignment::aligned >
439 : cover_operators< endian< endianness::little, T, n_bits, alignment::aligned >, T >
487 typedef endian< endianness::little, int_least8_t, 8 > little8_t;
488 typedef endian< endianness::little, int_least16_t, 16 > little16_t;
489 typedef endian< endianness::little, int_least32_t, 24 > little24_t;
490 typedef endian< endianness::little, int_least32_t, 32 > little32_t;
491 typedef endian< endianness::little, int_least64_t, 40 > little40_t;
[all …]
/third_party/mbedtls/tests/suites/
Dtest_suite_ssl.data2745 Record crypt, little space, ChachaPoly
2749 Record crypt, little space, ChachaPoly, 1.3
2753 Record crypt, little space, ChachaPoly, CID 4+4
2757 Record crypt, little space, ChachaPoly, CID 4+0
2761 Record crypt, little space, AES-128-CBC, 1.2, SHA-384
2765 Record crypt, little space, AES-128-CBC, 1.2, SHA-384, CID 4+4
2769 Record crypt, little space, AES-128-CBC, 1.2, SHA-384, CID 4+0
2773 Record crypt, little space, AES-128-CBC, 1.2, SHA-384, EtM
2777 Record crypt, little space, AES-128-CBC, 1.2, SHA-384, EtM, CID 4+4
2781 Record crypt, little space, AES-128-CBC, 1.2, SHA-384, EtM, CID 4+0
[all …]
/third_party/boost/boost/endian/detail/
Dendian_store.hpp83 …te<class T, BOOST_SCOPED_ENUM(order) Order> struct endian_store_impl<T, 2, Order, 1, order::little>
90 boost::endian::endian_store<T, 2, order::little>( tmp, v ); in operator ()()
111 …te<class T, BOOST_SCOPED_ENUM(order) Order> struct endian_store_impl<T, 4, Order, 1, order::little>
118 boost::endian::endian_store<T, 4, order::little>( tmp, v ); in operator ()()
139 …te<class T, BOOST_SCOPED_ENUM(order) Order> struct endian_store_impl<T, 4, Order, 2, order::little>
146 boost::endian::endian_store<T, 4, order::little>( tmp, v ); in operator ()()
169 …te<class T, BOOST_SCOPED_ENUM(order) Order> struct endian_store_impl<T, 4, Order, 3, order::little>
176 boost::endian::endian_store<T, 4, order::little>( tmp, v ); in operator ()()
201 …te<class T, BOOST_SCOPED_ENUM(order) Order> struct endian_store_impl<T, 8, Order, 1, order::little>
208 boost::endian::endian_store<T, 8, order::little>( tmp, v ); in operator ()()
[all …]
Dendian_load.hpp88 …ate<class T, BOOST_SCOPED_ENUM(order) Order> struct endian_load_impl<T, 2, Order, 1, order::little>
99 return boost::endian::endian_load<T, 2, order::little>( tmp ); in operator ()()
120 …ate<class T, BOOST_SCOPED_ENUM(order) Order> struct endian_load_impl<T, 4, Order, 1, order::little>
135 return boost::endian::endian_load<T, 4, order::little>( tmp ); in operator ()()
160 …ate<class T, BOOST_SCOPED_ENUM(order) Order> struct endian_load_impl<T, 4, Order, 2, order::little>
175 return boost::endian::endian_load<T, 4, order::little>( tmp ); in operator ()()
200 …ate<class T, BOOST_SCOPED_ENUM(order) Order> struct endian_load_impl<T, 4, Order, 3, order::little>
213 return boost::endian::endian_load<T, 4, order::little>( tmp ); in operator ()()
236 …ate<class T, BOOST_SCOPED_ENUM(order) Order> struct endian_load_impl<T, 8, Order, 1, order::little>
256 return boost::endian::endian_load<T, 8, order::little>( tmp ); in operator ()()
[all …]
Dorder.hpp13 # define BOOST_ENDIAN_NATIVE_ORDER_INITIALIZER little
25 # define BOOST_ENDIAN_NATIVE_ORDER_INITIALIZER little
33 # define BOOST_ENDIAN_NATIVE_ORDER_INITIALIZER little
49 little, in BOOST_SCOPED_ENUM_START()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DEndian.h22 enum endianness {big, little, native}; enumerator
233 <uint16_t, little, unaligned> ulittle16_t;
235 <uint32_t, little, unaligned> ulittle32_t;
237 <uint64_t, little, unaligned> ulittle64_t;
240 <int16_t, little, unaligned> little16_t;
242 <int32_t, little, unaligned> little32_t;
244 <int64_t, little, unaligned> little64_t;
247 <uint16_t, little, aligned> aligned_ulittle16_t;
249 <uint32_t, little, aligned> aligned_ulittle32_t;
251 <uint64_t, little, aligned> aligned_ulittle64_t;
[all …]
/third_party/openssl/crypto/blake2/
Dblake2_impl.h23 char little; in load32() member
26 if (is_endian.little) { in load32()
43 char little; in load64() member
46 if (is_endian.little) { in load64()
67 char little; in store32() member
70 if (is_endian.little) { in store32()
85 char little; in store64() member
88 if (is_endian.little) { in store64()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DEndian.h29 enum endianness {big, little, native}; enumerator
47 return sys::IsBigEndianHost ? big : little; in system_endianness()
272 detail::packed_endian_specific_integral<uint16_t, little, unaligned>;
274 detail::packed_endian_specific_integral<uint32_t, little, unaligned>;
276 detail::packed_endian_specific_integral<uint64_t, little, unaligned>;
279 detail::packed_endian_specific_integral<int16_t, little, unaligned>;
281 detail::packed_endian_specific_integral<int32_t, little, unaligned>;
283 detail::packed_endian_specific_integral<int64_t, little, unaligned>;
286 detail::packed_endian_specific_integral<uint16_t, little, aligned>;
288 detail::packed_endian_specific_integral<uint32_t, little, aligned>;
[all …]
/third_party/boost/libs/endian/doc/endian/
Dbuffers.adoc16 exploration of *endianness*, including definitions of *big endian* and *little
38 four-byte, big-endian and little-endian integers:
51 // Why the designer decided to mix big and little endians in
116 are little endian, even though the machine this was compiled and run on was
117 little endian.
139 * Big endian| little endian | native endian byte ordering.
150 enum class order { big, little, native };
171 |`little_intN_buf_t` |no |little |signed |8,16,24,32,40,48,56,64
172 |`little_uintN_buf_t` |no |little |unsigned |8,16,24,32,40,48,56,64
177 |`little_intN_buf_at` |yes |little |signed |8,16,32,64
[all …]
Darithmetic.adoc27 *endianness*, including definitions of *big endian* and *little endian*.
44 big-endian and little-endian integers:
57 // Why the designer decided to mix big and little endians in
122 are little endian, even though the machine this was compiled and run on was
123 little endian.
145 * Big endian| little endian | native endian byte ordering.
156 enum class order { big, little, native };
177 |`little_intN_t` |no |little |signed |8,16,24,32,40,48,56,64
178 |`little_uintN_t` |no |little |unsigned |8,16,24,32,40,48,56,64
183 |`little_intN_at` |yes |little |signed |8,16,32,64
[all …]
/third_party/boost/boost/spirit/home/x3/binary/
Dbinary.hpp113 BOOST_SPIRIT_MAKE_BINARY_PRIMITIVE(little_word, little, uint_least16_t, 16)
116 BOOST_SPIRIT_MAKE_BINARY_PRIMITIVE(little_dword, little, uint_least32_t, 32)
120 BOOST_SPIRIT_MAKE_BINARY_PRIMITIVE(little_qword, little, uint_least64_t, 64)
124 BOOST_SPIRIT_MAKE_BINARY_PRIMITIVE(little_bin_float, little, float, sizeof(float) * CHAR_BIT)
127 BOOST_SPIRIT_MAKE_BINARY_PRIMITIVE(little_bin_double, little, double, sizeof(double) * CHAR_BIT)
133 struct get_info<any_binary_parser<T, endian::order::little, bits>>
136 std::string operator()(any_binary_parser<T, endian::order::little, bits> const&) const in operator ()()
153 struct get_info<binary_lit_parser<V, T, endian::order::little, bits>>
156 std::string operator()(binary_lit_parser<V, T, endian::order::little, bits> const&) const in operator ()()
/third_party/harfbuzz/perf/texts/
Den-thelittleprince.txt54 So then I chose another profession, and learned to pilot air-planes. I have flown a little over all
76 imagine my amazement, at sunrise, when I was awakened by an odd little voice.
98 And yet my little man seemed neither to be straying uncertainly among the sands, nor to be
110 geography, history, arithmetic, and grammar, and I told the little chap (a little crossly, too) tha…
117 was that of the boa constrictor from the outside. And I was astounded to hear the little fellow
158 And that is how I made the acquaintance of the little prince.
160 It took me a long time to learn where he came from. The little prince, who asked me so many
162 little by little, everything was revealed to me.
176 “Oh! That is funny!” And the little prince broke into a lovely peal of laughter, which irritated me
189 “My little man, where do you come from? What is this ‘where I live,’ of which you speak? Where
[all …]
/third_party/skia/third_party/externals/harfbuzz/perf/texts/
Den-thelittleprince.txt54 So then I chose another profession, and learned to pilot air-planes. I have flown a little over all
76 imagine my amazement, at sunrise, when I was awakened by an odd little voice.
98 And yet my little man seemed neither to be straying uncertainly among the sands, nor to be
110 geography, history, arithmetic, and grammar, and I told the little chap (a little crossly, too) tha…
117 was that of the boa constrictor from the outside. And I was astounded to hear the little fellow
158 And that is how I made the acquaintance of the little prince.
160 It took me a long time to learn where he came from. The little prince, who asked me so many
162 little by little, everything was revealed to me.
176 “Oh! That is funny!” And the little prince broke into a lovely peal of laughter, which irritated me
189 “My little man, where do you come from? What is this ‘where I live,’ of which you speak? Where
[all …]
/third_party/ffmpeg/tests/ref/fate/
Dsub-realtext14 Dialogue: 0,0:00:00.00,0:00:00.00,Default,,0,0,0,,Mary had a little lamb, \N
15 Dialogue: 0,0:00:03.00,0:00:18.00,Default,,0,0,0,,little lamb, \N
16 Dialogue: 0,0:00:06.99,0:00:21.99,Default,,0,0,0,,little lamb, \N
17 Dialogue: 0,0:00:09.00,0:00:23.00,Default,,0,0,0,,Mary had a little lamb \N
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/MCTargetDesc/
DWebAssemblyMCCodeEmitter.cpp108 support::endian::write<uint8_t>(OS, MO.getImm(), support::little); in encodeInstruction()
111 support::endian::write<uint16_t>(OS, MO.getImm(), support::little); in encodeInstruction()
114 support::endian::write<uint32_t>(OS, MO.getImm(), support::little); in encodeInstruction()
117 support::endian::write<uint64_t>(OS, MO.getImm(), support::little); in encodeInstruction()
134 support::endian::write<float>(OS, F, support::little); in encodeInstruction()
138 support::endian::write<double>(OS, D, support::little); in encodeInstruction()
/third_party/openssl/crypto/modes/
Dgcm128.c109 char little; in gcm_gmult_8bit() member
196 if (is_endian.little) { in gcm_gmult_8bit()
278 char little; in gcm_init_4bit() member
281 if (is_endian.little) in gcm_init_4bit()
311 char little; in gcm_gmult_4bit() member
352 if (is_endian.little) { in gcm_gmult_4bit()
390 char little; member
530 if (is_endian.little) {
580 char little; member
587 if (is_endian.little) {
[all …]

12345678910>>...46