Home
last modified time | relevance | path

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

12345678910>>...15

/openbsd-src/gnu/llvm/llvm/include/llvm/ADT/
H A DImmutableMap.h74 IntrusiveRefCntPtr<TreeTy> Root;
81 explicit ImmutableMap(const TreeTy *R) : Root(const_cast<TreeTy *>(R)) {} in ImmutableMap()
100 TreeTy *T = F.add(Old.Root.get(), std::pair<key_type, data_type>(K, D)); in add()
105 TreeTy *T = F.remove(Old.Root.get(), K); in remove()
115 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())
124 : Root != RHS.Root;
128 if (Root) { Root->retain(); } in getRoot()
129 return Root.get(); in getRoot()
[all …]
H A DImmutableSet.h657 ImutAVLTreeGenericIterator(const TreeTy *Root) {
658 if (Root) stack.push_back(reinterpret_cast<uintptr_t>(Root));
769 ImutAVLTreeInOrderIterator(const TreeTy* Root) : InternalItr(Root) {
770 if (Root)
964 IntrusiveRefCntPtr<TreeTy> Root;
971 explicit ImmutableSet(TreeTy *R) : Root(R) {}
1000 TreeTy *NewT = F.add(Old.Root.get(), V);
1012 TreeTy *NewT = F.remove(Old.Root.get(), V);
1027 return Root ? Root->contains(V) : false;
1031 return Root && RHS.Root ? Root->isEqual(*RHS.Root.get()) : Root == RHS.Root;
[all …]
H A DIntervalTree.h287 IntervalNode *Root = nullptr; // Interval tree root. variable
390 IntervalNode *Root = in createTree() local
403 Root->BucketIntervalsSize = ++NewBucketSize; in createTree()
438 Root->Left = createTree(IntervalsSize, PointsBeginIndex, MiddleIndex - 1, in createTree()
443 Root->Right = createTree(IntervalsSize, MiddleIndex + 1, PointsEndIndex, in createTree()
447 return Root; in createTree()
597 bool empty() const { return Root == nullptr; } in empty()
601 deleteTree(Root); in clear()
602 Root = nullptr; in clear()
643 printTree(OS, 0, Root, HexFormat);
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/
H A DAMDGPUInstructionSelector.h150 selectVOP3ModsImpl(MachineOperand &Root, bool AllowAbs = true,
154 MachineOperand Root, MachineInstr *InsertPt,
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;
[all …]
/openbsd-src/gnu/llvm/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 sys::fs::make_absolute(Root); in createReproducerDir()
24 return EC ? "" : std::string(Root); in createReproducerDir()
32 : Root(createReproducerDir(EC)), GenerateOnExit(GenerateOnExit) { in ReproducerGenerate()
35 if (!Root.empty()) in ReproducerGenerate()
36 FC = std::make_shared<FileCollector>(Root, Root); in ReproducerGenerate()
50 SmallString<128> Mapping(Root); in generate()
[all …]
H A DReproducer.h41 createReproducer(ReproducerMode Mode, StringRef Root, int Argc, char **Argv);
60 std::string Root;
80 ReproducerUse(StringRef Root, std::error_code &EC);
85 std::string Root;
/openbsd-src/gnu/llvm/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()
114 auto &Prev = *MRI.getUniqueVRegDef(Root.getOperand(1).getReg()); in CombineCVTAToLocal()
120 BuildMI(MF, Root.getDebugLoc(), TII->get(Prev.getOpcode()), in CombineCVTAToLocal()
121 Root.getOperand(0).getReg()) in CombineCVTAToLocal()
[all …]
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/clang/utils/TableGen/
H A DClangASTNodesEmitter.cpp37 ASTNode Root; member in __anoncc2a141c0111::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()
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/llvm/lib/Target/AArch64/
H A DAArch64InstrInfo.cpp5055 static bool getMaddPatterns(MachineInstr &Root, in getMaddPatterns() argument
5057 unsigned Opc = Root.getOpcode(); in getMaddPatterns()
5058 MachineBasicBlock &MBB = *Root.getParent(); in getMaddPatterns()
5064 int Cmp_NZCV = Root.findRegisterDefOperandIdx(AArch64::NZCV, true); in getMaddPatterns()
5068 unsigned NewOpc = convertToNonFlagSettingOpc(Root); in getMaddPatterns()
5078 if (canCombineWithMUL(MBB, Root.getOperand(Operand), Opcode, ZeroReg)) { in getMaddPatterns()
5085 if (canCombine(MBB, Root.getOperand(Operand), Opcode)) { in getMaddPatterns()
5097 assert(Root.getOperand(1).isReg() && Root.getOperand(2).isReg() && in getMaddPatterns()
5196 static bool getFMAPatterns(MachineInstr &Root, in getFMAPatterns() argument
5199 if (!isCombineInstrCandidateFP(Root)) in getFMAPatterns()
[all …]
/openbsd-src/gnu/usr.bin/perl/dist/Safe/t/
H A Dsafe2.t23 $Root::foo = "visible";
27 $Root::foo .= "";
85 $Root::foo = "not ok 17";
88 @Root::bar = "ok";
89 push(@Root::bar, "18"); # Two steps to prevent "Identifier used only once..."
91 is($Root::foo, 'ok 17');
/openbsd-src/gnu/llvm/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 "
/openbsd-src/gnu/usr.bin/perl/dist/Safe/
H A DSafe.pm157 $obj->{Root} = $root;
161 $obj->{Root} = "Safe::Root".$default_root++;
166 # XXX perhaps new Safe 'Root', mask => $mask, foo => bar, ...;
178 Opcode::_safe_pkg_prep($obj->{Root}) if($Opcode::VERSION > 1.04);
234 return $obj->{Root};
362 my $root = $obj->{Root};
436 ? Opcode::_safe_call_sv($obj->{Root}, $obj->{Mask}, $sub_with_args)
437 : scalar Opcode::_safe_call_sv($obj->{Root}, $obj->{Mask}, $sub_with_args);
439 _clean_stash($obj->{Root}
[all...]
/openbsd-src/gnu/llvm/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,
/openbsd-src/regress/lib/libcrypto/certs/6a/
H A Droots.pem1 subject= CN = LibreSSL Test Root CA 1
2 issuer= CN = LibreSSL Test Root CA 1
22 subject= CN = LibreSSL Test Root CA 2
23 issuer= CN = LibreSSL Test Root CA 2
/openbsd-src/regress/lib/libcrypto/certs/10a/
H A Droots.pem1 subject= CN = LibreSSL Test Root CA 1
2 issuer= CN = LibreSSL Test Root CA 1
22 subject= CN = LibreSSL Test Root CA 2
23 issuer= CN = LibreSSL Test Root CA 2
/openbsd-src/regress/lib/libcrypto/certs/7a/
H A Droots.pem1 subject= CN = LibreSSL Test Root CA 1
2 issuer= CN = LibreSSL Test Root CA 1
22 subject= CN = LibreSSL Test Root CA 2
23 issuer= CN = LibreSSL Test Root CA 2
/openbsd-src/regress/lib/libcrypto/certs/7b/
H A Droots.pem1 subject= CN = LibreSSL Test Root CA 1
2 issuer= CN = LibreSSL Test Root CA 1
22 subject= CN = LibreSSL Test Root CA 2
23 issuer= CN = LibreSSL Test Root CA 2
/openbsd-src/regress/lib/libcrypto/certs/4e/
H A Droots.pem1 subject= CN = LibreSSL Test Root CA 1
2 issuer= CN = LibreSSL Test Root CA 1
22 subject= CN = LibreSSL Test Root CA 2
23 issuer= CN = LibreSSL Test Root CA 2
/openbsd-src/regress/lib/libcrypto/certs/10b/
H A Droots.pem1 subject= CN = LibreSSL Test Root CA 1
2 issuer= CN = LibreSSL Test Root CA 1
22 subject= CN = LibreSSL Test Root CA 2
23 issuer= CN = LibreSSL Test Root CA 2
/openbsd-src/regress/lib/libcrypto/certs/4f/
H A Droots.pem1 subject= CN = LibreSSL Test Root CA 1
2 issuer= CN = LibreSSL Test Root CA 1
22 subject= CN = LibreSSL Test Root CA 2
23 issuer= CN = LibreSSL Test Root CA 2
/openbsd-src/regress/lib/libcrypto/certs/4d/
H A Droots.pem1 subject= CN = LibreSSL Test Root CA 1
2 issuer= CN = LibreSSL Test Root CA 1
22 subject= CN = LibreSSL Test Root CA 2
23 issuer= CN = LibreSSL Test Root CA 2

12345678910>>...15