/freebsd/contrib/nvi/common/ |
H A D | search.c | 152 int cnt, eval, rval, wrapped = 0; in f_search() local 191 wrapped = 1; in f_search() 208 if ((wrapped && lno > fm->lno) || db_get(sp, lno, 0, &l, &len)) { in f_search() 209 if (wrapped) { in f_search() 220 wrapped = 1; in f_search() 249 /* Warn if the search wrapped. */ in f_search() 250 if (wrapped && LF_ISSET(SEARCH_WMSG)) in f_search() 293 int cnt, eval, rval, wrapped; in b_search() local 326 for (cnt = INTERRUPT_CHECK, rval = 1, wrapped = 0;; --lno, coff = 0) { in b_search() 336 if ((wrapped && lno < fm->lno) || lno == 0) { in b_search() [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | CombinationGenerator.h | 23 /// variable), and if it wrapped to the beginning then increment next digit. 54 bool Wrapped = Position == Range.end(); in advance() local 55 if (Wrapped) in advance() 57 return Wrapped; in advance() 78 // increment it, and if it wrapped, then propagate that carry by also in performGeneration() 85 bool Wrapped = Variable.advance(); in performGeneration() local 86 if (!Wrapped) in performGeneration() 90 return true; // MSB variable wrapped, no more unique combinations. in performGeneration()
|
H A D | AllocatorList.h | 114 : base_type(X.wrapped()) {} 118 reference operator*() const { return base_type::wrapped()->V; } 180 return iterator(List.insert(I.wrapped(), *create(std::forward<Ts>(Vs)...))); in emplace() 184 return iterator(List.insert(I.wrapped(), *create(std::move(V)))); in insert() 187 return iterator(List.insert(I.wrapped(), *create(V))); in insert() 193 List.insert(I.wrapped(), *create(*First)); in insert() 197 return iterator(List.eraseAndDispose(I.wrapped(), Disposer(*this))); in erase() 202 List.eraseAndDispose(First.wrapped(), Last.wrapped(), Disposer(*this))); in erase()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
H A D | ClangExpressionSourceCode.h | 32 /// The possible ways an expression can be wrapped. 34 /// Wrapped in a non-static member function of a C++ class. 36 /// Wrapped in an instance Objective-C method. 38 /// Wrapped in a static Objective-C method. 40 /// Wrapped in a non-member function. 99 /// How the expression has been wrapped.
|
/freebsd/contrib/wpa/src/common/ |
H A D | dpp_reconfig.c | 336 u8 *wrapped; in dpp_reconfig_build_resp() local 346 /* C-nonce (wrapped) */ in dpp_reconfig_build_resp() 351 /* Connection Status (wrapped) */ in dpp_reconfig_build_resp() 403 /* Attributes before Wrapped Data */ in dpp_reconfig_build_resp() 408 /* Wrapped Data: {C-nonce, E-nonce, Connection Status}ke */ in dpp_reconfig_build_resp() 411 wrapped = wpabuf_put(msg, wpabuf_len(clear) + AES_BLOCK_SIZE); in dpp_reconfig_build_resp() 416 2, addr, len, wrapped) < 0) in dpp_reconfig_build_resp() 579 u8 *wrapped; in dpp_reconfig_build_conf() local 599 /* C-nonce (wrapped) */ in dpp_reconfig_build_conf() 604 /* E-nonce (wrapped) */ in dpp_reconfig_build_conf() [all …]
|
H A D | dpp_pkex.c | 592 u8 *wrapped; in dpp_pkex_build_commit_reveal_req() local 653 wpa_printf(MSG_INFO, "DPP: TESTING - no Wrapped Data"); in dpp_pkex_build_commit_reveal_req() 668 wrapped = wpabuf_put(msg, wpabuf_len(clear) + AES_BLOCK_SIZE); in dpp_pkex_build_commit_reveal_req() 673 2, addr, len, wrapped) < 0) in dpp_pkex_build_commit_reveal_req() 676 wrapped, wpabuf_len(clear) + AES_BLOCK_SIZE); in dpp_pkex_build_commit_reveal_req() 680 wpa_printf(MSG_INFO, "DPP: TESTING - attr after Wrapped Data"); in dpp_pkex_build_commit_reveal_req() 914 u8 *wrapped; in dpp_pkex_build_commit_reveal_resp() local 974 wpa_printf(MSG_INFO, "DPP: TESTING - no Wrapped Data"); in dpp_pkex_build_commit_reveal_resp() 989 wrapped = wpabuf_put(msg, wpabuf_len(clear) + AES_BLOCK_SIZE); in dpp_pkex_build_commit_reveal_resp() 994 2, addr, len, wrapped) < 0) in dpp_pkex_build_commit_reveal_resp() [all …]
|
H A D | dpp_auth.c | 135 wpa_printf(MSG_INFO, "DPP: TESTING - no Wrapped Data"); in dpp_auth_build_req() 140 /* Wrapped data ({I-nonce, I-capabilities}k1) */ in dpp_auth_build_req() 198 /* Attributes before Wrapped Data */ in dpp_auth_build_req() 220 wpa_printf(MSG_INFO, "DPP: TESTING - attr after Wrapped Data"); in dpp_auth_build_req() 303 wpa_printf(MSG_INFO, "DPP: TESTING - no Wrapped Data"); in dpp_auth_build_resp() 308 /* Wrapped data ({R-nonce, I-nonce, R-capabilities, {R-auth}ke}k2) */ in dpp_auth_build_resp() 384 /* Attributes before Wrapped Data */ in dpp_auth_build_resp() 406 wpa_printf(MSG_INFO, "DPP: TESTING - attr after Wrapped Data"); in dpp_auth_build_resp() 702 "Missing or invalid required Wrapped Data attribute"); in dpp_auth_req_rx() 705 wpa_hexdump(MSG_MSGDUMP, "DPP: Wrapped Data", in dpp_auth_req_rx() [all …]
|
/freebsd/contrib/tcp_wrappers/ |
H A D | inetcf.h | 12 #define WR_NOT 1 /* may not be wrapped */ 13 #define WR_MAYBE 2 /* may be wrapped */ 14 #define WR_YES 3 /* service is wrapped */
|
H A D | README.IRIX | 34 services cannot be wrapped until SGI fixes their system so that it 48 So, TLI services cannot be wrapped until SGI fixes their system so
|
/freebsd/contrib/kyua/utils/process/ |
H A D | executor_pid_test.cpp | 96 bool wrapped; in wrap_pids() local 102 wrapped = true; in wrap_pids() 104 wrapped = false; in wrap_pids() 116 wrapped = true; in wrap_pids() 118 } while (!wrapped || current < target); in wrap_pids()
|
/freebsd/contrib/kyua/utils/ |
H A D | auto_array.ipp | 99 /// Gets the value of the wrapped pointer without releasing ownership. 110 /// Gets the value of the wrapped pointer without releasing ownership. 121 /// Gets the value of the wrapped pointer and releases ownership. 134 /// Changes the value of the wrapped pointer. 137 /// wrapped pointer is replaced with the new pointer provided.
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | syncstream | 70 streambuf_type* wrapped; // exposition only 151 // to the wrapped stream buffer object *wrapped when emit() is called 154 // with the same wrapped stream buffer object. 167 _LIBCPP_ASSERT_INTERNAL(__ptr != nullptr, "non-wrapped streambufs are never written to"); 201 _LIBCPP_ASSERT_INTERNAL(__ptr != nullptr, "non-wrapped streambufs are never written to"); 223 _LIBCPP_ASSERT_INTERNAL(__ptr != nullptr, "non-wrapped streambufs are never written to"); 226 …_LIBCPP_ASSERT_INTERNAL(__it != __lut_.end(), "using a wrapped streambuf that has not been registe…
|
/freebsd/crypto/heimdal/appl/gssmask/ |
H A D | gssmaestro.c | 434 krb5_data msg, wrapped, out; in test_wrap() local 440 krb5_data_zero(&wrapped); in test_wrap() 443 val = encrypt_token(c1, hc1, conf, &msg, &wrapped); in test_wrap() 448 val = decrypt_token(c2, hc2, conf, &wrapped, &out); in test_wrap() 450 krb5_data_free(&wrapped); in test_wrap() 464 krb5_data_free(&wrapped); in test_wrap() 473 krb5_data header, msg, trailer, wrapped, out; in test_wrap_ext() local 485 krb5_data_zero(&wrapped); in test_wrap_ext() 488 val = wrap_token_ext(c1, hc1, conf, bflags, &header, &msg, &trailer, &wrapped); in test_wrap_ext() 493 val = unwrap_token_ext(c2, hc2, conf, bflags, &header, &wrapped, &trailer, &out); in test_wrap_ext() [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | ConstantRange.h | 219 /// * Empty set: Not wrapped. 220 /// * Full set: Not wrapped. 221 /// * [X, 0) == [X, Max]: Not wrapped. 226 /// * Empty set: Not wrapped. 227 /// * Full set: Not wrapped. 228 /// * [X, 0): Wrapped. 232 /// * Empty set: Not wrapped. 233 /// * Full set: Not wrapped. 234 /// * [X, SignedMin) == [X, SignedMax]: Not wrapped. 239 /// * Empty set: Not wrapped. [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/Tooling/Transformer/ |
H A D | Stencil.h | 74 /// binary operation is always wrapped, while a variable reference is never 75 /// wrapped. 79 /// \p ExprId is wrapped in parentheses, if needed. 88 /// expression bound to \p ExprId. \p ExprId is wrapped in parentheses, if 102 /// Additionally, `e` is wrapped in parentheses, if needed.
|
/freebsd/contrib/wpa/src/pasn/ |
H A D | pasn_initiator.c | 252 /* Wrapped Data (ERP) */ in wpas_pasn_fils_build_auth() 284 wpa_printf(MSG_DEBUG, "PASN: FILS: wrapped data - completed=%u", in wpas_pasn_wd_fils_auth() 394 "PASN: FILS: Failed getting wrapped data"); in wpas_pasn_wd_fils_rx() 458 /* no wrapped data */ in wpas_pasn_get_wrapped_data() 468 "PASN: SAE: Cannot derive wrapped data"); in wpas_pasn_get_wrapped_data() 479 * Wrapped data with these AKMs is optional and is only needed in wpas_pasn_get_wrapped_data() 486 "PASN: TODO: Wrapped data for akmp=0x%x", in wpas_pasn_get_wrapped_data() 509 * Wrapped data with these AKMs is optional and is only needed in wpas_pasn_get_wrapped_data_format() 571 * Note: Even when PMKSA is available, also add wrapped data as in wpas_pasn_build_auth_1() 831 "PASN: Failed processing SAE wrapped data"); in wpas_pasn_set_pmk() [all …]
|
H A D | pasn_responder.c | 256 /* Wrapped Data */ in pasn_get_fils_wd() 271 /* no wrapped data */ in pasn_get_wrapped_data() 278 "PASN: SAE: Cannot derive wrapped data"); in pasn_get_wrapped_data() 292 "PASN: TODO: Wrapped data for akmp=0x%x", in pasn_get_wrapped_data() 340 /* TODO: Derive PMK based on wrapped data */ in pasn_derive_keys() 768 wpa_printf(MSG_DEBUG, "PASN: Missing wrapped data"); in handle_auth_pasn_1() 791 "PASN: Invalid FILS wrapped data"); in handle_auth_pasn_1() 995 wpa_printf(MSG_DEBUG, "PASN: Missing wrapped data"); in handle_auth_pasn_3() 1016 "PASN: FILS: Ignore wrapped data"); in handle_auth_pasn_3()
|
/freebsd/contrib/kyua/utils/format/ |
H A D | formatter_test.cpp | 49 /// The wrapped integer. 60 /// Returns the wrapped value. 71 /// Writes a wrapped integer into an output stream. 74 /// \param wrapper The wrapped integer.
|
/freebsd/contrib/libfido2/fuzz/ |
H A D | README | 14 If -DFUZZ=ON is enabled, symbols listed in wrapped.sym are wrapped in the
|
/freebsd/crypto/openssl/test/ |
H A D | asn1_dsa_internal_test.c | 43 * Badly coded ASN.1 INTEGER zero wrapped in a sequence along with another 53 * Badly coded ASN.1 INTEGER (with leading zeros) wrapped in a sequence along 63 * Negative ASN.1 INTEGER wrapped in a sequence along with another
|
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/buffering/ |
H A D | tst.ring3.d | 45 * space that it won't use. This act of reservation will advance the wrapped 46 * offset. That record won't be subsequently used, but the wrapped offset has
|
/freebsd/contrib/wpa/src/crypto/ |
H A D | aes-wrap.c | 22 * @plain: Plaintext key to be wrapped, n * 64 bits 23 * @cipher: Wrapped key, (n + 1) * 64 bits
|
/freebsd/usr.bin/gzip/ |
H A D | unlz.c | 283 bool wrapped; member 301 lz->wrapped = lz->pos >= lz->dict_size; in lz_flush() 302 if (lz->wrapped) { in lz_flush() 336 lz->wrapped = false; in lz_create() 358 if (lz->wrapped) in lz_peek() 519 (rep[0] >= lz->pos && !lz->wrapped)) { in lz_decode_member()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/orc/tests/unit/ |
H A D | error_test.cpp | 94 EXPECT_EQ(CE->getV1(), 42) << "Unexpected wrapped value"; in TEST() 103 EXPECT_EQ(CE->getV1(), 42) << "Unexpected wrapped value"; in TEST() 112 EXPECT_EQ(CSE->getV1(), 42) << "Unexpected wrapped value"; in TEST() 113 EXPECT_EQ(CSE->getV2(), "foo") << "Unexpected wrapped value"; in TEST()
|
/freebsd/contrib/llvm-project/clang/include/clang/Tooling/ |
H A D | CompilationDatabase.h | 224 /// Returns a wrapped CompilationDatabase that defers to the provided one, 231 /// Returns a wrapped CompilationDatabase that will add -target and -mode flags 237 /// Returns a wrapped CompilationDatabase that will transform argv[0] to an 243 /// Returns a wrapped CompilationDatabase that will expand all rsp(response)
|