| /external/cronet/third_party/libc++/src/modules/std/ |
| D | cmath.cppm | 13 export module std:cmath; 14 export namespace std { 16 using std::double_t; 17 using std::float_t; 19 using std::acos; 20 using std::acosf; 21 using std::acosl; 23 using std::asin; 24 using std::asinf; 25 using std::asinl; [all …]
|
| D | cmath.inc | 10 export namespace std { 12 using std::double_t; 13 using std::float_t; 15 using std::acos; 16 using std::acosf; 17 using std::acosl; 19 using std::asin; 20 using std::asinf; 21 using std::asinl; 23 using std::atan; [all …]
|
| D | type_traits.cppm | 12 export module std:type_traits; 13 export namespace std { 15 using std::integral_constant; 17 using std::bool_constant; 18 using std::false_type; 19 using std::true_type; 22 using std::is_array; 23 using std::is_class; 24 using std::is_enum; 25 using std::is_floating_point; [all …]
|
| D | type_traits.inc | 10 export namespace std { 12 using std::integral_constant; 14 using std::bool_constant; 15 using std::false_type; 16 using std::true_type; 19 using std::is_array; 20 using std::is_class; 21 using std::is_enum; 22 using std::is_floating_point; 23 using std::is_function; [all …]
|
| D | algorithm.cppm | 13 export module std:algorithm; 14 export namespace std { 17 using std::ranges::in_found_result; 18 using std::ranges::in_fun_result; 19 using std::ranges::in_in_out_result; 20 using std::ranges::in_in_result; 21 using std::ranges::in_out_out_result; 22 using std::ranges::in_out_result; 23 // using std::ranges::in_value_result; 24 using std::ranges::min_max_result; [all …]
|
| D | algorithm.inc | 10 export namespace std { 13 using std::ranges::in_found_result; 14 using std::ranges::in_fun_result; 15 using std::ranges::in_in_out_result; 16 using std::ranges::in_in_result; 17 using std::ranges::in_out_out_result; 18 using std::ranges::in_out_result; 19 // using std::ranges::in_value_result; 20 using std::ranges::min_max_result; 21 // using std::ranges::out_value_result; [all …]
|
| /external/cronet/third_party/libc++/src/test/libcxx/diagnostics/ |
| D | nodiscard_extensions.compile.pass.cpp | 16 // Disable any builtin recognition of std::* in the compiler, that might also 39 std::adjacent_find(std::begin(arr), std::end(arr)); in test_algorithms() 40 std::adjacent_find(std::begin(arr), std::end(arr), std::greater<int>()); in test_algorithms() 41 std::all_of(std::begin(arr), std::end(arr), P()); in test_algorithms() 42 std::any_of(std::begin(arr), std::end(arr), P()); in test_algorithms() 43 std::binary_search(std::begin(arr), std::end(arr), 1); in test_algorithms() 44 std::binary_search(std::begin(arr), std::end(arr), 1, std::greater<int>()); in test_algorithms() 46 std::clamp(2, 1, 3); in test_algorithms() 47 std::clamp(2, 3, 1, std::greater<int>()); in test_algorithms() 49 std::count_if(std::begin(arr), std::end(arr), P()); in test_algorithms() [all …]
|
| /external/deqp/external/vulkancts/framework/vulkan/generated/vulkan/ |
| D | vkStrUtil.inl | 312 inline std::ostream& operator<< (std::ostream& s, VkAttachmentLoadOp value) { return s << g… 313 inline std::ostream& operator<< (std::ostream& s, VkAttachmentStoreOp value) { return s << g… 314 inline std::ostream& operator<< (std::ostream& s, VkBlendFactor value) { return s << getBl… 315 inline std::ostream& operator<< (std::ostream& s, VkBlendOp value) { return s << getBlend… 316 inline std::ostream& operator<< (std::ostream& s, VkBorderColor value) { return s << getBo… 317 inline std::ostream& operator<< (std::ostream& s, VkPipelineCacheHeaderVersion value) { return… 318 inline std::ostream& operator<< (std::ostream& s, VkComponentSwizzle value) { return s << g… 319 inline std::ostream& operator<< (std::ostream& s, VkCommandBufferLevel value) { return s << … 320 inline std::ostream& operator<< (std::ostream& s, VkCompareOp value) { return s << getComp… 321 inline std::ostream& operator<< (std::ostream& s, VkDescriptorType value) { return s << get… [all …]
|
| /external/sdv/vsomeip/third_party/boost/numeric/ublas/test/ |
| D | test32.cpp | 27 std::cout << "row (m, " << i << ") = " << v1 << std::endl; in test_with() 29 std::cout << "column (m, " << i << ") = " << v1 << std::endl; in test_with() 36 std::cout << "outer_prod (v1, v2) = " << m1 << std::endl; in test_with() 42 std::cout << "prod (m1, v1) = " << v2 << std::endl; in test_with() 44 std::cout << "prod (v1, m1) = " << v2 << std::endl; in test_with() 77 std::cout << "test_matrix_vector" << std::endl; in test_matrix_vector() 82 std::cout << "float, map_array" << std::endl; in test_matrix_vector() 83 test_my_matrix_vector<ublas::mapped_vector<float, ublas::map_array<std::size_t, float> >, in test_matrix_vector() 84 … ublas::mapped_matrix<float, ublas::row_major, ublas::map_array<std::size_t, float> >, 3 > () (); in test_matrix_vector() 88 std::cout << "double, map_array" << std::endl; in test_matrix_vector() [all …]
|
| /external/tensorflow/tensorflow/lite/delegates/xnnpack/ |
| D | channelwise_quantized_conv_2d_test.cc | 31 std::unique_ptr<TfLiteDelegate, decltype(&TfLiteXNNPackDelegateDelete)> 35 std::random_device random_device; 36 auto rng = std::mt19937(random_device()); 37 auto scale_rng = std::bind( 38 std::uniform_real_distribution<float>(0.25f, 1.25f), std::ref(rng)); 39 auto zero_point_rng = std::bind(std::uniform_int_distribution<int32_t>( 40 std::numeric_limits<int8_t>::min(), 41 std::numeric_limits<int8_t>::max()), 42 std::ref(rng)); 44 std::bind(std::uniform_int_distribution<int32_t>(2, 4), std::ref(rng)); [all …]
|
| D | channelwise_quantized_depthwise_conv_2d_test.cc | 31 std::unique_ptr<TfLiteDelegate, decltype(&TfLiteXNNPackDelegateDelete)> 35 std::random_device random_device; 36 auto rng = std::mt19937(random_device()); 37 auto scale_rng = std::bind( 38 std::uniform_real_distribution<float>(0.25f, 1.25f), std::ref(rng)); 39 auto zero_point_rng = std::bind(std::uniform_int_distribution<int32_t>( 40 std::numeric_limits<int8_t>::min(), 41 std::numeric_limits<int8_t>::max()), 42 std::ref(rng)); 44 std::bind(std::uniform_int_distribution<int32_t>(5, 25), std::ref(rng)); [all …]
|
| D | unsigned_quantized_depthwise_conv_2d_test.cc | 30 std::unique_ptr<TfLiteDelegate, decltype(&TfLiteXNNPackDelegateDelete)> 34 std::random_device random_device; 35 auto rng = std::mt19937(random_device()); 36 auto zero_point_rng = std::bind(std::uniform_int_distribution<int32_t>( 37 std::numeric_limits<uint8_t>::min(), 38 std::numeric_limits<uint8_t>::max()), 39 std::ref(rng)); 40 auto kernel_zero_point_rng = std::bind( 41 std::uniform_int_distribution<int32_t>(100, 150), std::ref(rng)); 43 std::bind(std::uniform_int_distribution<int32_t>(5, 25), std::ref(rng)); [all …]
|
| D | depthwise_conv_2d_test.cc | 29 std::unique_ptr<TfLiteDelegate, decltype(&TfLiteXNNPackDelegateDelete)> 33 std::random_device random_device; 34 auto rng = std::mt19937(random_device()); 36 std::bind(std::uniform_int_distribution<int32_t>(5, 25), std::ref(rng)); 38 std::bind(std::uniform_int_distribution<int32_t>(3, 32), std::ref(rng)); 50 std::unique_ptr<TfLiteDelegate, decltype(&TfLiteXNNPackDelegateDelete)> 54 std::random_device random_device; 55 auto rng = std::mt19937(random_device()); 57 std::bind(std::uniform_int_distribution<int32_t>(5, 25), std::ref(rng)); 59 std::bind(std::uniform_int_distribution<int32_t>(3, 32), std::ref(rng)); [all …]
|
| D | unsigned_quantized_conv_2d_test.cc | 30 std::unique_ptr<TfLiteDelegate, decltype(&TfLiteXNNPackDelegateDelete)> 34 std::random_device random_device; 35 auto rng = std::mt19937(random_device()); 36 auto zero_point_rng = std::bind(std::uniform_int_distribution<int32_t>( 37 std::numeric_limits<uint8_t>::min(), 38 std::numeric_limits<uint8_t>::max()), 39 std::ref(rng)); 40 auto kernel_zero_point_rng = std::bind( 41 std::uniform_int_distribution<int32_t>(100, 150), std::ref(rng)); 43 std::bind(std::uniform_int_distribution<int32_t>(2, 4), std::ref(rng)); [all …]
|
| /external/cronet/third_party/libc++/src/include/ |
| D | stdatomic.h | 17 using std-atomic = std::atomic<T>; // exposition only 19 #define _Atomic(T) std-atomic<T> 32 using std::memory_order // see below 33 using std::memory_order_relaxed // see below 34 using std::memory_order_consume // see below 35 using std::memory_order_acquire // see below 36 using std::memory_order_release // see below 37 using std::memory_order_acq_rel // see below 38 using std::memory_order_seq_cst // see below 40 using std::atomic_flag // see below [all …]
|
| /external/libcxx/test/std/numerics/c.math/ |
| D | cmath.pass.cpp | 29 // functions. When the std overloads are candidates too (by using or adl), 31 struct Ambiguous : std::true_type { // ADL 106 static_assert((std::is_same<decltype(std::abs((float)0)), float>::value), ""); in test_abs() 107 static_assert((std::is_same<decltype(std::abs((double)0)), double>::value), ""); in test_abs() 108 static_assert((std::is_same<decltype(std::abs((long double)0)), long double>::value), ""); in test_abs() 109 static_assert((std::is_same<decltype(abs(Ambiguous())), Ambiguous>::value), ""); in test_abs() 110 assert(std::abs(-1.) == 1); in test_abs() 115 static_assert((std::is_same<decltype(std::acos((float)0)), float>::value), ""); in test_acos() 116 static_assert((std::is_same<decltype(std::acos((bool)0)), double>::value), ""); in test_acos() 117 static_assert((std::is_same<decltype(std::acos((unsigned short)0)), double>::value), ""); in test_acos() [all …]
|
| /external/deqp/external/vulkancts/framework/vulkan/generated/vulkansc/ |
| D | vkStrUtil.inl | 150 inline std::ostream& operator<< (std::ostream& s, VkAttachmentLoadOp value) { return s << getAt… 151 inline std::ostream& operator<< (std::ostream& s, VkAttachmentStoreOp value) { return s << getAt… 152 inline std::ostream& operator<< (std::ostream& s, VkBlendFactor value) { return s << getBlendF… 153 inline std::ostream& operator<< (std::ostream& s, VkBlendOp value) { return s << getBlendOpSt… 154 inline std::ostream& operator<< (std::ostream& s, VkBorderColor value) { return s << getBorder… 155 inline std::ostream& operator<< (std::ostream& s, VkPipelineCacheHeaderVersion value) { return s <… 156 inline std::ostream& operator<< (std::ostream& s, VkComponentSwizzle value) { return s << getCo… 157 inline std::ostream& operator<< (std::ostream& s, VkCommandBufferLevel value) { return s << getC… 158 inline std::ostream& operator<< (std::ostream& s, VkCompareOp value) { return s << getCompareO… 159 inline std::ostream& operator<< (std::ostream& s, VkDescriptorType value) { return s << getDesc… [all …]
|
| /external/libcxx/test/std/language.support/cstdint/cstdint.syn/ |
| D | cstdint.pass.cpp | 24 // typedef std::int8_t in main() 25 static_assert(sizeof(std::int8_t)*CHAR_BIT == 8, in main() 26 "sizeof(std::int8_t)*CHAR_BIT == 8"); in main() 27 static_assert(std::is_signed<std::int8_t>::value, in main() 28 "std::is_signed<std::int8_t>::value"); in main() 29 // typedef std::int16_t in main() 30 static_assert(sizeof(std::int16_t)*CHAR_BIT == 16, in main() 31 "sizeof(std::int16_t)*CHAR_BIT == 16"); in main() 32 static_assert(std::is_signed<std::int16_t>::value, in main() 33 "std::is_signed<std::int16_t>::value"); in main() [all …]
|
| /external/cronet/third_party/libc++/src/test/std/language.support/cstdint/cstdint.syn/ |
| D | cstdint.pass.cpp | 28 // typedef std::int8_t in main() 29 static_assert(sizeof(std::int8_t)*CHAR_BIT == 8, in main() 30 "sizeof(std::int8_t)*CHAR_BIT == 8"); in main() 31 static_assert(std::is_signed<std::int8_t>::value, in main() 32 "std::is_signed<std::int8_t>::value"); in main() 33 // typedef std::int16_t in main() 34 static_assert(sizeof(std::int16_t)*CHAR_BIT == 16, in main() 35 "sizeof(std::int16_t)*CHAR_BIT == 16"); in main() 36 static_assert(std::is_signed<std::int16_t>::value, in main() 37 "std::is_signed<std::int16_t>::value"); in main() [all …]
|
| /external/cronet/third_party/libc++/src/test/std/language.support/cmp/cmp.alg/ |
| D | weak_order.pass.cpp | 19 #include <iterator> // std::size 28 -> decltype(std::weak_order(static_cast<T&&>(t), static_cast<U&&>(u)), true) in has_weak_order() 40 std::strong_ordering weak_order(const A&, const A&) { return std::strong_ordering::less; } in weak_order() 41 std::strong_ordering weak_order(const A&, const B&); 66 std::strong_ordering weak_order(A&, A&&) { return std::strong_ordering::less; } in weak_order() 67 std::strong_ordering weak_order(A&&, A&&) { return std::strong_ordering::equal; } in weak_order() 68 std::strong_ordering weak_order(const A&, const A&); 71 friend std::partial_ordering weak_order(B&, B&); 75 explicit operator std::weak_ordering() const { return std::weak_ordering::less; } in operator std::weak_ordering() 87 // in a context that does not include a declaration of std::weak_order. in test_1_2() [all …]
|
| D | compare_strong_order_fallback.pass.cpp | 19 #include <iterator> // std::size 32 -> decltype(std::compare_strong_order_fallback(static_cast<T&&>(t), static_cast<U&&>(u)), true) in has_strong_order() 44 std::strong_ordering strong_order(const A&, const A&) { return std::strong_ordering::less; } in strong_order() 45 std::strong_ordering strong_order(const A&, const B&); 70 std::strong_ordering strong_order(A&, A&&) { return std::strong_ordering::less; } in strong_order() 71 std::strong_ordering strong_order(A&&, A&&) { return std::strong_ordering::equal; } in strong_order() 72 std::strong_ordering strong_order(const A&, const A&); 75 friend std::weak_ordering strong_order(B&, B&); 79 explicit operator std::strong_ordering() const { return std::strong_ordering::less; } in operator std::strong_ordering() 91 // in a context that does not include a declaration of std::strong_order. in test_1_2() [all …]
|
| /external/cronet/third_party/libc++/src/modules/ |
| D | CMakeLists.txt | 9 std/algorithm.inc 10 std/any.inc 11 std/array.inc 12 std/atomic.inc 13 std/barrier.inc 14 std/bit.inc 15 std/bitset.inc 16 std/cassert.inc 17 std/cctype.inc 18 std/cerrno.inc [all …]
|
| /external/cronet/third_party/libc++/src/test/std/atomics/stdatomic.h.syn/ |
| D | types.compile.pass.cpp | 15 // using std-atomic = std::atomic<T>; // exposition only 17 // #define _Atomic(T) std-atomic<T> 30 // using std::memory_order // see below 31 // using std::memory_order_relaxed // see below 32 // using std::memory_order_consume // see below 33 // using std::memory_order_acquire // see below 34 // using std::memory_order_release // see below 35 // using std::memory_order_acq_rel // see below 36 // using std::memory_order_seq_cst // see below 38 // using std::atomic_flag // see below [all …]
|
| /external/cronet/third_party/libc++/src/test/std/time/time.cal/time.cal.ymdlast/time.cal.ymdlast.nonmembers/ |
| D | ostream.pass.cpp | 13 // TODO FMT This test should not require std::to_chars(floating-point) 45 static std::basic_string<CharT> stream_c_locale(std::chrono::year_month_day_last ymdl) { in stream_c_locale() 46 std::basic_stringstream<CharT> sstr; in stream_c_locale() 52 static std::basic_string<CharT> stream_fr_FR_locale(std::chrono::year_month_day_last ymdl) { in stream_fr_FR_locale() 53 std::basic_stringstream<CharT> sstr; in stream_fr_FR_locale() 54 const std::locale locale(LOCALE_fr_FR_UTF_8); in stream_fr_FR_locale() 61 static std::basic_string<CharT> stream_ja_JP_locale(std::chrono::year_month_day_last ymdl) { in stream_ja_JP_locale() 62 std::basic_stringstream<CharT> sstr; in stream_ja_JP_locale() 63 const std::locale locale(LOCALE_ja_JP_UTF_8); in stream_ja_JP_locale() 71 TEST_EQUAL(stream_c_locale<CharT>(std::chrono::year_month_day_last{ in test() [all …]
|
| /external/cronet/third_party/libc++/src/test/std/utilities/meta/meta.logical/ |
| D | conjunction.compile.pass.cpp | 31 static_assert( std::conjunction<>::value); 32 static_assert( std::conjunction<std::true_type >::value); 33 static_assert(!std::conjunction<std::false_type>::value); 35 static_assert( std::conjunction_v<>); 36 static_assert( std::conjunction_v<std::true_type >); 37 static_assert(!std::conjunction_v<std::false_type>); 39 static_assert( std::conjunction<std::true_type, std::true_type >::value); 40 static_assert(!std::conjunction<std::true_type, std::false_type>::value); 41 static_assert(!std::conjunction<std::false_type, std::true_type >::value); 42 static_assert(!std::conjunction<std::false_type, std::false_type>::value); [all …]
|