Home
last modified time | relevance | path

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

1234

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DDynamicLibrary.cpp31 HandleList Handles; member in DynamicLibrary::HandleSet
43 return std::find(Handles.begin(), Handles.end(), Handle); in Find()
47 return Handle == Process || Find(Handle) != Handles.end(); in Contains()
56 if (Find(Handle) != Handles.end()) { in AddLibrary()
61 Handles.push_back(Handle); in AddLibrary()
78 for (void *Handle : Handles) { in LibLookup()
83 for (void *Handle : llvm::reverse(Handles)) { in LibLookup()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DGlobalsModRef.cpp240 GAR->Handles.erase(I); in deleted()
295 Handles.emplace_front(*this, &F); in AnalyzeGlobals()
296 Handles.front().I = Handles.begin(); in AnalyzeGlobals()
309 Handles.emplace_front(*this, &GV); in AnalyzeGlobals()
310 Handles.front().I = Handles.begin(); in AnalyzeGlobals()
314 Handles.emplace_front(*this, Reader); in AnalyzeGlobals()
315 Handles.front().I = Handles.begin(); in AnalyzeGlobals()
323 Handles.emplace_front(*this, Writer); in AnalyzeGlobals()
324 Handles.front().I = Handles.begin(); in AnalyzeGlobals()
460 Handles.emplace_front(*this, AllocRelatedValues.back()); in AnalyzeIndirectGlobalMemory()
[all …]
DCFLSteensAliasAnalysis.cpp239 Handles.emplace_front(Fn, this); in scan()
/third_party/libuv/src/win/
Dpoll.c109 afd_poll_info->Handles[0].Handle = (HANDLE) handle->socket; in uv__fast_poll_submit_poll_req()
110 afd_poll_info->Handles[0].Status = 0; in uv__fast_poll_submit_poll_req()
111 afd_poll_info->Handles[0].Events = 0; in uv__fast_poll_submit_poll_req()
114 afd_poll_info->Handles[0].Events |= AFD_POLL_RECEIVE | in uv__fast_poll_submit_poll_req()
118 afd_poll_info->Handles[0].Events |= AFD_POLL_DISCONNECT; in uv__fast_poll_submit_poll_req()
122 afd_poll_info->Handles[0].Events |= AFD_POLL_SEND | AFD_POLL_CONNECT_FAIL; in uv__fast_poll_submit_poll_req()
168 if ((afd_poll_info->Handles[0].Events & (AFD_POLL_RECEIVE | in uv__fast_poll_process_poll_req()
171 if ((afd_poll_info->Handles[0].Events & AFD_POLL_DISCONNECT) != 0) { in uv__fast_poll_process_poll_req()
175 if ((afd_poll_info->Handles[0].Events & (AFD_POLL_SEND | in uv__fast_poll_process_poll_req()
182 if (afd_poll_info->Handles[0].Events & AFD_POLL_LOCAL_CLOSE) { in uv__fast_poll_process_poll_req()
[all …]
/third_party/node/deps/uv/src/win/
Dpoll.c107 afd_poll_info->Handles[0].Handle = (HANDLE) handle->socket; in uv__fast_poll_submit_poll_req()
108 afd_poll_info->Handles[0].Status = 0; in uv__fast_poll_submit_poll_req()
109 afd_poll_info->Handles[0].Events = 0; in uv__fast_poll_submit_poll_req()
112 afd_poll_info->Handles[0].Events |= AFD_POLL_RECEIVE | in uv__fast_poll_submit_poll_req()
116 afd_poll_info->Handles[0].Events |= AFD_POLL_DISCONNECT; in uv__fast_poll_submit_poll_req()
120 afd_poll_info->Handles[0].Events |= AFD_POLL_SEND | AFD_POLL_CONNECT_FAIL; in uv__fast_poll_submit_poll_req()
166 if ((afd_poll_info->Handles[0].Events & (AFD_POLL_RECEIVE | in uv__fast_poll_process_poll_req()
169 if ((afd_poll_info->Handles[0].Events & AFD_POLL_DISCONNECT) != 0) { in uv__fast_poll_process_poll_req()
173 if ((afd_poll_info->Handles[0].Events & (AFD_POLL_SEND | in uv__fast_poll_process_poll_req()
180 if (afd_poll_info->Handles[0].Events & AFD_POLL_LOCAL_CLOSE) { in uv__fast_poll_process_poll_req()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/Windows/
DDynamicLibrary.inc26 for (void *Handle : llvm::reverse(Handles))
101 // | Handles | DbgHelp.dll | CreateSnapshot | EnumProcessModulesEx
122 std::vector<HMODULE> Handles;
126 Handles.resize(Bytes / sizeof(HMODULE));
127 if (!GetProcessModules(Self, Bytes, Handles.data()))
129 } while (Bytes != (Handles.size() * sizeof(HMODULE)));
132 if (FARPROC Ptr = GetProcAddress(HMODULE(Handles.front()), Symbol))
135 if (Handles.size() > 1) {
142 for (auto I = Handles.rbegin(), E = Handles.rend()-1; I != E; ++I) {
/third_party/node/deps/cares/src/lib/
Dares_event_win32.c342 ed->afd_poll_info.Handles[0].Handle = (HANDLE)ed->base_socket; in ares_evsys_win32_afd_enqueue()
343 ed->afd_poll_info.Handles[0].Status = 0; in ares_evsys_win32_afd_enqueue()
344 ed->afd_poll_info.Handles[0].Events = 0; in ares_evsys_win32_afd_enqueue()
347 ed->afd_poll_info.Handles[0].Events |= in ares_evsys_win32_afd_enqueue()
352 ed->afd_poll_info.Handles[0].Events |= in ares_evsys_win32_afd_enqueue()
356 ed->afd_poll_info.Handles[0].Events |= AFD_POLL_DISCONNECT; in ares_evsys_win32_afd_enqueue()
561 if (ed->afd_poll_info.Handles[0].Events & in ares_evsys_win32_wait()
566 if (ed->afd_poll_info.Handles[0].Events & in ares_evsys_win32_wait()
Dares_event_win32.h92 AFD_POLL_HANDLE_INFO Handles[1]; member
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DValue.cpp821 DenseMap<Value*, ValueHandleBase*> &Handles = pImpl->ValueHandles; in AddToUseList() local
822 const void *OldBucketPtr = Handles.getPointerIntoBucketsArray(); in AddToUseList()
824 ValueHandleBase *&Entry = Handles[getValPtr()]; in AddToUseList()
831 if (Handles.isPointerIntoBucketsArray(OldBucketPtr) || in AddToUseList()
832 Handles.size() == 1) { in AddToUseList()
837 for (DenseMap<Value*, ValueHandleBase*>::iterator I = Handles.begin(), in AddToUseList()
838 E = Handles.end(); I != E; ++I) { in AddToUseList()
864 DenseMap<Value*, ValueHandleBase*> &Handles = pImpl->ValueHandles; in RemoveFromUseList() local
865 if (Handles.isPointerIntoBucketsArray(PrevPtr)) { in RemoveFromUseList()
866 Handles.erase(getValPtr()); in RemoveFromUseList()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DBranchProbabilityInfo.h158 BPI->Handles.erase(*this); in deleted()
166 DenseSet<BasicBlockCallbackVH, DenseMapInfo<Value*>> Handles; variable
DCFLAndersAliasAnalysis.h87 std::forward_list<cflaa::FunctionHandle<CFLAndersAAResult>> Handles; variable
DCFLSteensAliasAnalysis.h102 std::forward_list<cflaa::FunctionHandle<CFLSteensAAResult>> Handles; variable
DGlobalsModRef.h76 std::list<DeletionCallbackHandle> Handles; variable
/third_party/mesa3d/src/mesa/main/
Dtexturebindless.c295 util_dynarray_append(&sampObj->Handles, in get_texture_handle()
486 util_dynarray_delete_unordered(&sampObj->Handles, in _mesa_delete_texture_handles()
510 util_dynarray_init(&sampObj->Handles, NULL); in _mesa_init_sampler_handles()
517 util_dynarray_foreach(&sampObj->Handles, in _mesa_delete_sampler_handles()
529 util_dynarray_fini(&sampObj->Handles); in _mesa_delete_sampler_handles()
/third_party/libuv/docs/src/guide/
Dbasics.rst136 Handles and Requests
141 Handles are opaque structs named as ``uv_TYPE_t`` where type signifies what the
189 Handles represent long-lived objects. Async operations on such handles are
197 Handles are setup by a corresponding::
/third_party/googletest/googlemock/
DREADME.md21 - Handles functions of arbitrary types and overloaded functions.
/third_party/python/Doc/library/
D2to3.rst270 Handles module renames in the standard library.
274 Handles other modules renames in the standard library. It is separate from
383 Handles the move of :func:`reduce` to :func:`functools.reduce`.
431 Handles the rename of :mod:`urllib` and :mod:`urllib2` to the :mod:`urllib`
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/
DARMCallingConv.td21 // Handles byval parameters.
161 // Handles byval parameters.
207 // Handles byval parameters.
/third_party/libuv/docs/src/
Ddesign.rst24 Handles and requests
30 Handles represent long-lived objects capable of performing certain operations while active. Some ex…
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/Unix/
DDynamicLibrary.inc18 for (void *Handle : llvm::reverse(Handles))
/third_party/typescript/tests/baselines/reference/
DcontrolFlowPropertyDeclarations.symbols188 * Handles processing of the specified text node
261 * Handles parsing of inline styles
DcontrolFlowPropertyDeclarations.types244 * Handles processing of the specified text node
352 * Handles parsing of inline styles
/third_party/curl/docs/libcurl/
Dlibcurl-thread.md21 # Handles chapter
/third_party/node/deps/uv/include/uv/
Dwin.h223 AFD_POLL_HANDLE_INFO Handles[1]; member
/third_party/libuv/include/uv/
Dwin.h223 AFD_POLL_HANDLE_INFO Handles[1]; member

1234