Home
last modified time | relevance | path

Searched refs:Handles (Results 1 – 25 of 28) sorted by relevance

12

/src/contrib/llvm-project/llvm/lib/Support/
H A DDynamicLibrary.cpp27 HandleList Handles; member in DynamicLibrary::HandleSet
38 HandleList::iterator Find(void *Handle) { return find(Handles, Handle); } in Find()
41 return Handle == Process || Find(Handle) != Handles.end(); in Contains()
53 if (!AllowDuplicates && Find(Handle) != Handles.end()) { in AddLibrary()
58 Handles.push_back(Handle); in AddLibrary()
76 if (it != Handles.end()) { in CloseLibrary()
77 Handles.erase(it); in CloseLibrary()
83 for (void *Handle : Handles) { in LibLookup()
88 for (void *Handle : llvm::reverse(Handles)) { in LibLookup()
/src/contrib/llvm-project/llvm/lib/Analysis/
H A DGlobalsModRef.cpp236 GAR->Handles.erase(I); in deleted()
269 Handles.emplace_front(*this, &F); in AnalyzeGlobals()
270 Handles.front().I = Handles.begin(); in AnalyzeGlobals()
283 Handles.emplace_front(*this, &GV); in AnalyzeGlobals()
284 Handles.front().I = Handles.begin(); in AnalyzeGlobals()
288 Handles.emplace_front(*this, Reader); in AnalyzeGlobals()
289 Handles.front().I = Handles.begin(); in AnalyzeGlobals()
297 Handles.emplace_front(*this, Writer); in AnalyzeGlobals()
298 Handles.front().I = Handles.begin(); in AnalyzeGlobals()
466 Handles.emplace_front(*this, AllocRelatedValues.back()); in AnalyzeIndirectGlobalMemory()
[all …]
H A DBranchProbabilityInfo.cpp1060 Handles.clear(); in releaseMemory()
1139 Handles.insert(BasicBlockCallbackVH(Src, this)); in setEdgeProbability()
1169 Handles.insert(BasicBlockCallbackVH(Dst, this)); in copyEdgeProbabilities()
1211 Handles.erase(BasicBlockCallbackVH(BB, this)); in eraseBlock()
/src/contrib/llvm-project/llvm/lib/Support/Windows/
H A DDynamicLibrary.inc25 for (void *Handle : llvm::reverse(Handles))
98 // | Handles | DbgHelp.dll | CreateSnapshot | EnumProcessModulesEx
119 std::vector<HMODULE> Handles;
123 Handles.resize(Bytes / sizeof(HMODULE));
124 if (!GetProcessModules(Self, Bytes, Handles.data()))
126 } while (Bytes != (Handles.size() * sizeof(HMODULE)));
129 if (FARPROC Ptr = GetProcAddress(HMODULE(Handles.front()), Symbol))
132 if (Handles.size() > 1) {
139 for (auto I = Handles.rbegin(), E = Handles.rend() - 1; I != E; ++I) {
/src/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DBranchProbabilityInfo.h125 : Handles(std::move(Arg.Handles)), Probs(std::move(Arg.Probs)), in BranchProbabilityInfo()
128 for (auto &Handle : Handles) in BranchProbabilityInfo()
137 Handles = std::move(RHS.Handles);
140 for (auto &Handle : Handles)
324 DenseSet<BasicBlockCallbackVH, DenseMapInfo<Value*>> Handles; variable
H A DGlobalsModRef.h73 std::list<DeletionCallbackHandle> Handles; variable
/src/contrib/llvm-project/llvm/lib/IR/
H A DValue.cpp1152 DenseMap<Value*, ValueHandleBase*> &Handles = pImpl->ValueHandles; in AddToUseList() local
1153 const void *OldBucketPtr = Handles.getPointerIntoBucketsArray(); in AddToUseList()
1155 ValueHandleBase *&Entry = Handles[getValPtr()]; in AddToUseList()
1162 if (Handles.isPointerIntoBucketsArray(OldBucketPtr) || in AddToUseList()
1163 Handles.size() == 1) { in AddToUseList()
1168 for (DenseMap<Value*, ValueHandleBase*>::iterator I = Handles.begin(), in AddToUseList()
1169 E = Handles.end(); I != E; ++I) { in AddToUseList()
1195 DenseMap<Value*, ValueHandleBase*> &Handles = pImpl->ValueHandles; in RemoveFromUseList() local
1196 if (Handles.isPointerIntoBucketsArray(PrevPtr)) { in RemoveFromUseList()
1197 Handles.erase(getValPtr()); in RemoveFromUseList()
/src/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DFuchsiaHandleChecker.cpp336 SmallVector<SymbolRef, 1024> Handles = in checkPreCall() local
344 for (SymbolRef Handle : Handles) { in checkPreCall()
417 SmallVector<SymbolRef, 1024> Handles = in checkPostCall() local
420 for (SymbolRef Handle : Handles) { in checkPostCall()
584 SmallVector<SymbolRef, 1024> Handles = in checkPointerEscape() local
586 for (SymbolRef Handle : Handles) { in checkPointerEscape()
/src/contrib/llvm-project/clang/lib/DirectoryWatcher/windows/
H A DDirectoryWatcher-windows.cpp168 HANDLE Handles[2] = { Terminate, Overlapped.hEvent }; in WatcherThreadProc() local
169 switch (WaitForMultipleObjects(2, Handles, FALSE, INFINITE)) { in WatcherThreadProc()
/src/contrib/googletest/googlemock/
H A DREADME.md21 - Handles functions of arbitrary types and overloaded functions.
/src/contrib/pam-krb5/m4/
H A Dlib-helper.m4102 dnl Handles --with options for a non-optional library. First argument is the
123 dnl Handles --with options for an optional library, so --with-<library> can
/src/sys/tools/syscalls/
H A DREADME.md49 * `generator.lua` - Handles file generation for the library.
/src/sys/contrib/device-tree/Bindings/mmc/
H A Dsdhci-am654.txt18 - clocks: Handles to the clock inputs.
H A Darasan,sdhci.txt40 - clocks: From clock bindings: Handles to clock inputs.
/src/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGISel.cpp2230 std::list<HandleSDNode> Handles; in SelectInlineAsmMemoryOperands() local
2232 Handles.emplace_back(Ops[InlineAsm::Op_InputChain]); // 0 in SelectInlineAsmMemoryOperands()
2233 Handles.emplace_back(Ops[InlineAsm::Op_AsmString]); // 1 in SelectInlineAsmMemoryOperands()
2234 Handles.emplace_back(Ops[InlineAsm::Op_MDNode]); // 2, !srcloc in SelectInlineAsmMemoryOperands()
2235 Handles.emplace_back( in SelectInlineAsmMemoryOperands()
2246 Handles.insert(Handles.end(), Ops.begin() + i, in SelectInlineAsmMemoryOperands()
2277 Handles.emplace_back(CurDAG->getTargetConstant(Flags, DL, MVT::i32)); in SelectInlineAsmMemoryOperands()
2278 Handles.insert(Handles.end(), SelOps.begin(), SelOps.end()); in SelectInlineAsmMemoryOperands()
2285 Handles.emplace_back(Ops.back()); in SelectInlineAsmMemoryOperands()
2288 for (auto &handle : Handles) in SelectInlineAsmMemoryOperands()
H A DTargetLowering.cpp7273 std::list<HandleSDNode> Handles; in getNegatedExpression() local
7345 Handles.emplace_back(NegX); in getNegatedExpression()
7353 Handles.clear(); in getNegatedExpression()
7401 Handles.emplace_back(NegX); in getNegatedExpression()
7409 Handles.clear(); in getNegatedExpression()
7449 Handles.emplace_back(NegZ); in getNegatedExpression()
7457 Handles.emplace_back(NegX); in getNegatedExpression()
7465 Handles.clear(); in getNegatedExpression()
7512 Handles.emplace_back(NegLHS); in getNegatedExpression()
7520 Handles.clear(); in getNegatedExpression()
/src/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMCallingConv.td21 // Handles byval parameters.
161 // Handles byval parameters.
209 // Handles byval parameters.
/src/contrib/llvm-project/llvm/lib/Target/M68k/
H A DM68kCallingConv.td59 /// Handles byval parameters.
/src/contrib/llvm-project/llvm/lib/Support/Unix/
H A DDynamicLibrary.inc18 for (void *Handle : llvm::reverse(Handles))
/src/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86CallingConv.td115 // Handles byval parameters.
534 // Handles byval parameters.
834 // Handles byval/preallocated parameters.
904 // Handles byval parameters. Note that, like FastCC, we can't rely on
975 // Handles byval parameters. Note that we can't rely on the delegation
/src/contrib/libxo/doc/
H A Dapi.rst9 .. index:: Handles
12 Handles chapter
19 Handles give an abstraction for libxo that encapsulates the state of a
20 stream of output. Handles have the data type "`xo_handle_t`" and are
44 Handles are created using `xo_create` and destroy using
/src/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsCallingConv.td262 // Handles byval parameters.
/src/libexec/rc/
H A Dnetwork.subr827 # Helper function for ifalias_expand_addr(). Handles IPv4.
916 # Helper function for ifalias_expand_addr(). Handles IPv6.
/src/crypto/openssl/doc/designs/quic-design/
H A Dglossary.md251 **RXDP:** RX depacketiser. Handles frames in packets which have been decrypted
/src/crypto/heimdal/lib/hx509/
H A DChangeLog2745 * Import mostly complete X.509 and CMS library. Handles, PEM, DER,

12