Home
last modified time | relevance | path

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

12345678910>>...15

/netbsd/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A DImmutableMap.h114 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())
127 if (Root) { Root->retain(); } in getRoot()
134 if (Root) Root->retain(); in manualRetain()
138 if (Root) Root->release(); in manualRelease()
271 if (Root) Root->retain(); in manualRetain()
275 if (Root) Root->release(); in manualRelease()
290 return Root ? Root->contains(K) : false; in contains()
298 return Root && RHS.Root ? Root->isEqual(*RHS.Root.get()) : Root == RHS.Root;
[all …]
H A DImmutableSet.h783 if (Root)
1040 return Root ? Root->contains(V) : false;
1044 return Root && RHS.Root ? Root->isEqual(*RHS.Root.get()) : Root == RHS.Root;
1048 return Root && RHS.Root ? Root->isNotEqual(*RHS.Root.get())
1049 : Root != RHS.Root;
1053 if (Root) { Root->retain(); }
1067 void foreach(Callback& C) { if (Root) Root->foreach(C); }
1134 return Root ? Root->contains(V) : false;
1145 return Root && RHS.Root ? Root->isEqual(*RHS.Root.get()) : Root == RHS.Root;
1149 return Root && RHS.Root ? Root->isNotEqual(*RHS.Root.get())
[all …]
/netbsd/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DAMDGPUInstructionSelector.h158 selectVCSRC(MachineOperand &Root) const;
161 selectVSRC0(MachineOperand &Root) const;
164 selectVOP3Mods0(MachineOperand &Root) const;
168 selectVOP3OMods(MachineOperand &Root) const;
170 selectVOP3Mods(MachineOperand &Root) const;
172 selectVOP3BMods(MachineOperand &Root) const;
183 selectVOP3PMods(MachineOperand &Root) const;
189 selectSmrdImm(MachineOperand &Root) const;
191 selectSmrdImm32(MachineOperand &Root) const;
193 selectSmrdSgpr(MachineOperand &Root) const;
[all …]
H A DAMDGPUInstructionSelector.cpp3192 Register Src = Root.getReg(); in selectVOP3ModsImpl()
3298 Register Reg = Root.getReg(); in selectVOP3NoMods()
3413 MachineInstr *MI = Root.getParent(); in selectSmrdSgpr()
3518 Register Addr = Root.getReg(); in selectGlobalSAddr()
3635 Register Addr = Root.getReg(); in selectScratchSAddr()
3739 Register VAddr = Root.getReg(); in selectMUBUFScratchOffen()
3810 MachineOperand &Root) const { in selectMUBUFScratchOffset()
3881 return selectDSReadWrite2(Root, 4); in selectDS64Bit4ByteAligned()
3886 return selectDSReadWrite2(Root, 8); in selectDS128Bit8ByteAligned()
3943 return {Root, 0}; in getPtrBaseWithConstantOffset()
[all …]
/netbsd/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()
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()
49 SmallString<128> Mapping(Root); in ReproducerUse()
[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/external/bsd/libc++/dist/libcxxrt/test/
H A Dtest_typeinfo.cc12 struct Root struct
24 struct Sub1 : public Root argument
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()
82 Root *up = &diamond; in test_type_info()
88 b = dynamic_cast<Root*>(f); in test_type_info()
[all …]
/netbsd/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/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()
112 BuildMI(MF, Root.getDebugLoc(), TII->get(Prev.getOpcode()), in CombineCVTAToLocal()
113 Root.getOperand(0).getReg()) in CombineCVTAToLocal()
117 MBB.insert((MachineBasicBlock::iterator)&Root, MIB); in CombineCVTAToLocal()
[all …]
/netbsd/crypto/external/bsd/openssl.old/dist/test/
H A Ddanetest.in192 issuer= /CN=Root CA
206 issuer= /CN=Root CA
239 issuer= /CN=Root CA
253 issuer= /CN=Root CA
286 issuer= /CN=Root CA
300 issuer= /CN=Root CA
333 issuer= /CN=Root CA
347 issuer= /CN=Root CA
380 issuer= /CN=Root CA
394 issuer= /CN=Root CA
[all …]
/netbsd/crypto/external/bsd/openssl/dist/test/
H A Ddanetest.in192 issuer= /CN=Root CA
206 issuer= /CN=Root CA
239 issuer= /CN=Root CA
253 issuer= /CN=Root CA
286 issuer= /CN=Root CA
300 issuer= /CN=Root CA
333 issuer= /CN=Root CA
347 issuer= /CN=Root CA
380 issuer= /CN=Root CA
394 issuer= /CN=Root CA
[all …]
/netbsd/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/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/external/apache2/llvm/dist/clang/utils/TableGen/
H A DClangASTNodesEmitter.cpp37 ASTNode Root; member in __anonc2b5c8e60111::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/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()
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()
/netbsd/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
H A DAArch64InstrInfo.cpp4575 unsigned Opc = Root.getOpcode(); in getMaddPatterns()
4615 assert(Root.getOperand(1).isReg() && Root.getOperand(2).isReg() && in getMaddPatterns()
4734 switch (Root.getOpcode()) { in getFMAPatterns()
4739 assert(Root.getOperand(1).isReg() && Root.getOperand(2).isReg() && in getFMAPatterns()
4746 assert(Root.getOperand(1).isReg() && Root.getOperand(2).isReg() && in getFMAPatterns()
4976 if (getFMAPatterns(Root, Patterns)) in getMachineCombinerPatterns()
5086 .add(Root.getOperand(2)); in genNeg()
5269 if (Root.getOperand(3).isImm()) { in genAlternativeCodeSequence()
5313 .add(Root.getOperand(2)); in genAlternativeCodeSequence()
5360 if (Root.getOperand(3).isImm()) { in genAlternativeCodeSequence()
[all …]
/netbsd/external/gpl3/gcc/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/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/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/external/bsd/tcpdump/dist/tests/
H A Dmstp-v.out2 port-role Root, CIST root-id 0000.00:1f:27:b4:7d:80, CIST ext-pathcost 200000
11 MSTI 2, Flags [Learn, Forward, Agreement, Topology change ACK], port-role Root
21 MSTI 1, Flags [Learn, Forward, Agreement, Topology change ACK], port-role Root
28 port-role Root, CIST root-id 0000.00:1f:27:b4:7d:80, CIST ext-pathcost 200000
37 MSTI 2, Flags [Learn, Forward, Agreement, Topology change ACK], port-role Root
47 MSTI 1, Flags [Learn, Forward, Agreement, Topology change ACK], port-role Root
54 port-role Root, CIST root-id 0000.00:1f:27:b4:7d:80, CIST ext-pathcost 200000
63 MSTI 2, Flags [Learn, Forward, Agreement, Topology change ACK], port-role Root
73 MSTI 1, Flags [Learn, Forward, Agreement, Topology change ACK], port-role Root
80 port-role Root, CIST root-id 0000.00:1f:27:b4:7d:80, CIST ext-pathcost 200000
[all …]
/netbsd/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DMachineCombiner.cpp99 unsigned getLatency(MachineInstr *Root, MachineInstr *NewRoot,
102 improvesCriticalPathLen(MachineBasicBlock *MBB, MachineInstr *Root,
124 void verifyPatternOrder(MachineBasicBlock *MBB, MachineInstr &Root,
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()
369 unsigned RootSlack = BlockTrace.getInstrSlack(*Root); in improvesCriticalPathLen()
510 MachineBasicBlock *MBB, MachineInstr &Root, in verifyPatternOrder() argument
518 TII->genAlternativeCodeSequence(Root, P, InsInstrs, DelInstrs, in verifyPatternOrder()
[all …]
/netbsd/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/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/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 __anon7825898a0111::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()
182 Root->replaceAllUsesWith(SMLAD); in UpdateRoot()
616 const Instruction *Mul0 = PMul0->Root; in CreateParallelPairs()
617 const Instruction *Mul1 = PMul1->Root; in CreateParallelPairs()
[all …]

12345678910>>...15