Home
last modified time | relevance | path

Searched refs:Handles (Results 1 - 21 of 21) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
H A 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/
H A 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 in AnalyzeGlobals()
[all...]
H A DCFLSteensAliasAnalysis.cpp239 Handles.emplace_front(Fn, this); in scan()
H A DBranchProbabilityInfo.cpp946 Handles.insert(BasicBlockCallbackVH(Src, this)); in setEdgeProbability()
H A DCFLAndersAliasAnalysis.cpp823 Handles.emplace_front(const_cast<Function *>(&Fn), this); in scan()
/third_party/libuv/src/win/
H A 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[ in uv__fast_poll_process_poll_req()
[all...]
/third_party/node/deps/uv/src/win/
H A 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[ in uv__fast_poll_process_poll_req()
[all...]
/third_party/node/deps/cares/src/lib/
H A Dares_event_win32.c118 * Handles[0].Events (NOTE: check NumberOfHandles first, make sure it is
127 * Handles[0].Handle = (HANDLE)base_socket;
128 * Handles[0].Status = 0;
129 * Handles[0].Events = ... set as appropriate AFD_POLL_RECEIVE, etc;
342 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[ in ares_evsys_win32_afd_enqueue()
[all...]
H A 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/
H A 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 in RemoveFromUseList()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
H A DBranchProbabilityInfo.h158 BPI->Handles.erase(*this);
166 DenseSet<BasicBlockCallbackVH, DenseMapInfo<Value*>> Handles; member in llvm::BranchProbabilityInfo
H A DCFLAndersAliasAnalysis.h87 std::forward_list<cflaa::FunctionHandle<CFLAndersAAResult>> Handles; member in llvm::CFLAndersAAResult
H A DCFLSteensAliasAnalysis.h102 std::forward_list<cflaa::FunctionHandle<CFLSteensAAResult>> Handles; member in llvm::CFLSteensAAResult
H A DGlobalsModRef.h76 std::list<DeletionCallbackHandle> Handles; member in llvm::GlobalsAAResult
/third_party/mesa3d/src/mesa/main/
H A 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()
H A Dmtypes.h903 struct util_dynarray Handles; member
/third_party/node/deps/v8/tools/
H A Dwindbg.js680 Handles
714 print(`Handles in block at ${hex(block)}`);
722 print(`Handles in block at ${hex(last_block)}`);
/third_party/libuv/include/uv/
H A Dwin.h224 AFD_POLL_HANDLE_INFO Handles[1]; member
/third_party/node/deps/uv/include/uv/
H A Dwin.h223 AFD_POLL_HANDLE_INFO Handles[1]; member
/third_party/skia/third_party/externals/tint/src/reader/wgsl/
H A Dlexer_test.cc219 TEST_P(FloatTest_Invalid, Handles) { in TEST_P()
/third_party/openGLES/xml/
H A Dreadme.tex611 passed in this parameter. Handles with different types are not

Completed in 30 milliseconds