Home
last modified time | relevance | path

Searched refs:Root (Results 1 – 25 of 638) sorted by relevance

12345678910>>...26

/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
DImmutableMap.h74 TreeTy* Root;
81 explicit ImmutableMap(const TreeTy* R) : Root(const_cast<TreeTy*>(R)) { in ImmutableMap()
82 if (Root) { Root->retain(); } in ImmutableMap()
85 ImmutableMap(const ImmutableMap &X) : Root(X.Root) { in ImmutableMap()
86 if (Root) { Root->retain(); } in ImmutableMap()
90 if (Root) { Root->release(); } in ~ImmutableMap()
94 if (Root != X.Root) {
95 if (X.Root) { X.Root->retain(); }
96 if (Root) { Root->release(); }
97 Root = X.Root;
[all …]
DImmutableSet.h662 ImutAVLTreeGenericIterator(const TreeTy *Root) { in ImutAVLTreeGenericIterator() argument
663 if (Root) stack.push_back(reinterpret_cast<uintptr_t>(Root)); in ImutAVLTreeGenericIterator()
771 ImutAVLTreeInOrderIterator(const TreeTy* Root) : InternalItr(Root) { in ImutAVLTreeInOrderIterator() argument
772 if (Root) in ImutAVLTreeInOrderIterator()
966 TreeTy *Root;
973 explicit ImmutableSet(TreeTy* R) : Root(R) {
974 if (Root) { Root->retain(); }
977 ImmutableSet(const ImmutableSet &X) : Root(X.Root) {
978 if (Root) { Root->retain(); }
982 if (Root) { Root->release(); }
[all …]
/external/llvm/include/llvm/ADT/
DImmutableMap.h71 TreeTy* Root;
78 explicit ImmutableMap(const TreeTy* R) : Root(const_cast<TreeTy*>(R)) { in ImmutableMap()
79 if (Root) { Root->retain(); } in ImmutableMap()
82 ImmutableMap(const ImmutableMap &X) : Root(X.Root) { in ImmutableMap()
83 if (Root) { Root->retain(); } in ImmutableMap()
87 if (Root != X.Root) {
88 if (X.Root) { X.Root->retain(); }
89 if (Root) { Root->release(); }
90 Root = X.Root;
96 if (Root) { Root->release(); } in ~ImmutableMap()
[all …]
DImmutableSet.h659 ImutAVLTreeGenericIterator(const TreeTy *Root) { in ImutAVLTreeGenericIterator() argument
660 if (Root) stack.push_back(reinterpret_cast<uintptr_t>(Root)); in ImutAVLTreeGenericIterator()
768 ImutAVLTreeInOrderIterator(const TreeTy* Root) : InternalItr(Root) { in ImutAVLTreeInOrderIterator() argument
769 if (Root) in ImutAVLTreeInOrderIterator()
965 TreeTy *Root;
972 explicit ImmutableSet(TreeTy* R) : Root(R) {
973 if (Root) { Root->retain(); }
975 ImmutableSet(const ImmutableSet &X) : Root(X.Root) {
976 if (Root) { Root->retain(); }
979 if (Root != X.Root) {
[all …]
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
DImmutableMap.h72 TreeTy* Root;
79 explicit ImmutableMap(const TreeTy* R) : Root(const_cast<TreeTy*>(R)) { in ImmutableMap()
80 if (Root) { Root->retain(); } in ImmutableMap()
82 ImmutableMap(const ImmutableMap &X) : Root(X.Root) { in ImmutableMap()
83 if (Root) { Root->retain(); } in ImmutableMap()
86 if (Root != X.Root) {
87 if (X.Root) { X.Root->retain(); }
88 if (Root) { Root->release(); }
89 Root = X.Root;
94 if (Root) { Root->release(); } in ~ImmutableMap()
[all …]
DImmutableSet.h655 inline ImutAVLTreeGenericIterator(const TreeTy* Root) { in ImutAVLTreeGenericIterator() argument
656 if (Root) stack.push_back(reinterpret_cast<uintptr_t>(Root)); in ImutAVLTreeGenericIterator()
765 ImutAVLTreeInOrderIterator(const TreeTy* Root) : InternalItr(Root) { in ImutAVLTreeInOrderIterator() argument
766 if (Root) operator++(); // Advance to first element. in ImutAVLTreeInOrderIterator()
933 TreeTy *Root;
940 explicit ImmutableSet(TreeTy* R) : Root(R) {
941 if (Root) { Root->retain(); }
943 ImmutableSet(const ImmutableSet &X) : Root(X.Root) {
944 if (Root) { Root->retain(); }
947 if (Root != X.Root) {
[all …]
/external/deqp-deps/SPIRV-Tools/test/tools/
Dspirv_test_framework_nosetest.py20 class Root: class
26 class A(Root):
32 class B(Root):
38 class C(Root):
44 class D(Root):
50 class E(Root):
107 assert_equal(get_all_superclasses(A), [Root])
108 assert_equal(get_all_superclasses(B), [Root])
109 assert_equal(get_all_superclasses(C), [Root])
110 assert_equal(get_all_superclasses(D), [Root])
[all …]
/external/swiftshader/third_party/SPIRV-Tools/test/tools/
Dspirv_test_framework_nosetest.py20 class Root: class
26 class A(Root):
32 class B(Root):
38 class C(Root):
44 class D(Root):
50 class E(Root):
107 assert_equal(get_all_superclasses(A), [Root])
108 assert_equal(get_all_superclasses(B), [Root])
109 assert_equal(get_all_superclasses(C), [Root])
110 assert_equal(get_all_superclasses(D), [Root])
[all …]
/external/clang/utils/TableGen/
DClangASTNodesEmitter.cpp32 Record Root; member in __anon70af99f00111::ClangASTNodesEmitter
47 if (&R == &Root && !BaseSuffix.empty()) in baseName()
58 : Records(R), Root(N, SMLoc(), R), BaseSuffix(S) in ClangASTNodesEmitter()
97 OS << "ABSTRACT_" << macroName(Root.getName()) << "(" << NodeName << "(" in EmitNode()
124 if (Base == &Root) in EmitNode()
125 OS << "LAST_" << macroName(Root.getName()) << "_RANGE("; in EmitNode()
127 OS << macroName(Root.getName()) << "_RANGE("; in EmitNode()
139 OS << "#ifndef ABSTRACT_" << macroName(Root.getName()) << "\n"; in run()
140 OS << "# define ABSTRACT_" << macroName(Root.getName()) << "(Type) Type\n"; in run()
143 OS << "#ifndef " << macroName(Root.getName()) << "_RANGE\n"; in run()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/NVPTX/
DNVPTXPeephole.cpp74 static bool isCVTAToLocalCombinationCandidate(MachineInstr &Root) { in isCVTAToLocalCombinationCandidate() argument
75 auto &MBB = *Root.getParent(); in isCVTAToLocalCombinationCandidate()
78 if (Root.getOpcode() != NVPTX::cvta_to_local_yes_64 && in isCVTAToLocalCombinationCandidate()
79 Root.getOpcode() != NVPTX::cvta_to_local_yes) in isCVTAToLocalCombinationCandidate()
82 auto &Op = Root.getOperand(1); in isCVTAToLocalCombinationCandidate()
105 static void CombineCVTAToLocal(MachineInstr &Root) { in CombineCVTAToLocal() argument
106 auto &MBB = *Root.getParent(); in CombineCVTAToLocal()
110 auto &Prev = *MRI.getUniqueVRegDef(Root.getOperand(1).getReg()); in CombineCVTAToLocal()
113 BuildMI(MF, Root.getDebugLoc(), TII->get(Prev.getOpcode()), in CombineCVTAToLocal()
114 Root.getOperand(0).getReg()) in CombineCVTAToLocal()
[all …]
/external/llvm/lib/Target/NVPTX/
DNVPTXPeephole.cpp74 static bool isCVTAToLocalCombinationCandidate(MachineInstr &Root) { in isCVTAToLocalCombinationCandidate() argument
75 auto &MBB = *Root.getParent(); in isCVTAToLocalCombinationCandidate()
78 if (Root.getOpcode() != NVPTX::cvta_to_local_yes_64 && in isCVTAToLocalCombinationCandidate()
79 Root.getOpcode() != NVPTX::cvta_to_local_yes) in isCVTAToLocalCombinationCandidate()
82 auto &Op = Root.getOperand(1); in isCVTAToLocalCombinationCandidate()
105 static void CombineCVTAToLocal(MachineInstr &Root) { in CombineCVTAToLocal() argument
106 auto &MBB = *Root.getParent(); in CombineCVTAToLocal()
110 auto &Prev = *MRI.getUniqueVRegDef(Root.getOperand(1).getReg()); in CombineCVTAToLocal()
113 BuildMI(MF, Root.getDebugLoc(), TII->get(Prev.getOpcode()), in CombineCVTAToLocal()
114 Root.getOperand(0).getReg()) in CombineCVTAToLocal()
[all …]
/external/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.canonical/
Dcanonical.pass.cpp52 const path Root = StaticEnv::Root; in TEST_CASE() local
53 const path RootName = Root.filename(); in TEST_CASE()
60 TestCase(path p1, path e, path b = StaticEnv::Root) in TEST_CASE()
64 { ".", Root, Root}, in TEST_CASE()
65 { DirName / ".." / "." / DirName, StaticEnv::Dir, Root}, in TEST_CASE()
69 { Root / "." / DirName / ".." / DirName, StaticEnv::Dir}, in TEST_CASE()
70 { path("..") / "." / RootName / DirName / ".." / DirName, StaticEnv::Dir, Root}, in TEST_CASE()
72 { SymlinkName, StaticEnv::File, StaticEnv::Root} in TEST_CASE()
/external/antlr/tool/src/main/resources/org/antlr/codegen/templates/Delphi/
DAST.stg99 Root[0] := nil;<\n>
104 Root: array [0..63] of I<ASTLabelType>;
129 Root[0] := Adaptor.GetNilNode as I<ASTLabelType>;
215 <prevRuleRootRef()>.Tree := Root[0];
217 Root[0] := Adaptor.GetNilNode as I<ASTLabelType>;
231 <prevRuleRootRef()>.Tree := Root[0];<\n>
234 <prevRuleRootRef()>.Tree := Root[0];<\n>
323 rewriteEmptyAlt() ::= "Root[0] = null;"
328 Root[<treeLevel>] := Adaptor.GetNilNode as I<ASTLabelType>;
331 Adaptor.AddChild(Root[<enclosingTreeLevel>], Root[<treeLevel>]);
[all …]
/external/llvm/lib/Target/AArch64/
DAArch64InstrInfo.cpp2919 static bool getMaddPatterns(MachineInstr &Root, in getMaddPatterns() argument
2921 unsigned Opc = Root.getOpcode(); in getMaddPatterns()
2922 MachineBasicBlock &MBB = *Root.getParent(); in getMaddPatterns()
2928 int Cmp_NZCV = Root.findRegisterDefOperandIdx(AArch64::NZCV, true); in getMaddPatterns()
2932 unsigned NewOpc = convertFlagSettingOpcode(Root); in getMaddPatterns()
2944 assert(Root.getOperand(1).isReg() && Root.getOperand(2).isReg() && in getMaddPatterns()
2946 if (canCombineWithMUL(MBB, Root.getOperand(1), AArch64::MADDWrrr, in getMaddPatterns()
2951 if (canCombineWithMUL(MBB, Root.getOperand(2), AArch64::MADDWrrr, in getMaddPatterns()
2958 if (canCombineWithMUL(MBB, Root.getOperand(1), AArch64::MADDXrrr, in getMaddPatterns()
2963 if (canCombineWithMUL(MBB, Root.getOperand(2), AArch64::MADDXrrr, in getMaddPatterns()
[all …]
/external/clang/test/CXX/basic/basic.lookup/basic.lookup.qual/namespace.qual/
Dp3.cpp6 namespace Root { namespace
12 using namespace Root;
16 using namespace Root;
30 using Root::i;
31 using Root::f;
/external/clang/test/SemaObjC/
Dmrc-no-weak.m4 @interface Root @end interface
7 @interface A : Root {
14 @interface B : Root {
24 @interface C : Root
31 @interface D : Root
37 @interface E : Root {
48 @interface F : Root
/external/clang/lib/Rewrite/
DRewriteRope.cpp718 Root = new RopePieceBTreeLeaf(); in RopePieceBTree()
722 Root = new RopePieceBTreeLeaf(); in RopePieceBTree()
725 getRoot(Root)->Destroy(); in ~RopePieceBTree()
729 return getRoot(Root)->size(); in size()
733 if (RopePieceBTreeLeaf *Leaf = dyn_cast<RopePieceBTreeLeaf>(getRoot(Root))) in clear()
736 getRoot(Root)->Destroy(); in clear()
737 Root = new RopePieceBTreeLeaf(); in clear()
743 if (RopePieceBTreeNode *RHS = getRoot(Root)->split(Offset)) in insert()
744 Root = new RopePieceBTreeInterior(getRoot(Root), RHS); in insert()
747 if (RopePieceBTreeNode *RHS = getRoot(Root)->insert(Offset, R)) in insert()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AArch64/
DAArch64InstrInfo.cpp3629 static bool getMaddPatterns(MachineInstr &Root, in getMaddPatterns() argument
3631 unsigned Opc = Root.getOpcode(); in getMaddPatterns()
3632 MachineBasicBlock &MBB = *Root.getParent(); in getMaddPatterns()
3638 int Cmp_NZCV = Root.findRegisterDefOperandIdx(AArch64::NZCV, true); in getMaddPatterns()
3642 unsigned NewOpc = convertToNonFlagSettingOpc(Root); in getMaddPatterns()
3654 assert(Root.getOperand(1).isReg() && Root.getOperand(2).isReg() && in getMaddPatterns()
3656 if (canCombineWithMUL(MBB, Root.getOperand(1), AArch64::MADDWrrr, in getMaddPatterns()
3661 if (canCombineWithMUL(MBB, Root.getOperand(2), AArch64::MADDWrrr, in getMaddPatterns()
3668 if (canCombineWithMUL(MBB, Root.getOperand(1), AArch64::MADDXrrr, in getMaddPatterns()
3673 if (canCombineWithMUL(MBB, Root.getOperand(2), AArch64::MADDXrrr, in getMaddPatterns()
[all …]
/external/clang/test/SemaObjCXX/
Dpseudo-destructor.mm5 @interface Root interface
18 template void destroyPointer<Root*>(Root **); function
19 template void destroyReference<Root*>(Root *&); function
/external/grpc-grpc/src/android/test/interop/app/src/main/assets/
Droots.pem5 # Issuer: CN=GlobalSign Root CA O=GlobalSign nv-sa OU=Root CA
6 # Subject: CN=GlobalSign Root CA O=GlobalSign nv-sa OU=Root CA
7 # Label: "GlobalSign Root CA"
34 # Issuer: CN=GlobalSign O=GlobalSign OU=GlobalSign Root CA - R2
35 # Subject: CN=GlobalSign O=GlobalSign OU=GlobalSign Root CA - R2
36 # Label: "GlobalSign Root CA - R2"
129 # Issuer: CN=Baltimore CyberTrust Root O=Baltimore OU=CyberTrust
130 # Subject: CN=Baltimore CyberTrust Root O=Baltimore OU=CyberTrust
131 # Label: "Baltimore CyberTrust Root"
158 # Issuer: CN=AddTrust External CA Root O=AddTrust AB OU=AddTrust External TTP Network
[all …]
/external/clang/test/Rewriter/
Dobjc-modern-class-init.mm5 @interface Root @end interface
7 @interface Super : Root
15 @implementation Root @end implementation
17 @interface Root(Cat) @end interface in Cat
21 @implementation Root(Cat) @end implementation in Cat
Dobjc-modern-class-init-hooks.mm5 @interface Root @end interface
7 @interface Super : Root
15 @implementation Root @end implementation
17 @interface Root(Cat) @end interface in Cat
21 @implementation Root(Cat) @end implementation in Cat
/external/llvm/lib/Analysis/
DCallGraph.cpp24 : M(M), Root(nullptr), ExternalCallingNode(getOrInsertFunction(nullptr)), in CallGraph()
31 if (!Root) in CallGraph()
32 Root = ExternalCallingNode; in CallGraph()
36 : M(Arg.M), FunctionMap(std::move(Arg.FunctionMap)), Root(Arg.Root), in CallGraph()
40 Arg.Root = nullptr; in CallGraph()
66 if (Root) // Found multiple external mains? Don't pick one. in addToCallGraph()
67 Root = ExternalCallingNode; in addToCallGraph()
69 Root = Node; // Found a main, keep track of it! in addToCallGraph()
100 if (Function *F = Root->getFunction()) in print()
103 OS << "<<null function: 0x" << Root << ">>\n"; in print()
/external/grpc-grpc/etc/
Droots.pem5 # Issuer: CN=GlobalSign Root CA O=GlobalSign nv-sa OU=Root CA
6 # Subject: CN=GlobalSign Root CA O=GlobalSign nv-sa OU=Root CA
7 # Label: "GlobalSign Root CA"
34 # Issuer: CN=GlobalSign O=GlobalSign OU=GlobalSign Root CA - R2
35 # Subject: CN=GlobalSign O=GlobalSign OU=GlobalSign Root CA - R2
36 # Label: "GlobalSign Root CA - R2"
129 # Issuer: CN=Baltimore CyberTrust Root O=Baltimore OU=CyberTrust
130 # Subject: CN=Baltimore CyberTrust Root O=Baltimore OU=CyberTrust
131 # Label: "Baltimore CyberTrust Root"
158 # Issuer: CN=AddTrust External CA Root O=AddTrust AB OU=AddTrust External TTP Network
[all …]
/external/swiftshader/third_party/LLVM/lib/Analysis/IPA/
DCallGraph.cpp33 CallGraphNode *Root; member in __anon0c3155910111::BasicCallGraph
45 BasicCallGraph() : ModulePass(ID), Root(0), in BasicCallGraph()
56 Root = 0; in runOnModule()
63 if (Root == 0) Root = ExternalCallingNode; in runOnModule()
103 CallGraphNode *getRoot() { return Root; } in getRoot()
104 const CallGraphNode *getRoot() const { return Root; } in getRoot()
123 if (Root) // Found multiple external mains? Don't pick one. in addToCallGraph()
124 Root = ExternalCallingNode; in addToCallGraph()
126 Root = Node; // Found a main, keep track of it! in addToCallGraph()

12345678910>>...26