Home
last modified time | relevance | path

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

12345678910>>...19

/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DImmutableMap.h115 return Root ? Root->contains(K) : false; in contains()
119 return Root && RHS.Root ? Root->isEqual(*RHS.Root.get()) : Root == RHS.Root;
123 return Root && RHS.Root ? Root->isNotEqual(*RHS.Root.get())
128 if (Root) { Root->retain(); } in getRoot()
135 if (Root) Root->retain(); in manualRetain()
139 if (Root) Root->release(); in manualRelease()
235 if (Root) Root->retain(); in manualRetain()
239 if (Root) Root->release(); in manualRelease()
254 return Root ? Root->contains(K) : false; in contains()
262 return Root && RHS.Root ? Root->isEqual(*RHS.Root.get()) : Root == RHS.Root;
[all …]
H A DImmutableSet.h770 if (Root)
1027 return Root ? Root->contains(V) : false;
1031 return Root && RHS.Root ? Root->isEqual(*RHS.Root.get()) : Root == RHS.Root;
1035 return Root && RHS.Root ? Root->isNotEqual(*RHS.Root.get())
1036 : Root != RHS.Root;
1040 if (Root) { Root->retain(); }
1078 void validateTree() const { if (Root) Root->validateTree(); }
1115 return Root ? Root->contains(V) : false;
1126 return Root && RHS.Root ? Root->isEqual(*RHS.Root.get()) : Root == RHS.Root;
1130 return Root && RHS.Root ? Root->isNotEqual(*RHS.Root.get())
[all …]
H A DIntervalTree.h286 IntervalNode *Root = nullptr; // Interval tree root. variable
389 IntervalNode *Root = in createTree() local
402 Root->BucketIntervalsSize = ++NewBucketSize; in createTree()
442 Root->Right = createTree(IntervalsSize, MiddleIndex + 1, PointsEndIndex, in createTree()
446 return Root; in createTree()
596 bool empty() const { return Root == nullptr; } in empty()
600 deleteTree(Root); in clear()
601 Root = nullptr; in clear()
642 printTree(OS, 0, Root, HexFormat);
669 Root = in create()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUInstructionSelector.h166 selectVCSRC(MachineOperand &Root) const;
169 selectVSRC0(MachineOperand &Root) const;
172 selectVOP3Mods0(MachineOperand &Root) const;
176 selectVOP3OMods(MachineOperand &Root) const;
178 selectVOP3Mods(MachineOperand &Root) const;
182 selectVOP3BMods(MachineOperand &Root) const;
191 selectVOP3PMods(MachineOperand &Root) const;
209 selectWMMAVISrc(MachineOperand &Root) const;
226 selectSmrdImm(MachineOperand &Root) const;
230 selectSmrdSgpr(MachineOperand &Root) const;
[all …]
H A DAMDGPUInstructionSelector.cpp3717 Register Src = Root.getReg(); in selectVOP3ModsImpl()
3865 Register Reg = Root.getReg(); in selectVOP3NoMods()
3935 assert((Root.isImm() && (Root.getImm() == -1 || Root.getImm() == 0)) && in selectVOP3PModsNeg()
3938 if (Root.getImm() == -1) in selectVOP3PModsNeg()
3948 assert((Root.isImm() && (Root.getImm() == -1 || Root.getImm() == 0)) && in selectWMMAOpSelVOP3PMods()
3951 if (Root.getImm() != 0) in selectWMMAOpSelVOP3PMods()
4019 Register Src = Root.getReg(); in selectWMMAModsF32NegAbs()
4049 Register Src = Root.getReg(); in selectWMMAModsF16Neg()
4075 Register Src = Root.getReg(); in selectWMMAModsF16NegAbs()
5028 return {Root, 0}; in getPtrBaseWithConstantOffset()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXPeephole.cpp75 static bool isCVTAToLocalCombinationCandidate(MachineInstr &Root) { in isCVTAToLocalCombinationCandidate() argument
76 auto &MBB = *Root.getParent(); in isCVTAToLocalCombinationCandidate()
79 if (Root.getOpcode() != NVPTX::cvta_to_local_yes_64 && in isCVTAToLocalCombinationCandidate()
80 Root.getOpcode() != NVPTX::cvta_to_local_yes) in isCVTAToLocalCombinationCandidate()
83 auto &Op = Root.getOperand(1); in isCVTAToLocalCombinationCandidate()
109 static void CombineCVTAToLocal(MachineInstr &Root) { in CombineCVTAToLocal() argument
110 auto &MBB = *Root.getParent(); in CombineCVTAToLocal()
120 BuildMI(MF, Root.getDebugLoc(), TII->get(Prev.getOpcode()), in CombineCVTAToLocal()
121 Root.getOperand(0).getReg()) in CombineCVTAToLocal()
125 MBB.insert((MachineBasicBlock::iterator)&Root, MIB); in CombineCVTAToLocal()
[all …]
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/
H A DInterpBlock.cpp94 DeadBlock::DeadBlock(DeadBlock *&Root, Block *Blk) in DeadBlock() argument
95 : Root(Root), B(Blk->Desc, Blk->IsStatic, Blk->IsExtern, /*isDead=*/true) { in DeadBlock()
97 if (Root) in DeadBlock()
98 Root->Prev = this; in DeadBlock()
100 Next = Root; in DeadBlock()
102 Root = this; in DeadBlock()
115 if (Root == this) in free()
116 Root = Next; in free()
/freebsd/crypto/openssl/test/
H A Ddanetest.in222 issuer= /CN=Root CA
236 issuer= /CN=Root CA
269 issuer= /CN=Root CA
283 issuer= /CN=Root CA
316 issuer= /CN=Root CA
330 issuer= /CN=Root CA
363 issuer= /CN=Root CA
377 issuer= /CN=Root CA
410 issuer= /CN=Root CA
424 issuer= /CN=Root CA
[all …]
H A Ddane-cross.in49 issuer=CN = Root CA
70 subject=CN = Root CA
71 issuer=CN = Cross Root
92 subject=CN = Cross Root
93 issuer=CN = Cross Root
/freebsd/contrib/llvm-project/clang/lib/IndexSerialization/
H A DSerializablePathCollection.cpp22 size_t PathPool::addFilePath(RootDirKind Root, in addFilePath() argument
25 FilePaths.emplace_back(DirPath(Root, Dir), Paths.add(Filename)); in addFilePath()
55 Paths.addFilePath(Dir.Root, Dir.Path, sys::path::filename(FE.getName())); in tryStoreFilePath()
72 PathPool::RootDirKind Root = PathPool::RootDirKind::Regular; in tryStoreDirPath() local
75 Root = PathPool::RootDirKind::SysRoot; in tryStoreDirPath()
79 Root = PathPool::RootDirKind::CurrentWorkDir; in tryStoreDirPath()
83 if (Root != PathPool::RootDirKind::Regular) { in tryStoreDirPath()
88 PathPool::DirPath Result(Root, Paths.addDirPath(Dir)); in tryStoreDirPath()
/freebsd/contrib/llvm-project/clang/lib/Rewrite/
H A DRewriteRope.cpp722 Root = new RopePieceBTreeLeaf(); in RopePieceBTree()
727 Root = new RopePieceBTreeLeaf(); in RopePieceBTree()
731 getRoot(Root)->Destroy(); in ~RopePieceBTree()
735 return getRoot(Root)->size(); in size()
742 getRoot(Root)->Destroy(); in clear()
743 Root = new RopePieceBTreeLeaf(); in clear()
749 if (RopePieceBTreeNode *RHS = getRoot(Root)->split(Offset)) in insert()
750 Root = new RopePieceBTreeInterior(getRoot(Root), RHS); in insert()
754 Root = new RopePieceBTreeInterior(getRoot(Root), RHS); in insert()
760 Root = new RopePieceBTreeInterior(getRoot(Root), RHS); in erase()
[all …]
H A DDeltaTree.cpp386 static DeltaTreeNode *getRoot(void *Root) { in getRoot() argument
387 return (DeltaTreeNode*)Root; in getRoot()
391 Root = new DeltaTreeNode(); in DeltaTree()
396 assert(getRoot(RHS.Root)->getNumValuesUsed() == 0 && in DeltaTree()
398 Root = new DeltaTreeNode(); in DeltaTree()
402 getRoot(Root)->Destroy(); in ~DeltaTree()
409 const DeltaTreeNode *Node = getRoot(Root); in getDeltaAt()
457 DeltaTreeNode *MyRoot = getRoot(Root); in AddDelta()
461 Root = new DeltaTreeInteriorNode(InsertRes); in AddDelta()
463 MyRoot = Root; in AddDelta()
/freebsd/contrib/llvm-project/clang/utils/TableGen/
H A DClangASTNodesEmitter.cpp38 ASTNode Root; member in __anon5bba5bcd0111::ClangASTNodesEmitter
53 assert(Root && "root node not yet derived!"); in macroHierarchyName()
55 MacroHierarchyName = macroName(std::string(Root.getName())); in macroHierarchyName()
63 if (node == Root && !BaseSuffix.empty()) in baseName()
157 if (Base == Root) in EmitNode()
169 assert(!Root && "already computed tree"); in deriveChildTree()
178 else if (Root) in deriveChildTree()
183 Root = R; in deriveChildTree()
186 if (!Root) in deriveChildTree()
212 EmitNode(OS, Root); in run()
/freebsd/contrib/llvm-project/compiler-rt/lib/lsan/
H A Dlsan_flags.inc29 "Root set: include global variables (.data and .bss)")
30 LSAN_FLAG(bool, use_stacks, true, "Root set: include thread stacks")
31 LSAN_FLAG(bool, use_registers, true, "Root set: include thread registers")
33 "Root set: include TLS and thread-specific storage")
35 "Root set: include regions added via __lsan_register_root_region().")
37 "Root set: mark as reachable all allocations made from dynamic "
/freebsd/contrib/llvm-project/clang/include/clang/IndexSerialization/
H A DSerializablePathCollection.h53 RootDirKind Root; member
56 DirPath(RootDirKind Root, const StringPool::StringOffsetSize &Path) in DirPath()
57 : Root(Root), Path(Path) {} in DirPath()
69 size_t addFilePath(RootDirKind Root, const StringPool::StringOffsetSize &Dir,
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64InstrInfo.cpp6037 unsigned Opc = Root.getOpcode(); in getMaddPatterns()
6077 assert(Root.getOperand(1).isReg() && Root.getOperand(2).isReg() && in getMaddPatterns()
6196 switch (Root.getOpcode()) { in getFMAPatterns()
6201 assert(Root.getOperand(1).isReg() && Root.getOperand(2).isReg() && in getFMAPatterns()
6208 assert(Root.getOperand(1).isReg() && Root.getOperand(2).isReg() && in getFMAPatterns()
6344 switch (Root.getOpcode()) { in getFMULPatterns()
6374 unsigned Opc = Root.getOpcode(); in getFNEGPatterns()
6528 unsigned Opc = Root.getOpcode(); in getMiscPatterns()
6743 return &Root; in genIndexedMultiply()
6768 .add(Root.getOperand(2)); in genNeg()
[all …]
/freebsd/contrib/libfido2/windows/
H A Dcygwin.ps122 $Root = "${Cygwin}\root" variable
39 New-Item -Type Directory "${Root}" -Force
64 -ArgumentList "-dnNOqW -s ${Mirror} -R ${Root} -P ${Packages}"
67 $Env:PATH = "${Root}\bin\;" + $Env:PATH
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineCombiner.cpp100 unsigned getLatency(MachineInstr *Root, MachineInstr *NewRoot,
103 improvesCriticalPathLen(MachineBasicBlock *MBB, MachineInstr *Root,
284 if (UseMO && BlockTrace.isDepInTrace(*Root, *UseMO)) { in getLatency()
353 MachineInstr &Root, MachineBasicBlock *MBB, in reduceRegisterPressure() argument
370 MachineBasicBlock *MBB, MachineInstr *Root, in improvesCriticalPathLen() argument
380 unsigned RootDepth = BlockTrace.getInstrCycles(*Root).Depth; in improvesCriticalPathLen()
404 if (TII->accumulateInstrSeqToRootLatency(*Root)) { in improvesCriticalPathLen()
409 RootLatency = TSchedModel.computeInstrLatency(Root); in improvesCriticalPathLen()
412 unsigned RootSlack = BlockTrace.getInstrSlack(*Root); in improvesCriticalPathLen()
541 MachineBasicBlock *MBB, MachineInstr &Root, in verifyPatternOrder() argument
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonCommonGEP.cpp179 Root = 0x01, enumerator
209 if (Flags & Root) in GepNode()
221 if (GN.Flags & GepNode::Root) { in operator <<()
247 if (GN.Flags & GepNode::Root) in operator <<()
330 Order.push_back(Root); in getBlockTraversalOrder()
446 Work.push_back(Root); in nodes_for_root()
447 Nodes.insert(Root); in nodes_for_root()
625 if (N->Flags & GepNode::Root) in common()
1052 for (GepNode *Root : Roots) in computeNodePlacement()
1058 for (GepNode *Root : Roots) in computeNodePlacement()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Core/
H A DLVReader.cpp29 bool checkIntegrityScopesTree(LVScope *Root) { in checkIntegrityScopesTree() argument
66 TraverseScope(Root); in checkIntegrityScopesTree()
87 std::string RootName(Root->getName()); in checkIntegrityScopesTree()
239 if (options().getInternalIntegrity() && !checkIntegrityScopesTree(Root)) in doLoad()
244 Root->processRangeInformation(); in doLoad()
249 Root->resolveElements(); in doLoad()
291 return Root->doPrint(OutputSplit, DoMatch, DoPrint, OS); in printScopes()
301 return Root->doPrintMatches(OutputSplit, OS, UseMatchedElements); in printMatchedElements()
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMParallelDSP.cpp63 Instruction *Root; member
71 Root(I), LHS(lhs), RHS(rhs) { } in MulCandidate()
85 Instruction *Root = nullptr; member in __anon6768a2510111::Reduction
94 Reduction (Instruction *Add) : Root(Add) { } in Reduction()
145 << *Mul0->Root << "\n" in AddMulPair()
146 << *Mul1->Root << "\n"); in AddMulPair()
155 Instruction *getRoot() { return Root; } in getRoot()
177 Root->replaceAllUsesWith(SMLAD); in UpdateRoot()
607 const Instruction *Mul0 = PMul0->Root; in CreateParallelPairs()
608 const Instruction *Mul1 = PMul1->Root; in CreateParallelPairs()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Tooling/
H A DFileMatchTrie.cpp183 : Root(new FileMatchTrieNode), Comparator(new DefaultPathComparator()) {} in FileMatchTrie()
186 : Root(new FileMatchTrieNode), Comparator(Comparator) {} in FileMatchTrie()
189 delete Root; in ~FileMatchTrie()
193 Root->insert(NewPath); in insert()
203 StringRef Result = Root->findEquivalent(*Comparator, FileName, IsAmbiguous); in findEquivalent()
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
H A DProfiledCallGraph.h133 iterator begin() { return Root.Edges.begin(); } in begin()
134 iterator end() { return Root.Edges.end(); } in end()
135 ProfiledCallGraphNode *getEntryNode() { return &Root; } in getEntryNode()
145 Root.Edges.emplace(&Root, ProfiledFunctions[Name], 0); in addProfiledFunction()
208 ProfiledCallGraphNode Root; variable
/freebsd/secure/caroot/untrusted/
H A DQuoVadis_Root_CA.pem2 ## QuoVadis Root CA
19 …Issuer: C = BM, O = QuoVadis Limited, OU = Root Certification Authority, CN = QuoVadis Root Certif…
23 …Subject: C = BM, O = QuoVadis Limited, OU = Root Certification Authority, CN = QuoVadis Root Certi…
55 …Explicit Text: Reliance on the QuoVadis Root Certificate by any party assumes acceptance of the th…
61 …DirName:/C=BM/O=QuoVadis Limited/OU=Root Certification Authority/CN=QuoVadis Root Certification Au…
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86PartialReduction.cpp435 static void collectLeaves(Value *Root, SmallVectorImpl<Instruction *> &Leaves) { in collectLeaves() argument
438 Worklist.push_back(Root); in collectLeaves()
448 if (!PN->hasNUses(PN == Root ? 2 : 1)) in collectLeaves()
460 if (BO->hasNUses(BO == Root ? 2 : 1)) { in collectLeaves()
467 if (BO->hasNUses(BO == Root ? 3 : 2)) { in collectLeaves()
491 if (!V->hasNUses(I == Root ? 2 : 1)) in collectLeaves()
523 Value *Root = matchAddReduction(*EE, ReduceInOneBB); in runOnFunction() local
524 if (!Root) in runOnFunction()
528 collectLeaves(Root, Leaves); in runOnFunction()
538 if (I != Root && trySADReplacement(I)) in runOnFunction()

12345678910>>...19