/external/sdv/vsomeip/third_party/boost/atomic/include/boost/atomic/detail/ |
D | extra_ops_msvc_x86.hpp | 43 …INLINE storage_type fetch_negate(storage_type volatile& storage, memory_order order) BOOST_NOEXCEPT in fetch_negate() 45 base_type::fence_before(order); in fetch_negate() 59 base_type::fence_after(order); in fetch_negate() 63 …static BOOST_FORCEINLINE storage_type negate(storage_type volatile& storage, memory_order order) B… in negate() 65 base_type::fence_before(order); in negate() 79 base_type::fence_after(order); in negate() 83 …FORCEINLINE bool negate_and_test(storage_type volatile& storage, memory_order order) BOOST_NOEXCEPT in negate_and_test() 85 base_type::fence_before(order); in negate_and_test() 100 base_type::fence_after(order); in negate_and_test() 104 …static BOOST_FORCEINLINE void opaque_negate(storage_type volatile& storage, memory_order order) BO… in opaque_negate() [all …]
|
D | extra_ops_generic.hpp | 42 …INLINE storage_type fetch_negate(storage_type volatile& storage, memory_order order) BOOST_NOEXCEPT in fetch_negate() 46 …< Signed, storage_type >(static_cast< emulated_storage_type >(-old_val)), order, memory_order_rela… in fetch_negate() 50 …static BOOST_FORCEINLINE storage_type negate(storage_type volatile& storage, memory_order order) B… in negate() 58 … while (!base_type::compare_exchange_weak(storage, old_val, new_val, order, memory_order_relaxed)); in negate() 62 …storage_type add(storage_type volatile& storage, storage_type v, memory_order order) BOOST_NOEXCEPT in add() 64 return base_type::fetch_add(storage, v, order) + v; in add() 67 …storage_type sub(storage_type volatile& storage, storage_type v, memory_order order) BOOST_NOEXCEPT in sub() 69 return base_type::fetch_sub(storage, v, order) - v; in sub() 72 …type bitwise_and(storage_type volatile& storage, storage_type v, memory_order order) BOOST_NOEXCEPT in bitwise_and() 74 return base_type::fetch_and(storage, v, order) & v; in bitwise_and() [all …]
|
D | extra_ops_gcc_ppc.hpp | 42 …static BOOST_FORCEINLINE void opaque_negate(storage_type volatile& storage, memory_order order) BO… in opaque_negate() 44 base_type::fetch_negate(storage, order); in opaque_negate() 47 …RCEINLINE void opaque_complement(storage_type volatile& storage, memory_order order) BOOST_NOEXCEPT in opaque_complement() 49 base_type::fetch_complement(storage, order); in opaque_complement() 52 …FORCEINLINE bool negate_and_test(storage_type volatile& storage, memory_order order) BOOST_NOEXCEPT in negate_and_test() 54 return !!base_type::negate(storage, order); in negate_and_test() 57 …ool add_and_test(storage_type volatile& storage, storage_type v, memory_order order) BOOST_NOEXCEPT in add_and_test() 59 return !!base_type::add(storage, v, order); in add_and_test() 62 …ool sub_and_test(storage_type volatile& storage, storage_type v, memory_order order) BOOST_NOEXCEPT in sub_and_test() 64 return !!base_type::sub(storage, v, order); in sub_and_test() [all …]
|
D | atomic_ref_impl.hpp | 165 …BOOST_FORCEINLINE void store(value_arg_type v, memory_order order = memory_order_seq_cst) const BO… in store() argument 167 BOOST_ASSERT(order != memory_order_consume); in store() 168 BOOST_ASSERT(order != memory_order_acquire); in store() 169 BOOST_ASSERT(order != memory_order_acq_rel); in store() 171 … core_operations::store(this->storage(), atomics::detail::bitwise_cast< storage_type >(v), order); in store() 174 … BOOST_FORCEINLINE value_type load(memory_order order = memory_order_seq_cst) const BOOST_NOEXCEPT in load() argument 176 BOOST_ASSERT(order != memory_order_release); in load() 177 BOOST_ASSERT(order != memory_order_acq_rel); in load() 179 … return atomics::detail::bitwise_cast< value_type >(core_operations::load(this->storage(), order)); in load() 182 …BOOST_FORCEINLINE value_type exchange(value_arg_type v, memory_order order = memory_order_seq_cst)… in exchange() argument [all …]
|
D | atomic_impl.hpp | 199 …BOOST_FORCEINLINE void store(value_arg_type v, memory_order order = memory_order_seq_cst) volatile… in store() argument 201 BOOST_ASSERT(order != memory_order_consume); in store() 202 BOOST_ASSERT(order != memory_order_acquire); in store() 203 BOOST_ASSERT(order != memory_order_acq_rel); in store() 205 … core_operations::store(this->storage(), atomics::detail::bitwise_cast< storage_type >(v), order); in store() 208 …BOOST_FORCEINLINE value_type load(memory_order order = memory_order_seq_cst) const volatile BOOST_… in load() argument 210 BOOST_ASSERT(order != memory_order_release); in load() 211 BOOST_ASSERT(order != memory_order_acq_rel); in load() 213 … return atomics::detail::bitwise_cast< value_type >(core_operations::load(this->storage(), order)); in load() 216 …BOOST_FORCEINLINE value_type exchange(value_arg_type v, memory_order order = memory_order_seq_cst)… in exchange() argument [all …]
|
D | core_arch_ops_gcc_ppc.hpp | 94 …NLINE void store(storage_type volatile& storage, storage_type v, memory_order order) BOOST_NOEXCEPT in store() 96 fence_before(order); in store() 105 …CEINLINE storage_type load(storage_type const volatile& storage, memory_order order) BOOST_NOEXCEPT in load() 108 if (order == memory_order_seq_cst) in load() 110 …if ((static_cast< unsigned int >(order) & (static_cast< unsigned int >(memory_order_consume) | sta… in load() 136 …ge_type exchange(storage_type volatile& storage, storage_type v, memory_order order) BOOST_NOEXCEPT in exchange() 139 fence_before(order); in exchange() 150 fence_after(order); in exchange() 206 …e_type fetch_add(storage_type volatile& storage, storage_type v, memory_order order) BOOST_NOEXCEPT in fetch_add() 209 fence_before(order); in fetch_add() [all …]
|
/external/sdv/vsomeip/third_party/boost/endian/include/boost/endian/ |
D | endian.hpp | 28 typedef order endianness; 32 template <BOOST_SCOPED_ENUM(order) Order, class T, std::size_t n_bits, 34 using endian = endian_arithmetic<Order, T, n_bits, Align>; 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; [all …]
|
D | buffers.hpp | 74 template <BOOST_SCOPED_ENUM(order) Order, class T, std::size_t n_bits, 79 typedef endian_buffer<order::big, int8_t, 8, align::yes> big_int8_buf_at; 80 typedef endian_buffer<order::big, int16_t, 16, align::yes> big_int16_buf_at; 81 typedef endian_buffer<order::big, int32_t, 32, align::yes> big_int32_buf_at; 82 typedef endian_buffer<order::big, int64_t, 64, align::yes> big_int64_buf_at; 85 typedef endian_buffer<order::big, uint8_t, 8, align::yes> big_uint8_buf_at; 86 typedef endian_buffer<order::big, uint16_t, 16, align::yes> big_uint16_buf_at; 87 typedef endian_buffer<order::big, uint32_t, 32, align::yes> big_uint32_buf_at; 88 typedef endian_buffer<order::big, uint64_t, 64, align::yes> big_uint64_buf_at; 91 typedef endian_buffer<order::little, int8_t, 8, align::yes> little_int8_buf_at; [all …]
|
D | arithmetic.hpp | 71 template <BOOST_SCOPED_ENUM(order) Order, class T, std::size_t n_bits, 76 typedef endian_arithmetic<order::big, int8_t, 8, align::yes> big_int8_at; 77 typedef endian_arithmetic<order::big, int16_t, 16, align::yes> big_int16_at; 78 typedef endian_arithmetic<order::big, int32_t, 32, align::yes> big_int32_at; 79 typedef endian_arithmetic<order::big, int64_t, 64, align::yes> big_int64_at; 82 typedef endian_arithmetic<order::big, uint8_t, 8, align::yes> big_uint8_at; 83 typedef endian_arithmetic<order::big, uint16_t, 16, align::yes> big_uint16_at; 84 typedef endian_arithmetic<order::big, uint32_t, 32, align::yes> big_uint32_at; 85 typedef endian_arithmetic<order::big, uint64_t, 64, align::yes> big_uint64_at; 88 typedef endian_arithmetic<order::little, int8_t, 8, align::yes> little_int8_at; [all …]
|
D | conversion.hpp | 14 #include <boost/endian/detail/order.hpp> 45 // reverse byte order 51 // reverse byte order unless native endianness is big 54 // Returns: x if native endian order is big, otherwise endian_reverse(x) 57 // Returns: x if native endian order is big, otherwise endian_reverse(x) 59 // reverse byte order unless native endianness is little 62 // Returns: x if native endian order is little, otherwise endian_reverse(x) 65 // Returns: x if native endian order is little, otherwise endian_reverse(x) 67 // generic conditional reverse byte order 68 template <BOOST_SCOPED_ENUM(order) From, BOOST_SCOPED_ENUM(order) To, [all …]
|
/external/sdv/vsomeip/third_party/boost/algorithm/test/ |
D | apply_permutation_test.cpp | 26 std::vector<int> vec, order, result; in BOOST_AUTO_TEST_CASE() local 28 ba::apply_permutation(vec.begin(), vec.end(), order.begin(), order.end()); in BOOST_AUTO_TEST_CASE() 33 std::vector<int> vec, order, result; in BOOST_AUTO_TEST_CASE() local 35 order.push_back(0); in BOOST_AUTO_TEST_CASE() 38 ba::apply_permutation(vec.begin(), vec.end(), order.begin(), order.end()); in BOOST_AUTO_TEST_CASE() 43 std::vector<int> vec, order, result; in BOOST_AUTO_TEST_CASE() local 45 order.push_back(0); order.push_back(1); in BOOST_AUTO_TEST_CASE() 48 ba::apply_permutation(vec.begin(), vec.end(), order.begin(), order.end()); in BOOST_AUTO_TEST_CASE() 53 std::vector<int> vec, order, result; in BOOST_AUTO_TEST_CASE() local 55 order.push_back(1); order.push_back(0); in BOOST_AUTO_TEST_CASE() [all …]
|
/external/sdv/vsomeip/third_party/boost/endian/include/boost/endian/detail/ |
D | endian_store.hpp | 10 #include <boost/endian/detail/order.hpp> 27 …emplate<class T, std::size_t N1, BOOST_SCOPED_ENUM(order) O1, std::size_t N2, BOOST_SCOPED_ENUM(or… 40 template<class T, std::size_t N, BOOST_SCOPED_ENUM(order) Order> 46 return detail::endian_store_impl<T, sizeof(T), order::native, N, Order>()( p, v ); in endian_store() 54 template<class T, std::size_t N, BOOST_SCOPED_ENUM(order) O> struct endian_store_impl<T, N, O, N, O> 66 template<class T, std::size_t N, BOOST_SCOPED_ENUM(order) O1, BOOST_SCOPED_ENUM(order) O2> struct e… 83 template<class T, BOOST_SCOPED_ENUM(order) Order> struct endian_store_impl<T, 2, Order, 1, order::l… 90 boost::endian::endian_store<T, 2, order::little>( tmp, v ); in operator ()() 96 template<class T, BOOST_SCOPED_ENUM(order) Order> struct endian_store_impl<T, 2, Order, 1, order::b… 103 boost::endian::endian_store<T, 2, order::big>( tmp, v ); in operator ()() [all …]
|
D | endian_load.hpp | 10 #include <boost/endian/detail/order.hpp> 28 …emplate<class T, std::size_t N1, BOOST_SCOPED_ENUM(order) O1, std::size_t N2, BOOST_SCOPED_ENUM(or… 41 template<class T, std::size_t N, BOOST_SCOPED_ENUM(order) Order> 47 return detail::endian_load_impl<T, sizeof(T), order::native, N, Order>()( p ); in endian_load() 55 template<class T, std::size_t N, BOOST_SCOPED_ENUM(order) O> struct endian_load_impl<T, N, O, N, O> 69 template<class T, std::size_t N, BOOST_SCOPED_ENUM(order) O1, BOOST_SCOPED_ENUM(order) O2> struct e… 88 template<class T, BOOST_SCOPED_ENUM(order) Order> struct endian_load_impl<T, 2, Order, 1, order::li… 99 return boost::endian::endian_load<T, 2, order::little>( tmp ); in operator ()() 103 template<class T, BOOST_SCOPED_ENUM(order) Order> struct endian_load_impl<T, 2, Order, 1, order::bi… 114 return boost::endian::endian_load<T, 2, order::big>( tmp ); in operator ()() [all …]
|
/external/iamf_tools/iamf/cli/ambisonic_encoder/ |
D | associated_legendre_polynomials_generator.cc | 43 const int order = 0; in Generate() local 44 values[GetIndex(degree, order)] = ComputeValue(degree, order, x, values); in Generate() 48 const int order = degree; in Generate() local 49 values[GetIndex(degree, order)] = ComputeValue(degree, order, x, values); in Generate() 53 const int order = degree - 1; in Generate() local 54 values[GetIndex(degree, order)] = ComputeValue(degree, order, x, values); in Generate() 56 // The remaining positive orders, based on (degree - 1, order) and in Generate() 57 // (degree - 2, order): in Generate() 59 for (int order = 1; order <= degree - 2; ++order) { in Generate() local 60 values[GetIndex(degree, order)] = ComputeValue(degree, order, x, values); in Generate() [all …]
|
/external/sdv/vsomeip/third_party/boost/endian/test/ |
D | endian_load_test.cpp | 19 …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() 22 …BOOST_TEST_EQ( (boost::endian::endian_load<boost::int8_t, 1, boost::endian::order::big>( v )), 0x0… in main() 23 …BOOST_TEST_EQ( (boost::endian::endian_load<boost::uint8_t, 1, boost::endian::order::big>( v )), 0x… 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() 30 …BOOST_TEST_EQ( (boost::endian::endian_load<boost::int16_t, 1, boost::endian::order::big>( v )), 0x… in main() 31 …BOOST_TEST_EQ( (boost::endian::endian_load<boost::uint16_t, 1, boost::endian::order::big>( v )), 0… 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() [all …]
|
D | conversion_test.cpp | 101 if( be::order::native == be::order::big ) in test() 125 BOOST_TEST_EQ((be::conditional_reverse<be::order::big, be::order::big>(big)), big); in test() 126 BOOST_TEST_EQ((be::conditional_reverse<be::order::little, in test() 127 be::order::little>(little)), little); in test() 128 BOOST_TEST_EQ((be::conditional_reverse<be::order::native, in test() 129 be::order::native>(native)), native); in test() 130 BOOST_TEST_EQ((be::conditional_reverse<be::order::big, in test() 131 be::order::little>(big)), little); in test() 132 BOOST_TEST_EQ((be::conditional_reverse<be::order::big, in test() 133 be::order::native>(big)), native); in test() [all …]
|
/external/boringssl/src/crypto/fipsmodule/ec/ |
D | scalar.cc.inc | 26 // Scalars, which are often secret, must be reduced modulo the order. Those 29 if (!bn_copy_words(out->words, group->order.N.width, in) || 31 out->words, group->order.N.d, group->order.N.width))) { 41 group->order.N.width * sizeof(BN_ULONG)) == 0; 46 for (int i = 0; i < group->order.N.width; i++) { 54 return bn_rand_range_words(out->words, 0, group->order.N.d, 55 group->order.N.width, additional_data); 60 return bn_rand_range_words(out->words, 1, group->order.N.d, 61 group->order.N.width, additional_data); 66 size_t len = BN_num_bytes(&group->order.N); [all …]
|
/external/sdv/vsomeip/third_party/boost/endian/doc/endian/ |
D | buffers.adoc | 14 The internal byte order of arithmetic types is traditionally called 20 integer binary buffer class template with control over byte order, value type, 150 enum class order { big, little, native }; 158 template <order Order, typename T, std::size_t Nbits, 222 template <order Order, class T, std::size_t Nbits, 244 template <class charT, class traits, order Order, class T, 248 const endian_buffer<Order, T, n_bits, Align>& x); 251 template <class charT, class traits, order Order, class T, 255 endian_buffer<Order, T, n_bits, Align>& x); 260 typedef endian_buffer<order::big, int_least8_t, 8> big_int8_buf_t; [all …]
|
/external/libxaac/encoder/ |
D | iusace_lpc_avq.c | 56 FLOAT32 d[ORDER + 1]; in iusace_lsf_weight_2st_flt() 59 d[ORDER] = FREQ_MAX - lsfq[ORDER - 1]; in iusace_lsf_weight_2st_flt() 60 for (i = 1; i < ORDER; i++) { in iusace_lsf_weight_2st_flt() 64 for (i = 0; i < ORDER; i++) { in iusace_lsf_weight_2st_flt() 71 FLOAT32 d[ORDER + 1]; in iusace_lsf_weight() 74 d[ORDER] = FREQ_MAX - lsf[ORDER - 1]; in iusace_lsf_weight() 75 for (i = 1; i < ORDER; i++) { in iusace_lsf_weight() 79 for (i = 0; i < ORDER; i++) { in iusace_lsf_weight() 88 FLOAT32 w[ORDER]; in iusace_avq_first_approx_abs() 100 for (j = 0; j < ORDER; j++) { in iusace_avq_first_approx_abs() [all …]
|
/external/cronet/tot/third_party/boringssl/src/crypto/fipsmodule/ec/ |
D | scalar.cc.inc | 26 // Scalars, which are often secret, must be reduced modulo the order. Those 29 if (!bn_copy_words(out->words, group->order.N.width, in) || 31 out->words, group->order.N.d, group->order.N.width))) { 41 group->order.N.width * sizeof(BN_ULONG)) == 0; 46 for (int i = 0; i < group->order.N.width; i++) { 54 return bn_rand_range_words(out->words, 1, group->order.N.d, 55 group->order.N.width, additional_data); 60 size_t len = BN_num_bytes(&group->order.N); 61 bn_words_to_big_endian(out, len, in->words, group->order.N.width); 67 if (len != BN_num_bytes(&group->order.N)) { [all …]
|
/external/cronet/stable/third_party/boringssl/src/crypto/fipsmodule/ec/ |
D | scalar.cc.inc | 26 // Scalars, which are often secret, must be reduced modulo the order. Those 29 if (!bn_copy_words(out->words, group->order.N.width, in) || 31 out->words, group->order.N.d, group->order.N.width))) { 41 group->order.N.width * sizeof(BN_ULONG)) == 0; 46 for (int i = 0; i < group->order.N.width; i++) { 54 return bn_rand_range_words(out->words, 1, group->order.N.d, 55 group->order.N.width, additional_data); 60 size_t len = BN_num_bytes(&group->order.N); 61 bn_words_to_big_endian(out, len, in->words, group->order.N.width); 67 if (len != BN_num_bytes(&group->order.N)) { [all …]
|
/external/dagger2/javatests/dagger/producers/monitoring/internal/ |
D | MonitorsTest.java | 131 InOrder order = inOrder(mockProducerMonitor); in singleMonitor_normalProducerMonitorSuccess() local 132 order.verify(mockProducerMonitor).requested(); in singleMonitor_normalProducerMonitorSuccess() 133 order.verify(mockProducerMonitor).methodStarting(); in singleMonitor_normalProducerMonitorSuccess() 134 order.verify(mockProducerMonitor).methodFinished(); in singleMonitor_normalProducerMonitorSuccess() 135 order.verify(mockProducerMonitor).succeeded(o); in singleMonitor_normalProducerMonitorSuccess() 154 InOrder order = inOrder(mockProducerMonitor); in singleMonitor_normalProducerMonitorFailure() local 155 order.verify(mockProducerMonitor).requested(); in singleMonitor_normalProducerMonitorFailure() 156 order.verify(mockProducerMonitor).methodStarting(); in singleMonitor_normalProducerMonitorFailure() 157 order.verify(mockProducerMonitor).methodFinished(); in singleMonitor_normalProducerMonitorFailure() 158 order.verify(mockProducerMonitor).failed(t); in singleMonitor_normalProducerMonitorFailure() [all …]
|
/external/python/google-api-python-client/docs/dyn/ |
D | dfareporting_v3_5.orders.html | 82 <p class="firstline">Gets one order by ID.</p> 97 <pre>Gets one order by ID. 102 id: string, Order ID. (required) 111 { # Describes properties of a Planning order. 112 "accountId": "A String", # Account ID of this order. 113 "advertiserId": "A String", # Advertiser ID of this order. 114 …roverUserProfileIds": [ # IDs for users that have to approve documents created for this order. 117 "buyerInvoiceId": "A String", # Buyer invoice ID associated with this order. 119 "comments": "A String", # Comments in this order. 120 "contacts": [ # Contacts for this order. [all …]
|
D | dfareporting_v3_3.orders.html | 82 <p class="firstline">Gets one order by ID.</p> 97 <pre>Gets one order by ID. 102 id: string, Order ID. (required) 111 { # Describes properties of a Planning order. 112 "accountId": "A String", # Account ID of this order. 113 "advertiserId": "A String", # Advertiser ID of this order. 114 …roverUserProfileIds": [ # IDs for users that have to approve documents created for this order. 117 "buyerInvoiceId": "A String", # Buyer invoice ID associated with this order. 119 "comments": "A String", # Comments in this order. 120 "contacts": [ # Contacts for this order. [all …]
|
D | dfareporting_v3_4.orders.html | 82 <p class="firstline">Gets one order by ID.</p> 97 <pre>Gets one order by ID. 102 id: string, Order ID. (required) 111 { # Describes properties of a Planning order. 112 "accountId": "A String", # Account ID of this order. 113 "advertiserId": "A String", # Advertiser ID of this order. 114 …roverUserProfileIds": [ # IDs for users that have to approve documents created for this order. 117 "buyerInvoiceId": "A String", # Buyer invoice ID associated with this order. 119 "comments": "A String", # Comments in this order. 120 "contacts": [ # Contacts for this order. [all …]
|