Searched refs:max_value (Results 1 – 9 of 9) sorted by relevance
| /llvm-project-15.0.7/lldb/test/API/functionalities/inline-stepping/ |
| H A D | calling.cpp | 103 max_value(const T& lhs, const T& rhs) in max_value() function 109 max_value(const std::string& lhs, const std::string& rhs) in max_value() function 132 max_value(123, 456); // Call max_value template in main() 133 max_value(std::string("abc"), std::string("0022")); // Call max_value specialized in main()
|
| /llvm-project-15.0.7/libc/test/src/math/ |
| H A D | HypotTest.h | 50 UIntType max_value = FPBits::MAX_SUBNORMAL << scale; in test_subnormal_range() local 51 UIntType step = (max_value - FPBits::MIN_SUBNORMAL) / COUNT; in test_subnormal_range() 53 for (UIntType v = FPBits::MIN_SUBNORMAL, w = max_value; in test_subnormal_range() 54 v <= max_value && w >= FPBits::MIN_SUBNORMAL; in test_subnormal_range()
|
| /llvm-project-15.0.7/pstl/test/std/algorithms/alg.sorting/alg.min.max/ |
| H A D | minmax_element.pass.cpp | 74 const T max_value; member 79 sequence_wrapper(std::size_t n) : seq(n), min_value(-(1 << bits)), max_value(1 << bits) {} in sequence_wrapper() 125 wseq.set_desired_value(*it, wseq.max_value); in test_by_type() 137 wseq.set_desired_value(*rit, wseq.max_value); // setting maximum element in test_by_type()
|
| /llvm-project-15.0.7/libcxx/test/std/algorithms/alg.sorting/alg.sort/sort/ |
| H A D | sort.pass.cpp | 93 T increment_or_reset(T value, int max_value) in increment_or_reset() argument 95 return value == max_value - 1 ? 0 : value + 1; in increment_or_reset() 99 int max_value) in increment_or_reset() argument 102 if (new_value == max_value) in increment_or_reset()
|
| /llvm-project-15.0.7/openmp/runtime/src/ |
| H A D | kmp_sched.cpp | 335 *pupper = traits_t<T>::max_value; in __kmp_for_static_init() 585 *pupperDist = traits_t<T>::max_value; in __kmp_dist_for_static_init() 653 *pupper = traits_t<T>::max_value; in __kmp_dist_for_static_init() 820 *p_ub = traits_t<T>::max_value; in __kmp_team_static_init()
|
| H A D | kmp_os.h | 241 static const signed_t max_value = 0x7fffffff; 251 static const unsigned_t max_value = 0xffffffff; 269 static const signed_t max_value = 0x7fffffffffffffffLL; 279 static const unsigned_t max_value = 0xffffffffffffffffLL;
|
| H A D | kmp_dispatch.cpp | 2599 *pupper = traits_t<T>::max_value; in __kmp_dist_get_bounds()
|
| /llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_allocator_primary64.h | 410 PackedCounterArray(u64 num_counters, u64 max_value, MemoryMapper *mapper) in PackedCounterArray() argument 413 CHECK_GT(max_value, 0); in PackedCounterArray() 418 RoundUpToPowerOfTwo(MostSignificantSetBitIndex(max_value) + 1); in PackedCounterArray()
|
| /llvm-project-15.0.7/llvm/lib/Target/DirectX/ |
| H A D | DXIL.td | 47 int max_value =
|