Home
last modified time | relevance | path

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

12345678910>>...14

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A DImmutableMap.h73 IntrusiveRefCntPtr<TreeTy> Root;
80 explicit ImmutableMap(const TreeTy *R) : Root(const_cast<TreeTy *>(R)) {} in ImmutableMap()
99 TreeTy *T = F.add(Old.Root.get(), std::pair<key_type, data_type>(K, D)); in add()
104 TreeTy *T = F.remove(Old.Root.get(), K); in remove()
114 return Root ? Root->contains(K) : false; in contains()
118 return Root && RHS.Root ? Root->isEqual(*RHS.Root.get()) : Root == RHS.Root;
122 return Root && RHS.Root ? Root->isNotEqual(*RHS.Root.get())
123 : Root != RHS.Root;
127 if (Root) { Root->retain(); } in getRoot()
128 return Root.get(); in getRoot()
[all …]
H A DImmutableSet.h670 ImutAVLTreeGenericIterator(const TreeTy *Root) {
671 if (Root) stack.push_back(reinterpret_cast<uintptr_t>(Root));
782 ImutAVLTreeInOrderIterator(const TreeTy* Root) : InternalItr(Root) {
783 if (Root)
977 IntrusiveRefCntPtr<TreeTy> Root;
984 explicit ImmutableSet(TreeTy *R) : Root(R) {}
1013 TreeTy *NewT = F.add(Old.Root.get(), V);
1025 TreeTy *NewT = F.remove(Old.Root.get(), V);
1040 return Root ? Root->contains(V) : false;
1044 return Root && RHS.Root ? Root->isEqual(*RHS.Root.get()) : Root == RHS.Root;
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DAMDGPUInstructionSelector.h154 std::pair<Register, unsigned> selectVOP3ModsImpl(MachineOperand &Root,
158 selectVCSRC(MachineOperand &Root) const;
161 selectVSRC0(MachineOperand &Root) const;
164 selectVOP3Mods0(MachineOperand &Root) const;
166 selectVOP3BMods0(MachineOperand &Root) const;
168 selectVOP3OMods(MachineOperand &Root) const;
170 selectVOP3Mods(MachineOperand &Root) const;
172 selectVOP3BMods(MachineOperand &Root) const;
174 ComplexRendererFns selectVOP3NoMods(MachineOperand &Root) const;
177 selectVOP3Mods_nnan(MachineOperand &Root) const;
[all …]
H A DAMDGPUInstructionSelector.cpp3182 AMDGPUInstructionSelector::selectVCSRC(MachineOperand &Root) const { in selectVCSRC()
3184 [=](MachineInstrBuilder &MIB) { MIB.add(Root); } in selectVCSRC()
3190 AMDGPUInstructionSelector::selectVOP3ModsImpl(MachineOperand &Root, in selectVOP3ModsImpl() argument
3192 Register Src = Root.getReg(); in selectVOP3ModsImpl()
3210 MachineInstr *UseMI = Root.getParent(); in selectVOP3ModsImpl()
3229 AMDGPUInstructionSelector::selectVSRC0(MachineOperand &Root) const { in selectVSRC0()
3231 [=](MachineInstrBuilder &MIB) { MIB.add(Root); } in selectVSRC0()
3236 AMDGPUInstructionSelector::selectVOP3Mods0(MachineOperand &Root) const { in selectVOP3Mods0()
3239 std::tie(Src, Mods) = selectVOP3ModsImpl(Root); in selectVOP3Mods0()
3250 AMDGPUInstructionSelector::selectVOP3BMods0(MachineOperand &Root) const { in selectVOP3BMods0()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/tools/dsymutil/
H A DReproducer.cpp16 SmallString<128> Root; in createReproducerDir() local
18 Root.assign(Path); in createReproducerDir()
19 EC = sys::fs::create_directory(Root); in createReproducerDir()
21 EC = sys::fs::createUniqueDirectory("dsymutil", Root); in createReproducerDir()
23 return EC ? "" : std::string(Root); in createReproducerDir()
30 : Root(createReproducerDir(EC)), FC() { in ReproducerGenerate()
31 if (!Root.empty()) in ReproducerGenerate()
32 FC = std::make_shared<FileCollector>(Root, Root); in ReproducerGenerate()
40 SmallString<128> Mapping(Root); in ~ReproducerGenerate()
43 outs() << "reproducer written to " << Root << '\n'; in ~ReproducerGenerate()
[all …]
H A DReproducer.h39 createReproducer(ReproducerMode Mode, StringRef Root);
55 std::string Root;
66 ReproducerUse(StringRef Root, std::error_code &EC);
71 std::string Root;
/netbsd-src/external/bsd/libc++/dist/libcxxrt/test/
H A Dtest_typeinfo.cc12 struct Root struct
24 struct Sub1 : public Root argument
34 struct Virt1a : public virtual Root
40 struct Virt2a : public virtual Root
73 Root root; in test_type_info()
76 Root *b = &sub2; in test_type_info()
77 Root *f = &sub2; in test_type_info()
78 Root *s2 = &sub2; in test_type_info()
79 Root *b2 = &root; in test_type_info()
80 Root *v1 = &virt1; in test_type_info()
[all …]
/netbsd-src/external/public-domain/xz/dist/macosx/
H A Dbuild.sh10 mkdir -p Root
41 make DESTDIR=`pwd`/Root install
53 make -C src/xzdec DESTDIR=`pwd`/Root install
55 cp -a ../extra Root/usr/local/share/doc/xz
64 mv Root/usr/local/include liblzma/usr/local
65 mv Root/usr/local/lib liblzma/usr/local
67 mkdir -p Root/usr/local/lib
68 cp -p liblzma/usr/local/lib/liblzma.5.dylib Root/usr/local/lib
70 mv Root/usr/local/share/doc/xz/examples* liblzma/usr/local/share/doc/xz
75 strip -S Root/usr/local/bin/$bin
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/
H A DNVPTXPeephole.cpp73 static bool isCVTAToLocalCombinationCandidate(MachineInstr &Root) { in isCVTAToLocalCombinationCandidate() argument
74 auto &MBB = *Root.getParent(); in isCVTAToLocalCombinationCandidate()
77 if (Root.getOpcode() != NVPTX::cvta_to_local_yes_64 && in isCVTAToLocalCombinationCandidate()
78 Root.getOpcode() != NVPTX::cvta_to_local_yes) in isCVTAToLocalCombinationCandidate()
81 auto &Op = Root.getOperand(1); in isCVTAToLocalCombinationCandidate()
104 static void CombineCVTAToLocal(MachineInstr &Root) { in CombineCVTAToLocal() argument
105 auto &MBB = *Root.getParent(); in CombineCVTAToLocal()
109 auto &Prev = *MRI.getUniqueVRegDef(Root.getOperand(1).getReg()); in CombineCVTAToLocal()
112 BuildMI(MF, Root.getDebugLoc(), TII->get(Prev.getOpcode()), in CombineCVTAToLocal()
113 Root.getOperand(0).getReg()) in CombineCVTAToLocal()
[all …]
/netbsd-src/crypto/external/bsd/openssl.old/dist/test/
H A Ddanetest.in38 # subject= CN = Root CA
192 issuer= /CN=Root CA
205 subject= /CN=Root CA
206 issuer= /CN=Root CA
239 issuer= /CN=Root CA
252 subject= /CN=Root CA
253 issuer= /CN=Root CA
286 issuer= /CN=Root CA
299 subject= /CN=Root CA
300 issuer= /CN=Root CA
[all …]
/netbsd-src/crypto/external/bsd/openssl/dist/test/
H A Ddanetest.in38 # subject= CN = Root CA
222 issuer= /CN=Root CA
235 subject= /CN=Root CA
236 issuer= /CN=Root CA
269 issuer= /CN=Root CA
282 subject= /CN=Root CA
283 issuer= /CN=Root CA
316 issuer= /CN=Root CA
329 subject= /CN=Root CA
330 issuer= /CN=Root CA
[all …]
/netbsd-src/external/mpl/mozilla-certdata/dist/
H A Dcertdata.txt75 # Certificate "GlobalSign Root CA"
77 # Issuer: CN=GlobalSign Root CA,OU=Root CA,O=GlobalSign nv-sa,C=BE
79 # Subject: CN=GlobalSign Root CA,OU=Root CA,O=GlobalSign nv-sa,C=BE
88 CKA_LABEL UTF8 "GlobalSign Root CA"
172 # Trust for "GlobalSign Root CA"
173 # Issuer: CN=GlobalSign Root CA,OU=Root CA,O=GlobalSign nv-sa,C=BE
175 # Subject: CN=GlobalSign Root C
[all...]
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/Interp/
H A DInterpBlock.cpp63 DeadBlock::DeadBlock(DeadBlock *&Root, Block *Blk) in DeadBlock() argument
64 : Root(Root), B(Blk->Desc, Blk->IsStatic, Blk->IsExtern, /*isDead=*/true) { in DeadBlock()
66 if (Root) in DeadBlock()
67 Root->Prev = this; in DeadBlock()
69 Next = Root; in DeadBlock()
71 Root = this; in DeadBlock()
84 if (Root == this) in free()
85 Root = Next; in free()
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/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()
739 if (auto *Leaf = dyn_cast<RopePieceBTreeLeaf>(getRoot(Root))) in clear()
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()
753 if (RopePieceBTreeNode *RHS = getRoot(Root)->insert(Offset, R)) in insert()
[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()
/netbsd-src/external/apache2/llvm/dist/clang/utils/TableGen/
H A DClangASTNodesEmitter.cpp37 ASTNode Root; member in __anon24f475500111::ClangASTNodesEmitter
52 assert(Root && "root node not yet derived!"); in macroHierarchyName()
54 MacroHierarchyName = macroName(std::string(Root.getName())); in macroHierarchyName()
62 if (node == Root && !BaseSuffix.empty()) in baseName()
133 if (Base == Root) in EmitNode()
145 assert(!Root && "already computed tree"); in deriveChildTree()
156 else if (Root) in deriveChildTree()
161 Root = R; in deriveChildTree()
164 if (!Root) in deriveChildTree()
190 EmitNode(OS, Root); in run()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
H A DAArch64InstrInfo.cpp4573 static bool getMaddPatterns(MachineInstr &Root, in getMaddPatterns() argument
4575 unsigned Opc = Root.getOpcode(); in getMaddPatterns()
4576 MachineBasicBlock &MBB = *Root.getParent(); in getMaddPatterns()
4582 int Cmp_NZCV = Root.findRegisterDefOperandIdx(AArch64::NZCV, true); in getMaddPatterns()
4586 unsigned NewOpc = convertToNonFlagSettingOpc(Root); in getMaddPatterns()
4596 if (canCombineWithMUL(MBB, Root.getOperand(Operand), Opcode, ZeroReg)) { in getMaddPatterns()
4603 if (canCombine(MBB, Root.getOperand(Operand), Opcode)) { in getMaddPatterns()
4615 assert(Root.getOperand(1).isReg() && Root.getOperand(2).isReg() && in getMaddPatterns()
4714 static bool getFMAPatterns(MachineInstr &Root, in getFMAPatterns() argument
4717 if (!isCombineInstrCandidateFP(Root)) in getFMAPatterns()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/lsan/
H A Dlsan_flags.inc28 "Root set: include global variables (.data and .bss)")
29 LSAN_FLAG(bool, use_stacks, true, "Root set: include thread stacks")
30 LSAN_FLAG(bool, use_registers, true, "Root set: include thread registers")
32 "Root set: include TLS and thread-specific storage")
34 "Root set: include regions added via __lsan_register_root_region().")
36 "Root set: mark as reachable all allocations made from dynamic "
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/lsan/
H A Dlsan_flags.inc30 "Root set: include global variables (.data and .bss)")
31 LSAN_FLAG(bool, use_stacks, true, "Root set: include thread stacks")
32 LSAN_FLAG(bool, use_registers, true, "Root set: include thread registers")
34 "Root set: include TLS and thread-specific storage")
36 "Root set: include regions added via __lsan_register_root_region().")
38 "Root set: mark as reachable all allocations made from dynamic "
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DMachineCombiner.cpp99 unsigned getLatency(MachineInstr *Root, MachineInstr *NewRoot,
102 improvesCriticalPathLen(MachineBasicBlock *MBB, MachineInstr *Root,
108 bool reduceRegisterPressure(MachineInstr &Root, MachineBasicBlock *MBB,
124 void verifyPatternOrder(MachineBasicBlock *MBB, MachineInstr &Root,
230 unsigned MachineCombiner::getLatency(MachineInstr *Root, MachineInstr *NewRoot, in getLatency() argument
251 if (UseMO && BlockTrace.isDepInTrace(*Root, *UseMO)) { in getLatency()
314 MachineInstr &Root, MachineBasicBlock *MBB, in reduceRegisterPressure() argument
331 MachineBasicBlock *MBB, MachineInstr *Root, in improvesCriticalPathLen() argument
342 unsigned RootDepth = BlockTrace.getInstrCycles(*Root).Depth; in improvesCriticalPathLen()
344 LLVM_DEBUG(dbgs() << " Dependence data for " << *Root << "\tNewRootDepth: " in improvesCriticalPathLen()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libsanitizer/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 "
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/IndexSerialization/
H A DSerializablePathCollection.h54 RootDirKind Root; member
57 DirPath(RootDirKind Root, const StringPool::StringOffsetSize &Path) in DirPath()
58 : Root(Root), Path(Path) {} in DirPath()
70 size_t addFilePath(RootDirKind Root, const StringPool::StringOffsetSize &Dir,
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/
H A DX86PartialReduction.cpp378 static void collectLeaves(Value *Root, SmallVectorImpl<Instruction *> &Leaves) { in collectLeaves() argument
381 Worklist.push_back(Root); in collectLeaves()
391 if (!PN->hasNUses(PN == Root ? 2 : 1)) in collectLeaves()
403 if (BO->hasNUses(BO == Root ? 2 : 1)) { in collectLeaves()
410 if (BO->hasNUses(BO == Root ? 3 : 2)) { in collectLeaves()
412 for (auto *U : Root->users()) in collectLeaves()
434 if (!V->hasNUses(I == Root ? 2 : 1)) in collectLeaves()
465 Value *Root = matchAddReduction(*EE); in runOnFunction() local
466 if (!Root) in runOnFunction()
470 collectLeaves(Root, Leaves); in runOnFunction()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
H A DARMParallelDSP.cpp63 Instruction *Root; member
72 Root(I), LHS(lhs), RHS(rhs) { } in MulCandidate()
86 Instruction *Root = nullptr; member in __anon5cd7b9340111::Reduction
95 Reduction (Instruction *Add) : Root(Add) { } in Reduction()
146 << *Mul0->Root << "\n" in AddMulPair()
147 << *Mul1->Root << "\n"); in AddMulPair()
160 Instruction *getRoot() { return Root; } in getRoot()
162 bool is64Bit() const { return Root->getType()->isIntegerTy(64); } in is64Bit()
164 Type *getType() const { return Root->getType(); } in getType()
182 Root->replaceAllUsesWith(SMLAD); in UpdateRoot()
[all …]

12345678910>>...14