Searched refs:__pipe (Results 1 – 3 of 3) sorted by relevance
| /netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/experimental/ |
| H A D | io_context | 705 int __pipe[2]; 706 if (::pipe(__pipe) == -1) 708 if (::fcntl(__pipe[0], F_SETFL, O_NONBLOCK) == -1 709 || ::fcntl(__pipe[1], F_SETFL, O_NONBLOCK) == -1) 712 ::close(__pipe[0]); 713 ::close(__pipe[1]); 717 _M_fds.back().fd = __pipe[0]; 718 _M_notify_wr = __pipe[1];
|
| /netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/experimental/ |
| H A D | io_context | 722 int __pipe[2]; 723 if (::pipe(__pipe) == -1) 725 if (::fcntl(__pipe[0], F_SETFL, O_NONBLOCK) == -1 726 || ::fcntl(__pipe[1], F_SETFL, O_NONBLOCK) == -1) 729 ::close(__pipe[0]); 730 ::close(__pipe[1]); 734 _M_fds.back().fd = __pipe[0]; 735 _M_notify_wr = __pipe[1];
|
| /netbsd-src/sys/external/bsd/drm2/dist/drm/i915/display/ |
| H A D | intel_display.h | 347 #define for_each_universal_plane(__dev_priv, __pipe, __p) \ argument 349 (__p) < RUNTIME_INFO(__dev_priv)->num_sprites[(__pipe)] + 1; \
|