Home
last modified time | relevance | path

Searched refs:conditional (Results 1 – 25 of 471) sorted by relevance

12345678910>>...19

/llvm-project-15.0.7/llvm/test/CodeGen/SystemZ/
H A Dcall-04.ll1 ; Test conditional sibling calls.
11 ; Check a conditional sibling call.
65 ; Check a conditional sibling call - unsigned compare.
83 ; Check a conditional sibling call - 64-bit compare.
137 ; Check a conditional sibling call - high compare.
173 ; Check a conditional sibling call - equal compare.
209 ; Check a conditional sibling call - immediate slt.
227 ; Check a conditional sibling call - immediate sle.
245 ; Check a conditional sibling call - immediate sgt.
281 ; Check a conditional sibling call - immediate eq.
[all …]
H A Dcall-05.ll1 ; Test conditional sibling calls.
11 ; Check a conditional sibling call.
67 ; Check a conditional sibling call - unsigned compare.
85 ; Check a conditional sibling call - 64-bit compare.
139 ; Check a conditional sibling call - high compare.
175 ; Check a conditional sibling call - equal compare.
211 ; Check a conditional sibling call - immediate slt.
229 ; Check a conditional sibling call - immediate sle.
247 ; Check a conditional sibling call - immediate sgt.
283 ; Check a conditional sibling call - immediate eq.
[all …]
H A Dtrap-01.ll1 ; Test traps and conditional traps
17 ; Check conditional compare immediate and trap
35 ; Check conditional compare grande immediate and trap
53 ; Check conditional compare logical immediate and trap
71 ; Check conditional compare grande logical immediate and trap
89 ; Check conditional compare and trap
107 ; Check conditional compare grande and trap
125 ; Check conditional compare logical and trap
143 ; Check conditional compare logical grande and trap
161 ; Check conditional traps that don't have a valid Compare and Trap
H A Dtrap-02.ll1 ; Test zE12 conditional traps
7 ; Check conditional compare logical and trap
26 ; Check conditional compare logical grande and trap
/llvm-project-15.0.7/libcxx/test/std/utilities/meta/meta.trans/meta.trans.sign/
H A Dmake_signed.pass.cpp58 test_make_signed< wchar_t, std::conditional<sizeof(wchar_t) == 4, int, short>::type >(); in main()
59 …test_make_signed< const wchar_t, std::conditional<sizeof(wchar_t) == 4, const int, const short>::t… in main()
60 …test_make_signed< const Enum, std::conditional<sizeof(Enum) == sizeof(int), const int, const signe… in main()
61 test_make_signed< BigEnum, std::conditional<sizeof(long) == 4, long long, long>::type >(); in main()
H A Dmake_unsigned.pass.cpp58 …test_make_unsigned<wchar_t, std::conditional<sizeof(wchar_t) == 4, unsigned int, unsigned short>::… in main()
59 …test_make_unsigned<const wchar_t, std::conditional<sizeof(wchar_t) == 4, const unsigned int, const… in main()
60 …test_make_unsigned<const Enum, std::conditional<sizeof(Enum) == sizeof(int), const unsigned int, c… in main()
62 std::conditional<sizeof(long) == 4, unsigned long long, unsigned long>::type> (); in main()
/llvm-project-15.0.7/libcxx/include/__type_traits/
H A Dconditional.h39 struct _LIBCPP_TEMPLATE_VIS conditional {typedef _If type;};
41 struct _LIBCPP_TEMPLATE_VIS conditional<false, _If, _Then> {typedef _Then type;};
45 using conditional_t = typename conditional<_Bp, _IfRes, _ElseRes>::type;
49 template <bool _Bp, class _If, class _Then> using __conditional_t = typename conditional<_Bp, _If, …
H A Ddecay.h37 typedef _LIBCPP_NODEBUG typename conditional
41 typename conditional
/llvm-project-15.0.7/lldb/test/Shell/ScriptInterpreter/Lua/Inputs/
H A Dwatchpoint2.in6 print("conditional watchpoint")
10 # CHECK-COUNT-1: conditional watchpoint
11 # CHECK-NOT: conditional watchpoint
/llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/readability/
H A Dsimplify-boolean-expr.rst57 2. The conditional return ``if (!b) return false; return true;`` has an
60 3. The conditional return ``if (i < 0) return false; return true;`` becomes
63 The conditional return ``if (i != 0) return false; return true;`` becomes
66 4. The conditional return ``if (p) return true; return false;`` has an
74 5. The conditional return ``if (i & 1) return true; else return false;`` has
79 ``struct X``, the conditional return ``if (x) return true; return false;``
87 If `true`, conditional boolean return statements at the end of an
92 If `true`, conditional boolean assignments at the end of an ``if/else
/llvm-project-15.0.7/libcxx/test/std/utilities/meta/meta.trans/meta.trans.other/
H A Dconditional.pass.cpp19 ASSERT_SAME_TYPE(char, std::conditional<true, char, int>::type); in main()
20 ASSERT_SAME_TYPE(int, std::conditional<false, char, int>::type); in main()
/llvm-project-15.0.7/clang/test/SemaCXX/
H A Dcxx0x-defaulted-functions.cpp213 struct conditional;
216 struct conditional<true, X, Y> { typedef X type; }; argument
219 struct conditional<false, X, Y> { typedef Y type; }; argument
225 using T = typename conditional<B, const X &, int>::type;
229 using U = typename conditional<B, X&&, const X&>::type;
H A Ddecltype.cpp105 class conditional {
109 void foo(conditional<decltype((1),int>) { // expected-note 2 {{to match this '('}} expected-error …
/llvm-project-15.0.7/llvm/test/MC/MachO/AArch64/
H A Dreloc-errors.s3 ; CHECK: error: conditional branch requires assembler-local label. 'external' is external.
6 ; CHECK: error: Invalid relocation on conditional branch
/llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/bugprone/
H A Dbranch-clone.rst8 branches in conditional operators.
31 If this is the intended behavior, then there is no reason to use a conditional
80 Finally, the check also examines conditional operators and reports code like:
86 Unlike if statements, the check does not detect chains of conditional
/llvm-project-15.0.7/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.modifiers/
H A Dreset.pass.cpp23 typedef typename std::conditional<IsArray, A[], A>::type VT; in test_reset_pointer()
60 typedef typename std::conditional<IsArray, A[], A>::type VT; in test_reset_nullptr()
84 typedef typename std::conditional<IsArray, A[], A>::type VT; in test_reset_no_arg()
/llvm-project-15.0.7/libcxx/test/std/numerics/c.math/
H A Dabs.pass.cpp20 typedef typename std::conditional<sizeof(T) < sizeof(int), int, T>::type type;
50 typedef std::conditional< in main()
/llvm-project-15.0.7/llvm/test/MC/ARM/
H A Dimplicit-it.s21 @ A single conditional instruction without IT block
31 @ A single conditional instruction with IT block
42 @ A single conditional instruction with IT block, but incorrect condition
50 @ Multiple conditional instructions in an IT block, inverted and non-inverted conditions
/llvm-project-15.0.7/llvm/include/llvm/ADT/
H A DSTLForwardCompat.h38 : std::conditional<bool(B1::value), conjunction<Bn...>, B1>::type {};
46 : std::conditional<bool(B1::value), B1, disjunction<Bn...>>::type {};
/llvm-project-15.0.7/llvm/test/MC/ELF/
H A Dlto-set-conditional.s18 # Verify that pending conditional symbols are emitted next
32 # Remaining conditional symbols are emitted immediately
/llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_type_traits_test.cpp33 ASSERT_TRUE((is_same<int, conditional<true, int, double>::type>::value)); in TEST()
34 ASSERT_TRUE((is_same<double, conditional<false, int, double>::type>::value)); in TEST()
/llvm-project-15.0.7/llvm/test/Transforms/SampleProfile/
H A Dnolocinfo.ll9 ; Remarks for conditional branches need debug location information for the
12 ; CHECK: remark: nolocinfo.c:3:5: most popular destination for conditional branches at <UNKNOWN LOC…
/llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_type_traits.h53 struct conditional {
58 struct conditional<false, T, F> {
/llvm-project-15.0.7/llvm/lib/Target/M68k/MCTargetDesc/
H A DM68kMCCodeEmitter.cpp79 using type = typename std::conditional<
81 typename std::conditional<
83 typename std::conditional<Size == 32, uint32_t,
/llvm-project-15.0.7/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.ctor/
H A Dpointer_deleter.pass.cpp57 typedef typename std::conditional<!IsArray, int, int[]>::type VT; in test_sfinae()
107 typedef typename std::conditional<!IsArray, int, int[]>::type VT; in test_noexcept()
208 typedef typename std::conditional<!IsArray, A, A[]>::type VT; in test_basic()
252 typedef typename std::conditional<IsArray, int[], int>::type VT2; in test_basic()
294 typedef typename std::conditional<!IsArray, A, A[]>::type VT; in test_nullptr()

12345678910>>...19