/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | fallible_iterator.h | 22 /// The fallible_iterator template wraps an underlying iterator-like class 35 /// underlying iterator and (for non-end iterators) a reference to an Error 36 /// instance. If the underlying increment/decrement operations fail, the Error 68 template <typename Underlying> class fallible_iterator { 80 /// decremented and compared, providing the underlying type supports it. 84 static fallible_iterator itr(Underlying I, Error &Err) { in itr() 91 /// A value created by this method can be dereferenced (if the underlying 94 static fallible_iterator end(Underlying I) { in end() 98 /// Forward dereference to the underlying iterator. 101 /// Forward const dereference to the underlying iterator. [all …]
|
H A D | BitmaskEnum.h | 34 /// instance of the underlying type (e.g. int). But using this macro, bitwise 127 /// Check that Val is in range for E, and return Val cast to E's underlying 129 template <typename E> constexpr std::underlying_type_t<E> Underlying(E Val) { 147 return static_cast<E>(~Underlying(Val) & Mask<E>()); 152 return static_cast<E>(Underlying(LHS) | Underlying(RHS)); 157 return static_cast<E>(Underlying(LHS) & Underlying(RHS)); 162 return static_cast<E>(Underlying(LHS) ^ Underlying(RH [all...] |
H A D | EnumeratedArray.h | 43 Underlying[IX] = V; in EnumeratedArray() 49 Underlying[IX] = *(Init.begin() + IX); in EnumeratedArray() 56 return Underlying[IX]; 66 iterator begin() { return Underlying; } in begin() 67 const_iterator begin() const { return Underlying; } in begin() 82 ValueType Underlying[Size];
|
/freebsd/contrib/ntp/sntp/libevent/ |
H A D | bufferevent_filter.c | 84 struct bufferevent *underlying; member 89 /** True iff we have received an EOF callback from the underlying 131 /** Return 1 iff bevf's underlying bufferevent's output buffer is at or 138 struct bufferevent *u = bevf->underlying; in be_underlying_writebuf_full() 170 bufferevent_filter_new(struct bufferevent *underlying, in bufferevent_filter_new() argument 180 if (!underlying) in bufferevent_filter_new() 192 if (bufferevent_init_common_(&bufev_f->bev, underlying->ev_base, in bufferevent_filter_new() 201 bufev_f->underlying = underlying; in bufferevent_filter_new() 208 bufferevent_setcb(bufev_f->underlying, in bufferevent_filter_new() 220 bufferevent_incref_(underlying); in bufferevent_filter_new() [all …]
|
H A D | bufferevent_openssl.c | 272 to an underlying bufferevent using a BIO_bufferevent, and one that has the 288 If we were set up with an underlying bufferevent, we use the 293 /* An underlying bufferevent that we're directing our output to. 295 struct bufferevent *underlying; member 379 /* Have the base communications channel (either the underlying bufferevent or 385 if (bev_ssl->underlying) { in start_reading() 386 bufferevent_unsuspend_read_(bev_ssl->underlying, in start_reading() 400 /* Have the base communications channel (either the underlying bufferevent or 407 if (bev_ssl->underlying) { in start_writing() 409 bufferevent_unsuspend_read_(bev_ssl->underlying, in start_writing() [all …]
|
/freebsd/contrib/libevent/ |
H A D | bufferevent_filter.c | 84 struct bufferevent *underlying; member 89 /** True iff we have received an EOF callback from the underlying 131 /** Return 1 iff bevf's underlying bufferevent's output buffer is at or 138 struct bufferevent *u = bevf->underlying; in be_underlying_writebuf_full() 170 bufferevent_filter_new(struct bufferevent *underlying, in bufferevent_filter_new() argument 180 if (!underlying) in bufferevent_filter_new() 192 if (bufferevent_init_common_(&bufev_f->bev, underlying->ev_base, in bufferevent_filter_new() 201 bufev_f->underlying = underlying; in bufferevent_filter_new() 208 bufferevent_setcb(bufev_f->underlying, in bufferevent_filter_new() 220 bufferevent_incref_(underlying); in bufferevent_filter_new() [all …]
|
H A D | bufferevent_openssl.c | 272 to an underlying bufferevent using a BIO_bufferevent, and one that has the 288 If we were set up with an underlying bufferevent, we use the 293 /* An underlying bufferevent that we're directing our output to. 295 struct bufferevent *underlying; member 379 /* Have the base communications channel (either the underlying bufferevent or 385 if (bev_ssl->underlying) { in start_reading() 386 bufferevent_unsuspend_read_(bev_ssl->underlying, in start_reading() 400 /* Have the base communications channel (either the underlying bufferevent or 407 if (bev_ssl->underlying) { in start_writing() 409 bufferevent_unsuspend_read_(bev_ssl->underlying, in start_writing() [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | BinaryStreamReader.h | 43 /// Read as much as possible from the underlying string at the current offset 51 /// Read \p Size bytes from the underlying stream at the current offset and 53 /// depends on the implementation of the underlying stream. Updates the 61 /// stream's offset. The data is always copied from the stream's underlying 103 /// on the implementation of the underlying stream. Updates the stream's 118 /// on the implementation of the underlying stream. Updates the stream's 125 /// Read the entire remainder of the underlying stream into \p Ref. This is 133 /// Read \p Length bytes from the underlying stream into \p Ref. This is 142 /// Read \p Length bytes from the underlying stream into \p Ref. This is 151 /// Get a pointer to an object of type T from the underlying strea [all...] |
H A D | BinaryStreamWriter.h | 44 /// Write the bytes specified in \p Buffer to the underlying stream. 52 /// Write the integer \p Value to the underlying stream in the 75 /// Write the unsigned integer Value to the underlying stream using ULEB128 82 /// Write the unsigned integer Value to the underlying stream using ULEB128 89 /// Write the string \p Str to the underlying stream followed by a null 98 /// Write the string \p Str to the underlying stream without a null 122 /// Writes the object \p Obj to the underlying stream, as if by using memcpy. 137 /// Writes an array of objects of type T to the underlying stream, as if by 156 /// Writes all data from the array \p Array to the underlying stream. 165 /// Writes all elements from the array \p Array to the underlying strea in writeArray() [all...] |
/freebsd/crypto/openssl/doc/man3/ |
H A D | BIO_s_datagram.pod | 57 the underlying socket is configured and how it is to be used; see below. 83 Despite its name, this function does not cause the underlying socket to become 88 This informs the BIO_s_datagram() whether the underlying socket has been 93 underlying socket has been connected and will attempt to use the socket using OS 98 If the I<peer> argument is NULL, BIO_s_datagram() assumes that the underlying 156 If I<num> is nonzero, configures the underlying network socket to enable Don't 163 the underlying network socket, and returns that Path MTU in bytes. This control 171 This control requests that Path MTU discovery be enabled on the underlying 178 supported by the applicable underlying network layer. Use of datagrams of this 198 peek mode is enabled, calls to L<BIO_read(3)> read datagrams from the underlying
|
H A D | SSL_accept.pod | 17 B<ssl> by setting an underlying B<BIO>. 21 The behaviour of SSL_accept() depends on the underlying BIO. 23 If the underlying BIO is B<blocking>, SSL_accept() will only return once the 26 If the underlying BIO is B<nonblocking>, SSL_accept() will also return 27 when the underlying BIO could not satisfy the needs of SSL_accept() 33 The action depends on the underlying BIO. When using a nonblocking socket,
|
H A D | SSL_read.pod | 25 respectively except no bytes are actually removed from the underlying BIO during 38 underlying BIO. 56 of the underlying transport (e.g. TCP), it may be necessary to read several 68 If the underlying BIO is B<blocking>, a read function will only return once the 75 If the underlying BIO is B<nonblocking>, a read function will also return when 76 the underlying BIO could not satisfy the needs of the function to continue the 85 The action depends on the underlying BIO. 94 receiving new data from the underlying socket.
|
H A D | SSL_connect.pod | 17 underlying B<BIO>. 21 The behaviour of SSL_connect() depends on the underlying BIO. 23 If the underlying BIO is B<blocking>, SSL_connect() will only return once the 26 If the underlying BIO is B<nonblocking>, SSL_connect() will also return 27 when the underlying BIO could not satisfy the needs of SSL_connect() 33 The action depends on the underlying BIO. When using a nonblocking socket,
|
H A D | EVP_MAC.pod | 70 different types and with different underlying algorithms if there are 76 the MAC algorithm itself and one for the underlying computation 81 "underlying context", or "computation context", which is to denote the 82 context for the underlying computation algorithm if there is one. 90 rely on an underlying computation algorithm. 117 underlying context if there is one, as well as the context itself. 141 EVP_MAC_init() sets up the underlying context I<ctx> with information given 173 Note that a parameter that is unknown in the underlying context is 177 context I<ctx> and its underlying context. 180 Note that a parameter that is unknown in the underlying context is [all …]
|
H A D | SSL_shutdown.pod | 32 then close the underlying connection without waiting for the peer's response. 45 When the underlying connection shall be used for more communications, the 53 The behaviour of SSL_shutdown() additionally depends on the underlying BIO. 54 If the underlying BIO is B<blocking>, SSL_shutdown() will only return once the 57 If the underlying BIO is B<nonblocking>, SSL_shutdown() will also return 58 when the underlying BIO could not satisfy the needs of SSL_shutdown() 63 The action depends on the underlying BIO. When using a nonblocking socket, 99 If a unidirectional shutdown is enough (the underlying connection shall be
|
H A D | SSL_do_handshake.pod | 23 The behaviour of SSL_do_handshake() depends on the underlying BIO. 25 If the underlying BIO is B<blocking>, SSL_do_handshake() will only return 28 If the underlying BIO is B<nonblocking>, SSL_do_handshake() will also return 29 when the underlying BIO could not satisfy the needs of SSL_do_handshake() 34 The action depends on the underlying BIO. When using a nonblocking socket,
|
H A D | BIO_should_retry.pod | 77 If the underlying I/O structure is in a blocking mode almost all current 78 BIO types will not request a retry, because the underlying I/O 84 retry even if the underlying I/O structure is blocking, if a handshake 87 on the underlying SSL structure. 93 this is done depends on the underlying I/O structure. 103 It is possible for a BIO to block indefinitely if the underlying I/O
|
/freebsd/share/man/man9/ |
H A D | buf.9 | 47 (struct buf) is that the underlying pages are mapped directly from the buffer 51 The second most important thing to remember is that due to the underlying page 82 A VM buffer is capable of mapping the underlying VM cache pages into KVM in 96 such as file system devices to remap underlying pages in order to deal with, 102 to clear the dirty bit on the underlying pages the moment it queues the I/O 117 the underlying pages being marked clean, the B_DELWRI|B_RELBUF combination must 121 where B_DELWRI is not set, the underlying dirty pages are still properly 131 instantiated VM Buffers (struct buf's) prevent their underlying pages in the
|
H A D | device_get_property.9 | 46 The underlying property type is specified with the 52 The underlying property is a string of bytes. 56 Following a reference the underlying property is a handle of the 59 The underlying property is an array of unsigned 32 bit integers. 64 The underlying property is an array of unsigned 64 bit integers.
|
/freebsd/contrib/elftoolchain/libelf/ |
H A D | gelf.3 | 91 of the underlying (class-dependent) ELF data structure. 106 underlying ELF data structure using the 115 When updating an underlying 32 bit ELF data structure, the GElf 117 for the underlying ELF data type. 150 Retrieve an ELF Compression Header from the underlying ELF descriptor. 156 Retrieve an ELF Executable Header from the underlying ELF descriptor. 158 Retrieve an ELF Program Header Table entry from the underlying ELF descriptor. 164 Retrieve an ELF Section Header Table entry from the underlying ELF descriptor.
|
/freebsd/secure/lib/libcrypto/man/man3/ |
H A D | BIO_s_datagram.3 | 186 the underlying socket is configured and how it is to be used; see below. 205 Despite its name, this function does not cause the underlying socket to become 209 This informs the \fBBIO_s_datagram()\fR whether the underlying socket has been 214 underlying socket has been connected and will attempt to use the socket using \s-1OS\s0 219 If the \fIpeer\fR argument is \s-1NULL,\s0 \fBBIO_s_datagram()\fR assumes that the underlying 267 If \fInum\fR is nonzero, configures the underlying network socket to enable Don't 273 the underlying network socket, and returns that Path \s-1MTU\s0 in bytes. This control 280 This control requests that Path \s-1MTU\s0 discovery be enabled on the underlying 286 supported by the applicable underlying network layer. Use of datagrams of this 303 peek mode is enabled, calls to \fBBIO_read\fR\|(3) read datagrams from the underlying
|
H A D | EVP_MAC.3 | 205 different types and with different underlying algorithms if there are 211 the \s-1MAC\s0 algorithm itself and one for the underlying computation 216 \&\*(L"underlying context\*(R", or \*(L"computation context\*(R", which is to denote the 217 context for the underlying computation algorithm if there is one. 224 rely on an underlying computation algorithm. 249 underlying context if there is one, as well as the context itself. 272 \&\fBEVP_MAC_init()\fR sets up the underlying context \fIctx\fR with information given 301 Note that a parameter that is unknown in the underlying context is 305 context \fIctx\fR and its underlying context. 308 Note that a parameter that is unknown in the underlying context is [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | AbstractCallSite.h | 53 /// The encoding of a callback with regards to the underlying instruction. 73 /// The underlying call site: 78 /// The encoding of a callback with regards to the underlying instruction. 111 /// Return the underlying instruction. 161 /// Return the operand index of the underlying instruction associated with @p 167 /// Return the operand index of the underlying instruction associated with 176 /// Return the operand of the underlying instruction associated with @p Arg. 181 /// Return the operand of the underlying instruction associated with the 192 /// Return the operand index of the underlying instruction associated with the 200 /// Return the use of the callee value in the underlying instruction. Only
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/ |
H A D | VPlanValue.h | 59 // Hold the underlying Value, if any, attached to this VPValue. 68 // DESIGN PRINCIPLE: Access to the underlying IR must be strictly limited to 70 // independent as possible of the underlying IR. We grant access to the 71 // underlying IR using friendship. In that way, we should be able to use VPlan 72 // for multiple underlying IRs (Polly?) by providing a new VPlan front-end, 76 /// Return the underlying Value attached to this VPValue. 169 /// Returns the underlying IR value, if this VPValue is defined outside the 188 // Set \p Val as the underlying Value of this VPValue. 190 assert(!UnderlyingVal && "Underlying Value is already set."); in setUnderlyingValue() 444 /// underlying value, assign consecutive numbers and use those as names (wrapped [all …]
|
/freebsd/contrib/llvm-project/libcxx/include/__format/ |
H A D | range_formatter.h | 52 _LIBCPP_HIDE_FROM_ABI constexpr formatter<_Tp, _CharT>& underlying() noexcept { return __underlying_; } in underlying() function 53 _LIBCPP_HIDE_FROM_ABI constexpr const formatter<_Tp, _CharT>& underlying() const noexcept { return __underlying_; } 76 // range-underlying-spec: in parse() 82 // processed by the underlying. For example {:-} for a range in invalid, in parse() 91 // However this test makes sure the underlying formatter left the parser in in parse() 103 // range-underlying-spec. in parse() 111 std::__throw_format_error("Type s and an underlying format specification can't be used together"); in parse() 112 std::__throw_format_error("Type ?s and an underlying format specification can't be used together"); in parse() 172 // copy of the underlying data. The basic_string_view formatter in __format_as_string() 250 "the underlying' 51 _LIBCPP_HIDE_FROM_ABI constexpr formatter<_Tp, _CharT>& underlying() noexcept { return __underlying_; } underlying() function [all...] |