Home
last modified time | relevance | path

Searched refs:D2 (Results 1 – 25 of 190) sorted by relevance

12345678

/openbsd-src/gnu/usr.bin/gcc/gcc/
H A Dfp-test.c83 volatile long double D1 = 1.0, D2 = 1.0, D3 = 1.0; variable
182 D1 = -D2; in main()
183 D1 = D2 + D3; in main()
184 D1 = D2 - D3; in main()
185 D1 = D2 * D3; in main()
186 D1 = D2 / D3; in main()
187 D1 += D2; in main()
188 D1 -= D2; in main()
189 D1 *= D2; in main()
190 D1 /= D2; in main()
[all …]
/openbsd-src/gnu/gcc/gcc/
H A Dfp-test.c83 volatile long double D1 = 1.0, D2 = 1.0, D3 = 1.0; variable
182 D1 = -D2; in main()
183 D1 = D2 + D3; in main()
184 D1 = D2 - D3; in main()
185 D1 = D2 * D3; in main()
186 D1 = D2 / D3; in main()
187 D1 += D2; in main()
188 D1 -= D2; in main()
189 D1 *= D2; in main()
190 D1 /= D2; in main()
[all …]
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DASTStructuralEquivalence.cpp100 Decl *D1, Decl *D2);
1304 RecordDecl *D2 = Field2->getType()->castAs<RecordType>()->getDecl(); in IsStructurallyEquivalent() local
1305 return IsStructurallyEquivalent(Context, D1, D2); in IsStructurallyEquivalent()
1410 CXXRecordDecl *D1, CXXRecordDecl *D2) { in IsStructurallyEquivalentLambdas() argument
1411 assert(D1->isLambda() && D2->isLambda() && in IsStructurallyEquivalentLambdas()
1414 D2->getLambdaCallOperator())) in IsStructurallyEquivalentLambdas()
1422 RecordDecl *D2) { in IsRecordContextStructurallyEquivalent() argument
1428 DeclContext *DC2 = D2->getDeclContext()->getNonTransparentContext(); in IsRecordContextStructurallyEquivalent()
1458 RecordDecl *D1, RecordDecl *D2) { in IsStructurallyEquivalent() argument
1464 IdentifierInfo *Name2 = D2->getIdentifier(); in IsStructurallyEquivalent()
[all …]
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/opt/
H A Dreg-stack2.C17 struct D2 { struct
19 D2(const D1& gi) : g(gi) {} in D2() argument
20 D2 GS() const {return D2(g.GS());} in GS() argument
30 B(const D2& mi);
31 D2 fm;
34 B::B(const D2 &mi) : fm(mi.GS()) {} in B()
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.law/
H A Dvisibility19.C16 class D2 : public B {
17 friend void fr(B*,D1*,D2*);
21 void fr(B* pb, D1* p1, D2* p2) in fr()
28 void D2::mem(B* pb, D1* p1) in mem()
35 void g(B* pb, D1* p1, D2* p2) in g()
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.jason/
H A Dtemplate41.C19 class D2 : virtual public Vbase<T> {
21 D2(T i) : Vbase<T>(i) {} in D2() function
25 class Most : public D1<T>, public D2<T> {
27 Most(T i) : D1<T>(i), D2<T>(i), Vbase<T>(i) {} in Most()
H A Ddcast3.C14 struct D2 : public B2 { }; struct
15 struct E2 : public C2, public D2 { };
/openbsd-src/gnu/usr.bin/perl/lib/unicore/
H A DNamedSequences.txt85 LATIN CAPITAL LETTER O WITH VERTICAL LINE BELOW AND GRAVE;00D2 0329
547 KHMER CONSONANT SIGN COENG KA;17D2 1780
548 KHMER CONSONANT SIGN COENG KHA;17D2 1781
549 KHMER CONSONANT SIGN COENG KO;17D2 1782
550 KHMER CONSONANT SIGN COENG KHO;17D2 1783
551 KHMER CONSONANT SIGN COENG NGO;17D2 1784
552 KHMER CONSONANT SIGN COENG CA;17D2 1785
553 KHMER CONSONANT SIGN COENG CHA;17D2 1786
554 KHMER CONSONANT SIGN COENG CO;17D2 1787
555 KHMER CONSONANT SIGN COENG CHO;17D2 1788
[all …]
/openbsd-src/gnu/usr.bin/binutils/gdb/testsuite/gdb.cp/
H A Drtti2.cc29 D2::D2(C2 *expr_1, C2 *expr_2) in D2() function in n2::D2
33 return new D2(0, 0); in create2()
H A Drtti.h39 class D2 : public C2{
41 D2(C2 *, C2 *);
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.other/
H A Dusing1.C1 class D2; variable
9 friend class D2; variable
18 class D2 : public B { // ERROR - conflicting access specifications
H A Dvirtual3.C13 struct D2 : public D struct
21 D2 d2; in main() argument
H A Dambig3.C26 struct D2 : L2, R2 {}; struct
28 void fn (C1 *c1, D1 *d1, C2 *c2, D2 *d2) in fn()
H A Dambig2.C12 struct D2 : B, virtual C { int m; }; struct
15 void fn(D0 *d0, D1 *d1, D2 *d2, D3 *d3) in fn()
H A Ddyncast5.C17 struct D2 : B, C1, C2 {int m;}; argument
33 D2 d2; in main()
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.mike/
H A Dvirt4.C17 class D2: public D {};
19 class D1_2: public D1, public D2 {
21 void foo() { D1::foo(); D2::foo(); } in foo()
/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DASTStructuralEquivalence.h91 bool IsEquivalent(Decl *D1, Decl *D2);
134 bool CheckCommonEquivalence(Decl *D1, Decl *D2);
139 bool CheckKindSpecificEquivalence(Decl *D1, Decl *D2);
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.abi/
H A Dcrash1.C19 struct D2 : virtual C2, virtual B1 {}; struct
21 struct E : virtual D1, virtual D2 {};
H A Dvbase2.C14 class D2 : public virtual C {};
17 public virtual D2
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.pt/
H A Dtypename16.C13 struct D2 : public D1<T> { struct
29 D2<int> d2i; argument
H A Dcrash66.C35 struct D2 : N1::B<T> struct
37 D2 (T r) in D2() function
H A Dmemtemp78.C43 struct D2
49 template struct D2<int, int>;
/openbsd-src/gnu/llvm/clang/lib/Tooling/ASTDiff/
H A DASTDiff.cpp664 for (SNodeId D2 = LMD2 + 1; D2 <= Id2; ++D2) { in computeForestDist() local
665 ForestDist[LMD1][D2] = ForestDist[LMD1][D2 - 1] + InsertionCost; in computeForestDist()
667 SNodeId DLMD2 = S2.getLeftMostDescendant(D2); in computeForestDist()
669 double UpdateCost = getUpdateCost(D1, D2); in computeForestDist()
670 ForestDist[D1][D2] = in computeForestDist()
671 std::min({ForestDist[D1 - 1][D2] + DeletionCost, in computeForestDist()
672 ForestDist[D1][D2 - 1] + InsertionCost, in computeForestDist()
673 ForestDist[D1 - 1][D2 - 1] + UpdateCost}); in computeForestDist()
674 TreeDist[D1][D2] = ForestDist[D1][D2]; in computeForestDist()
676 ForestDist[D1][D2] = in computeForestDist()
[all …]
/openbsd-src/gnu/usr.bin/perl/cpan/Unicode-Collate/t/
H A Dloc_fa.t45 ok($objFa->eq("\x{6D3}", "\x{6D2}\x{654}"));
89 ok($objFa->lt("\x{649}", "\x{6D2}"));
90 ok($objFa->lt("\x{6D2}", "\x{64A}"));
130 ok($objFa->eq("\x{649}", "\x{6D2}"));
131 ok($objFa->eq("\x{6D2}", "\x{64A}"));
/openbsd-src/gnu/usr.bin/perl/cpan/Unicode-Collate/Collate/CJK/
H A DGB2312.pm37 699C 8180 7ED1 68D2 78C5 868C 9551 508D 8C24 82DE
54 7B56 4FA7 518C 6D4B 5C42 8E6D 63D2 53C9 832C 8336
127 8377 83CF 6838 79BE 548C 4F55 5408 76D2 8C89 9602
155 89D2 997A 7F34 7EDE 527F 6559 9175 8F7F 8F83 53EB
166 5480 77E9 4E3E 6CAE 805A 62D2 636E 5DE8 5177 8DDD
182 9611 5170 6F9C 8C30 63FD 89C8 61D2 7F06 70C2 6EE5
184 8001 4F6C 59E5 916A 70D9 6D9D 52D2 4E50 96F7 956D
215 79D2 6E3A 5E99 5999 8511 706D 6C11 62BF 76BF 654F
242 4E03 51C4 6F06 67D2 6C8F 5176 68CB 5947 6B67 7566
251 82B9 64D2 79BD 5BDD 6C81 9752 8F7B 6C22 503E 537F
[all …]

12345678