Home
last modified time | relevance | path

Searched refs:C1 (Results 1 – 25 of 188) sorted by relevance

12345678

/minix/external/bsd/llvm/dist/clang/test/CXX/temp/temp.decls/temp.class.spec/
H A Dp9.cpp5 template<char C1, char C2>
10 template<int C1>
11 struct X<C1, C1> {
22 template<unsigned char C1, unsigned char C3>
23 struct int_values<C1, 12, C3> {
/minix/external/bsd/llvm/dist/llvm/test/Transforms/InstCombine/
H A Dapint-xor1.ll8 ;; (A & C1)^(B & C2) -> (A & C1)|(B & C2) iff C1&C2 == 0
11 %C1 = xor i47 %A1, %B1
12 ret i47 %C1
46 ;; (A | C1) ^ C2 -> (A | C1) & ~C2 iff (C1&C2) == C2
48 %C1 = xor i47 %B1, 703687463
49 ret i47 %C1
H A Dapint-xor2.ll9 ;; (A & C1)^(B & C2) -> (A & C1)|(B & C2) iff C1&C2 == 0
12 %C1 = xor i447 %A1, %B1
13 ret i447 %C1
47 ;; (A | C1) ^ C2 -> (A | C1) & ~C2 iff (C1&C2) == C2
49 %C1 = xor i1023 %B1, 703687463
50 ret i1023 %C1
H A Dapint-and2.ll17 %C1 = and i477 %NotA, %NotB
18 ret i477 %C1
25 %C1 = and i129 %NotA, %NotB
26 ret i129 %C1
33 %C1 = and i65 %NotA, %NotB
34 ret i65 %C1
41 %C1 = and i66 %NotA, %NotB
42 ret i66 %C1
80 %C1 = and i1024 %X, 255
81 ret i1024 %C1
H A Dfast-math.ll51 ; (X + C1) + C2 => X + (C1 + C2)
69 ; C1 * X + (X + X) = (C1 + 2) * X
232 ; C1/X * C2 => (C1*C2) / X
241 ; X/C1 * C2 => X * (C2/C1) is disabled if X/C1 has multiple uses
253 ; X/C1 * C2 => X * (C2/C1) (if C2/C1 is normal Fp)
339 ; X/C1 / C2 => X * (1/(C2*C1))
351 ; X*C1 / C2 => X * (C1/C2)
383 ; "X*C1 / C2 => X * (C1/C2)" is disabled if C1/C2 is a denormal
410 ; C1/(X*C2) => (C1/C2) / X
419 ; C1/(X/C2) => (C1*C2) / X
[all …]
/minix/external/bsd/llvm/dist/llvm/test/TableGen/
H A DMultiClassInherit.td35 class C1<int A, string B> {
41 def T : C1<4, "blah">;
44 def S1 : C1<a1, "foo"> {
48 def S2 : C1<a1, "bar">;
52 def S3 : C1<a2, "foo"> {
56 def S4 : C1<a2, "bar">;
60 def S5 : C1<bs1, "moo"> {
64 def S6 : C1<bs1, "baz">;
70 def S7 : C1<bs3, "moo"> {
74 def S8 : C1<bs3, "baz">;
[all …]
H A DDefmInherit.td10 class C1<int A, string B> {
16 def T : C1<4, "blah">;
19 def S1 : C1<a, "foo"> {
23 def S2 : C1<a, "bar">;
27 def S3 : C1<a, "moo"> {
31 def S4 : C1<a, "baz">;
36 def T4 : C1<6, "foo">;
H A DMultiClass.td8 class C1<int A, string B> {
14 def T : C1<4, "blah">;
17 def S1 : C1<a, "foo"> {
21 def S2 : C1<a, "bar">;
26 def T4 : C1<6, "foo">;
/minix/external/bsd/llvm/dist/clang/test/CodeGenCXX/
H A Dvtable-layout-extreme.cpp10 class C1 class
17 , virtual public C1
23 , virtual public C1
42 , public C1
52 , public C1
71 , public C1
H A Dvtt-layout.cpp33 class C1 : public virtual V1 { int i; }; class
37 class D : public C1, public C2, public C3 { int i; };
52 class C1 : public virtual V1 { int i; }; class
56 class D : public C1, public C2, public C3 { int i; };
/minix/external/bsd/llvm/dist/llvm/test/Transforms/InstSimplify/
H A Dapint-or.ll5 ;; If we have: ((V + N) & C1) | (V & C2)
6 ;; .. and C2 = ~C1 and C2 is 0+1+ and (N & C2) == 0
8 %C1 = xor i39 274877906943, -1 ;; C2 = 274877906943
11 %B = and i39 %A, %C1
23 ;; If we have: ((V + N) & C1) | (V & C2)
24 ;; .. and C2 = ~C1 and C2 is 0+1+ and (N & C2) == 0
26 %C1 = xor i399 274877906943, -1 ;; C2 = 274877906943
29 %B = and i399 %A, %C1
/minix/external/bsd/llvm/dist/clang/test/SemaCXX/
H A Dnested-name-spec.cpp317 struct C1 { struct
334 struct S1a { int f(C1::C2); };
335 struct S1b { int f(C1:C2); }; // expected-error{{unexpected ':' in nested name specifier; did you …
338 C1::C2 f(C1::C2);
341 C1::C2 f(C1:C2); // expected-error{{unexpected ':' in nested name specifier; did you mean '::'?}}
345 int f(C1::C2), C2 : N1;
372 C1::C2 m1 : B1::B2;
375C1::C2 m1 : B1:B2; // expected-error{{unexpected ':' in nested name specifier; did you mean '::'?…
385 C1::C2 : B1:B2; // expected-error{{unexpected ':' in nested name specifier; did you mean '::'?}}
393 typedef unsigned C1; typedef
[all …]
H A Dstatic-cast.cpp4 struct C1 : public virtual B {}; // Single virtual base. struct
6 struct D : public C1, public C2 {}; // Diamond
8 struct F : public C1 {}; // Single path to B with virtual.
47 (void)static_cast<const B*>((C1*)0); in t_529_2()
48 (void)static_cast<B&>(*((C1*)0)); in t_529_2()
85 …(void)static_cast<C1*>((A*)0); // expected-error {{cannot cast 'A *' to 'C1 *' via virtual base 'B… in t_529_5_8()
86 …(void)static_cast<C1&>(*((A*)0)); // expected-error {{cannot cast 'A' to 'C1 &' via virtual base '… in t_529_5_8()
H A Dcstyle-cast.cpp47 struct C1 : public virtual B {}; // Single virtual base. struct
49 struct D : public C1, public C2 {}; // Diamond
51 struct F : public C1 {}; // Single path to B with virtual.
88 (void)(const B*)((C1*)0); in t_529_2()
89 (void)(B&)(*((C1*)0)); in t_529_2()
126 (void)(C1*)((A*)0); // expected-error {{cannot cast 'A *' to 'C1 *' via virtual base 'B'}} in t_529_5_8()
127 (void)(C1&)(*((A*)0)); // expected-error {{cannot cast 'A' to 'C1 &' via virtual base 'B'}} in t_529_5_8()
H A Dout-of-line-def-mismatch.cpp7 class C1 {}; class
11 …void func(C1&, unsigned, const S1*); // expected-note {{type of 3rd parameter of member declaratio…
21 void N2::N1::S2::func(C1&, unsigned, const S1*) {} // expected-error {{out-of-line definition of 'f… in func() argument
H A Dbuiltin-ptrtomember-overload-1.cpp33 struct C1 : B1 { struct
37 void foo1(C1 c1, int A::* pmf) { in foo1()
42 void foo1(C1 c1, int E::* pmf) { in foo1()
/minix/external/bsd/llvm/dist/llvm/include/llvm/IR/
H A DConstants.h890 return getAdd(C1, C2, false, true);
893 return getAdd(C1, C2, true, false);
896 return getSub(C1, C2, false, true);
899 return getSub(C1, C2, true, false);
902 return getMul(C1, C2, false, true);
905 return getMul(C1, C2, true, false);
908 return getShl(C1, C2, false, true);
914 return getSDiv(C1, C2, true);
917 return getUDiv(C1, C2, true);
920 return getAShr(C1, C2, true);
[all …]
/minix/external/bsd/llvm/dist/llvm/lib/IR/
H A DConstantFold.cpp915 return C1; in ConstantFoldBinaryInstruction()
920 return C1; in ConstantFoldBinaryInstruction()
938 return C1; in ConstantFoldBinaryInstruction()
948 return C1; in ConstantFoldBinaryInstruction()
953 return C1; in ConstantFoldBinaryInstruction()
961 return C1; in ConstantFoldBinaryInstruction()
970 return C1; in ConstantFoldBinaryInstruction()
980 return C1; in ConstantFoldBinaryInstruction()
1224 return C1; in ConstantFoldBinaryInstruction()
1229 return C1; in ConstantFoldBinaryInstruction()
[all …]
/minix/crypto/external/bsd/openssl/dist/crypto/whrlpool/
H A Dwp_block.c595 L1 = C1(K, 0); in whirlpool_block()
605 L2 ^= C1(K, 1); in whirlpool_block()
614 L3 ^= C1(K, 2); in whirlpool_block()
623 L4 ^= C1(K, 3); in whirlpool_block()
632 L5 ^= C1(K, 4); in whirlpool_block()
641 L6 ^= C1(K, 5); in whirlpool_block()
650 L7 ^= C1(K, 6); in whirlpool_block()
659 L0 ^= C1(K, 7); in whirlpool_block()
677 L1 ^= C1(S, 0); in whirlpool_block()
686 L2 ^= C1(S, 1); in whirlpool_block()
[all …]
/minix/external/bsd/llvm/dist/llvm/lib/Transforms/InstCombine/
H A DInstCombineMulDivRem.cpp192 Constant *C1, *C2; in visitMul() local
242 ConstantInt *C1; in visitMul() local
271 Constant *C1; in visitMul() local
462 if (C0 && C1) in isFMulOrFDivWithConstant()
465 return (C0 && isFiniteNonZeroFp(C0)) || (C1 && isFiniteNonZeroFp(C1)); in isFMulOrFDivWithConstant()
489 Constant *F = ConstantExpr::getFMul(C1 ? C1 : C0, C); in foldFMulConst()
584 if (C1 && isFiniteNonZeroFp(C1) && isFMulOrFDivWithConstant(Opnd0)) { in visitFMul()
797 const APInt *C1; in commonIDivTransforms() local
835 *C1 != C1->getBitWidth() - 1) || in commonIDivTransforms()
839 C1->getBitWidth(), static_cast<unsigned>(C1->getLimitedValue())); in commonIDivTransforms()
[all …]
/minix/external/bsd/llvm/dist/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Ddeduction.cpp33 template<int C1, char C3>
34 struct char_values<C1, 12, C3> {
44 template<unsigned char C1, unsigned char C3>
45 struct int_values<C1, 12, C3> {
/minix/external/bsd/llvm/dist/clang/test/CXX/dcl.dcl/dcl.spec/dcl.typedef/
H A Dp2-0x.cpp89 class C1 { class
91 using C1 = C1; // expected-error {{name defined in alias declaration must be an identifier}} typedef in ClassNameRedecl::C1
94 using C0 = C1; // ok
147 class C1 { class
151 C1::U w; // ok
/minix/external/bsd/llvm/dist/clang/test/SemaTemplate/
H A Ddependent-class-member-operator.cpp4 template<class T> struct C1 { void operator()(T); }; struct
8 foo(&C1<int>::operator()); in wrap()
9 foo(&C1<int>::operator+); // expected-error {{no member named 'operator+' in 'C1<int>'}} in wrap()
/minix/external/bsd/llvm/dist/llvm/test/CodeGen/PowerPC/
H A Dvsx-fma-m.ll20 ; CHECK-DAG: li [[C1:[0-9]+]], 8
24 ; CHECK-DAG: stxsdx 1, 7, [[C1]]
32 ; CHECK-FISL-DAG: li [[C1:[0-9]+]], 8
33 ; CHECK-FISL-DAG: stxsdx 1, 7, [[C1]]
50 ; CHECK-DAG: li [[C1:[0-9]+]], 8
56 ; CHECK-DAG: stxsdx 4, 8, [[C1]]
91 ; CHECK-DAG: li [[C1:[0-9]+]], 24
103 ; CHECK-DAG: stxsdx 2, 8, [[C1]]
140 ; CHECK-DAG: li [[C1:[0-9]+]], 8
150 ; CHECK-DAG: stxsdx 4, 8, [[C1]]
[all …]
/minix/external/bsd/llvm/dist/clang/test/Layout/
H A Dms-x86-empty-nonvirtual-bases.cpp15 struct C1 { int a; C1() : a(0xf00000C1) {printf("C1 : %p\n", this);} }; in C1() struct
72 C1 c1;
106 struct E : B0, C0, C1, C2, B1 {
125 struct F : C0, B0, B1, C1 {

12345678