| /freebsd/contrib/llvm-project/llvm/lib/Support/ |
| H A D | DynamicLibrary.cpp | 27 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()
|
| /freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | GlobalsModRef.cpp | 236 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 D | BranchProbabilityInfo.cpp | 1056 Handles.clear(); in releaseMemory() 1135 Handles.insert(BasicBlockCallbackVH(Src, this)); in setEdgeProbability() 1165 Handles.insert(BasicBlockCallbackVH(Dst, this)); in copyEdgeProbabilities() 1209 Handles.erase(BasicBlockCallbackVH(BB, this)); in eraseBlock()
|
| /freebsd/contrib/llvm-project/llvm/lib/Support/Windows/ |
| H A D | DynamicLibrary.inc | 25 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) {
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | BranchProbabilityInfo.h | 125 : 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) 326 DenseSet<BasicBlockCallbackVH, DenseMapInfo<Value*>> Handles; variable
|
| H A D | GlobalsModRef.h | 74 std::list<DeletionCallbackHandle> Handles; variable
|
| /freebsd/contrib/llvm-project/llvm/lib/IR/ |
| H A D | Value.cpp | 1180 DenseMap<Value*, ValueHandleBase*> &Handles = pImpl->ValueHandles; in AddToUseList() local 1181 const void *OldBucketPtr = Handles.getPointerIntoBucketsArray(); in AddToUseList() 1183 ValueHandleBase *&Entry = Handles[getValPtr()]; in AddToUseList() 1190 if (Handles.isPointerIntoBucketsArray(OldBucketPtr) || in AddToUseList() 1191 Handles.size() == 1) { in AddToUseList() 1196 for (DenseMap<Value*, ValueHandleBase*>::iterator I = Handles.begin(), in AddToUseList() 1197 E = Handles.end(); I != E; ++I) { in AddToUseList() 1223 DenseMap<Value*, ValueHandleBase*> &Handles = pImpl->ValueHandles; in RemoveFromUseList() local 1224 if (Handles.isPointerIntoBucketsArray(PrevPtr)) { in RemoveFromUseList() 1225 Handles.erase(getValPtr()); in RemoveFromUseList()
|
| /freebsd/contrib/llvm-project/clang/lib/DirectoryWatcher/windows/ |
| H A D | DirectoryWatcher-windows.cpp | 168 HANDLE Handles[2] = { Terminate, Overlapped.hEvent }; in WatcherThreadProc() local 169 switch (WaitForMultipleObjects(2, Handles, FALSE, INFINITE)) { in WatcherThreadProc()
|
| /freebsd/contrib/googletest/googlemock/ |
| H A D | README.md | 21 - Handles functions of arbitrary types and overloaded functions.
|
| /freebsd/contrib/pam-krb5/m4/ |
| H A D | lib-helper.m4 | 102 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
|
| /freebsd/sys/tools/syscalls/ |
| H A D | README.md | 49 * `generator.lua` - Handles file generation for the library.
|
| /freebsd/sys/contrib/device-tree/Bindings/mmc/ |
| H A D | sdhci-am654.txt | 18 - clocks: Handles to the clock inputs.
|
| H A D | arasan,sdhci.txt | 40 - clocks: From clock bindings: Handles to clock inputs.
|
| /freebsd/contrib/llvm-project/llvm/lib/Support/Unix/ |
| H A D | DynamicLibrary.inc | 18 for (void *Handle : llvm::reverse(Handles))
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/M68k/ |
| H A D | M68kCallingConv.td | 59 /// Handles byval parameters.
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | SelectionDAGISel.cpp | 2258 std::list<HandleSDNode> Handles; in SelectInlineAsmMemoryOperands() local 2260 Handles.emplace_back(Ops[InlineAsm::Op_InputChain]); // 0 in SelectInlineAsmMemoryOperands() 2261 Handles.emplace_back(Ops[InlineAsm::Op_AsmString]); // 1 in SelectInlineAsmMemoryOperands() 2262 Handles.emplace_back(Ops[InlineAsm::Op_MDNode]); // 2, !srcloc in SelectInlineAsmMemoryOperands() 2263 Handles.emplace_back( in SelectInlineAsmMemoryOperands() 2274 Handles.insert(Handles.end(), Ops.begin() + i, in SelectInlineAsmMemoryOperands() 2305 Handles.emplace_back(CurDAG->getTargetConstant(Flags, DL, MVT::i32)); in SelectInlineAsmMemoryOperands() 2306 llvm::append_range(Handles, SelOps); in SelectInlineAsmMemoryOperands() 2313 Handles.emplace_back(Ops.back()); in SelectInlineAsmMemoryOperands() 2316 for (auto &handle : Handles) in SelectInlineAsmMemoryOperands()
|
| H A D | TargetLowering.cpp | 7492 std::list<HandleSDNode> Handles; in getNegatedExpression() local 7564 Handles.emplace_back(NegX); in getNegatedExpression() 7572 Handles.clear(); in getNegatedExpression() 7620 Handles.emplace_back(NegX); in getNegatedExpression() 7628 Handles.clear(); in getNegatedExpression() 7668 Handles.emplace_back(NegZ); in getNegatedExpression() 7676 Handles.emplace_back(NegX); in getNegatedExpression() 7684 Handles.clear(); in getNegatedExpression() 7731 Handles.emplace_back(NegLHS); in getNegatedExpression() 7739 Handles.clear(); in getNegatedExpression()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/ARM/ |
| H A D | ARMCallingConv.td | 21 // Handles byval parameters. 162 // Handles byval parameters. 210 // Handles byval parameters.
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86CallingConv.td | 115 // Handles byval parameters. 523 // Handles byval parameters. 813 // Handles byval/preallocated parameters. 880 // Handles byval parameters. Note that, like FastCC, we can't rely on 951 // Handles byval parameters. Note that we can't rely on the delegation
|
| /freebsd/contrib/libxo/doc/ |
| H A D | api.rst | 9 .. 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
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/Mips/ |
| H A D | MipsCallingConv.td | 262 // Handles byval parameters.
|
| /freebsd/libexec/rc/ |
| H A D | network.subr | 827 # Helper function for ifalias_expand_addr(). Handles IPv4. 916 # Helper function for ifalias_expand_addr(). Handles IPv6.
|
| /freebsd/crypto/openssl/doc/designs/quic-design/ |
| H A D | glossary.md | 251 **RXDP:** RX depacketiser. Handles frames in packets which have been decrypted
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | IntrinsicsNVVM.td | 163 // Handles empty strings.
|
| /freebsd/crypto/heimdal/lib/hx509/ |
| H A D | ChangeLog | 2745 * Import mostly complete X.509 and CMS library. Handles, PEM, DER,
|