| /freebsd/sys/crypto/openssl/aarch64/ |
| H A D | sha1-armv8.S | 50 add w23,w23,w28 // future e+=K 54 add w23,w23,w4 // future e+=X[i] 64 add w22,w22,w28 // future e+=K 68 add w22,w22,w5 // future e+=X[i] 75 add w21,w21,w28 // future e+=K 79 add w21,w21,w6 // future e+=X[i] 89 add w20,w20,w28 // future e+=K 93 add w20,w20,w7 // future e+=X[i] 100 add w24,w24,w28 // future e+=K 104 add w24,w24,w8 // future e+=X[i] [all …]
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/ |
| H A D | future | 14 future synopsis 75 future<R> get_future(); 105 future<R&> get_future(); 133 future<void> get_future(); 150 class future 153 future() noexcept; 154 future(future&&) noexcept; 155 future(const future& rhs) = delete; 156 ~future(); 157 future& operator=(const future& rhs) = delete; [all …]
|
| /freebsd/contrib/llvm-project/libcxx/include/ |
| H A D | future | 14 future synopsis 75 future<R> get_future(); 105 future<R&> get_future(); 133 future<void> get_future(); 150 class future 153 future() noexcept; 154 future(future&&) noexcept; 155 future(const future& rhs) = delete; 156 ~future(); 157 future& operator=(const future& rhs) = delete; [all …]
|
| /freebsd/contrib/llvm-project/libcxx/modules/std/ |
| H A D | future.cppm | |
| H A D | future.inc | 33 // [futures.future.error], class future_error 43 // [futures.unique.future], class template future 44 using std::future; 46 // [futures.shared.future], class template shared_future
|
| /freebsd/contrib/llvm-project/clang/include/clang/CodeGen/ |
| H A D | ConstantInitFuture.h | 1 //===- ConstantInitFuture.h - "Future" constant initializers ----*- C++ -*-===// 13 // a future in, say, a default argument. 45 /// A "future" for a completed constant initializer, which can be passed 58 /// A future can be explicitly created from a fixed initializer. 60 assert(initializer && "creating null future"); 63 /// Is this future non-null? 95 static inline void *getAsVoidPointer(T future) { 96 return future.getOpaqueValue();
|
| /freebsd/contrib/llvm-project/libcxx/src/ |
| H A D | future.cpp | 9 #include <future> 20 const char* __future_error_category::name() const noexcept { return "future"; } in name() 33 return string("The future has already been retrieved from " in message() 127 future<void>::future(__assoc_sub_state* __state) : __state_(__state) { __state_->__attach_future();… in future() function in future 129 future<void>::~future() { in ~future() 134 void future<void>::get() { in get() 153 future<void> promise<void>::get_future() { in get_future() 156 return future<void>(__state_); in get_future()
|
| /freebsd/crypto/openssl/test/radix/ |
| H A D | README.md | 14 - multi-process (in future) 15 - multi-node (in future) 19 other protocols in future if desired. 23 supported by the RADIX test framework in future include: 31 given to support of multi-process and multi-node testing in the future, though 47 to operations. Other kinds of object could be supported in future if needed. 77 - In the future, multi-process or multi-node testing will be supported. 86 used for testing other protocols in the future. There is a clean, layered
|
| /freebsd/crypto/openssl/doc/designs/quic-design/ |
| H A D | congestion-control.md | 5 use of pluggable QUIC congestion controllers in the future. The interface is 20 controller makes use of this facility, it can be used by future congestion 31 a clock. In the future it is likely that access at least to the statistics 40 per connection. This may change in future. 54 controllers via a provider-based interface in the future.
|
| H A D | quic-requirements.md | 25 record layer interface will be internal only for MVP and be public in a future 87 existing (or future) security protocols and to select between them with minimal 101 to work in a QUIC environment while expanding our APIs to enable future 109 in a future OpenSSL release will be provided. 160 * QUIC performance should be comparable (in some future release - not MVP) with 165 support "single copy" APIs in the future:
|
| /freebsd/crypto/openssl/fuzz/ |
| H A D | ml-kem.c | 135 * @param key2 Unused parameter (reserved for future use). 197 * @param unused Unused parameter (reserved for future use). 262 * @param[out] buf Unused output buffer (reserved for future use). 263 * @param[out] len Unused length parameter (reserved for future use). 265 * @param[in] in2 Unused input parameter (reserved for future use). 266 * @param[out] out1 Unused output parameter (reserved for future use). 267 * @param[out] out2 Unused output parameter (reserved for future use). 395 * @param[out] buf Unused output buffer (reserved for future use). 396 * @param[out] len Unused output length (reserved for future use). 399 * @param[out] out1 Unused output parameter (reserved for future use). [all …]
|
| H A D | ml-dsa.c | 154 * @param key2 Unused parameter (reserved for future use). 291 * @param[out] buf Unused output buffer (reserved for future use). 292 * @param[out] len Unused length parameter (reserved for future use). 294 * @param[in] in2 Unused input parameter (reserved for future use). 295 * @param[out] out1 Unused output parameter (reserved for future use). 296 * @param[out] out2 Unused output parameter (reserved for future use). 370 * @param[out] buf Unused output buffer (reserved for future use). 371 * @param[out] len Unused length parameter (reserved for future use). 373 * @param[in] in2 Unused input parameter (reserved for future use). 374 * @param[out] out1 Unused output parameter (reserved for future use). [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | ThreadPool.h | 23 #include <future> 48 /// left to run on (this includes waiting on the returned future). It should be 76 /// Asynchronous submission of a task to the pool. The returned future can be 93 /// Asynchronous submission of a task to the pool. The returned future can be 109 /// Asynchronous submission of a task to the pool. The returned future can be 114 auto Future = std::async(std::launch::deferred, std::move(Task)).share(); in asyncImpl() local 115 asyncEnqueue([Future]() { Future.wait(); }, Group); in asyncImpl() 116 return Future; in asyncImpl() 164 /// Asynchronous submission of a task to the pool. The returned future can be 244 /// Asynchronous submission of a task to the pool. The returned future can be
|
| H A D | MSVCErrorWorkarounds.h | 1 //===--- MSVCErrorWorkarounds.h - Enable future<Error> in MSVC --*- C++ -*-===// 9 // MSVC's promise/future implementation requires types to be default 26 // std::future implementation which requires default constructible types. 42 // std::future implementation, which requires default constructible types.
|
| /freebsd/contrib/bzip2/ |
| H A D | unzcrash.c | 56 ,"???" /* for future */ 57 ,"???" /* for future */ 58 ,"???" /* for future */ 59 ,"???" /* for future */ 60 ,"???" /* for future */ 61 ,"???" /* for future */
|
| /freebsd/contrib/tzdata/ |
| H A D | NEWS | 9 Changes to future timestamps 50 Changes to past and future timestamps 59 Europe/Athens for future timestamps. 277 Changes to future timestamps 304 Changes to future timestamps 445 with Asia/Tashkent for future timestamps, due to Kazakhstan's 503 Changes to future timestamps 572 Changes to future timestamps 584 Changes to past and future timestamps 669 Changes to past and future timestamps [all …]
|
| /freebsd/contrib/tzcode/ |
| H A D | NEWS | 9 Changes to future timestamps 50 Changes to past and future timestamps 59 Europe/Athens for future timestamps. 277 Changes to future timestamps 304 Changes to future timestamps 445 with Asia/Tashkent for future timestamps, due to Kazakhstan's 503 Changes to future timestamps 572 Changes to future timestamps 584 Changes to past and future timestamps 669 Changes to past and future timestamps [all …]
|
| /freebsd/crypto/openssl/doc/designs/quic-design/server/ |
| H A D | quic-server-api.md | 20 - Support connection migration and preferred addressing in the future. 35 cases in the future. For example, it could be used for TLS over TCP to make 42 support DTLS in the future in the same way as QUIC, etc. 105 * TCP and DTLS can be supported in the future; not supported for non-QUIC 153 /* Returns 1 for QLSOs (or future TLS/DTLS listeners) only. */ 305 ### Future Compatibility: TLS over TCP Support 337 Thus, this API should be compatible with any future adaptation to also support 340 ### Future Compatibility: DTLS over UDP Support 343 so this API should also be adaptable to support DTLS in the future, providing 358 theoretically possible in future and is discussed in the next section. [all …]
|
| /freebsd/lib/libsys/ |
| H A D | posix_fadvise.2 | 73 Tells the system that the specified data will be accessed in the near future. 78 future. 80 specified range and future access to this data may require a read operation. 86 Future access to this data may require a read operation.
|
| H A D | procctl.2 | 251 mark all future child processes of each selected process as protected. 252 Future child processes will also mark all of their future child processes. 255 Enable orphaned process reaping for future children of the current process. 264 the current process becomes the reaper process for future children and their 652 Enable stack gaps for the new address space constructed by any future 697 in the specified process and its future descendants. 728 permissions in the specified process' current and future address spaces. 730 In a new address space created by a future call to 791 only for new address spaces constructed by a future
|
| /freebsd/sys/crypto/openssl/arm/ |
| H A D | sha256-armv4.S | 179 ldr r2,[sp,#2*4] @ from future BODY_16_xx 181 ldr r1,[sp,#15*4] @ from future BODY_16_xx 237 ldr r2,[sp,#3*4] @ from future BODY_16_xx 239 ldr r1,[sp,#0*4] @ from future BODY_16_xx 295 ldr r2,[sp,#4*4] @ from future BODY_16_xx 297 ldr r1,[sp,#1*4] @ from future BODY_16_xx 353 ldr r2,[sp,#5*4] @ from future BODY_16_xx 355 ldr r1,[sp,#2*4] @ from future BODY_16_xx 411 ldr r2,[sp,#6*4] @ from future BODY_16_xx 413 ldr r1,[sp,#3*4] @ from future BODY_16_xx [all …]
|
| /freebsd/sys/contrib/openzfs/module/icp/asm-arm/sha2/ |
| H A D | sha256-armv7.S | 135 ldr r2,[sp,#2*4] @ from future BODY_16_xx 137 ldr r1,[sp,#15*4] @ from future BODY_16_xx 193 ldr r2,[sp,#3*4] @ from future BODY_16_xx 195 ldr r1,[sp,#0*4] @ from future BODY_16_xx 251 ldr r2,[sp,#4*4] @ from future BODY_16_xx 253 ldr r1,[sp,#1*4] @ from future BODY_16_xx 309 ldr r2,[sp,#5*4] @ from future BODY_16_xx 311 ldr r1,[sp,#2*4] @ from future BODY_16_xx 367 ldr r2,[sp,#6*4] @ from future BODY_16_xx 369 ldr r1,[sp,#3*4] @ from future BODY_16_xx [all …]
|
| /freebsd/contrib/pjdfstest/tests/utimensat/ |
| H A D | 01.t | 26 sleep 1 # Ensure that future timestamps will be different than this one 38 echo "not ok 4 new mtime is implausibly far in the future" 47 echo "not ok 5 new atime is implausibly far in the future"
|
| /freebsd/crypto/openssl/doc/man7/ |
| H A D | openssl-qlog.pod | 20 incompatible ways in future versions of OpenSSL. See B<FORMAT STABILITY> below 171 specification. Future revisions to the qlog specification in advance of formal 174 output in this format in the future once standardisation is complete. 177 breaking ways in the future, including in non-major releases of OpenSSL. The 190 expected to track what is supported by qvis. As such, future changes to the
|
| /freebsd/crypto/openssl/crypto/sha/asm/ |
| H A D | sha1-armv8.pl | 78 add $d,$d,$K // future e+=K 82 add $d,$d,@Xw[($i+1)&15] // future e+=X[i] 95 add $d,$d,$K // future e+=K 100 add $d,$d,@Xw[($i+1)&15] // future e+=X[i] 120 add $d,$d,$K // future e+=K 126 add $d,$d,@Xw[($i+1)&15] // future e+=X[i] 144 add $d,$d,$K // future e+=K 150 add $d,$d,@Xw[($i+1)&15] // future e+=X[i] 158 add $d,$d,$K // future e+=K 162 add $d,$d,@Xw[($i+1)&15] // future e+=X[i]
|