Searched refs:wrapped (Results 1 - 25 of 27) sorted by relevance

12

/freebsd-current/contrib/nvi/common/
H A Dsearch.c152 int cnt, eval, rval, wrapped = 0; local
191 wrapped = 1;
208 if ((wrapped && lno > fm->lno) || db_get(sp, lno, 0, &l, &len)) {
209 if (wrapped) {
220 wrapped = 1;
249 /* Warn if the search wrapped. */
250 if (wrapped && LF_ISSET(SEARCH_WMSG))
293 int cnt, eval, rval, wrapped; local
326 for (cnt = INTERRUPT_CHECK, rval = 1, wrapped = 0;; --lno, coff = 0) {
336 if ((wrapped
[all...]
/freebsd-current/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAllocatorList.h114 : 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)...)));
184 return iterator(List.insert(I.wrapped(), *create(std::move(V))));
187 return iterator(List.insert(I.wrapped(), *create(V)));
193 List.insert(I.wrapped(), *create(*First));
197 return iterator(List.eraseAndDispose(I.wrapped(), Disposer(*this)));
202 List.eraseAndDispose(First.wrapped(), Last.wrapped(), Disposer(*this)));
H A DGenericCycleInfo.h151 const const_child_iterator_base &wrapped() { return Base::wrapped(); } function in struct:llvm::GenericCycle::const_child_iterator
298 const const_toplevel_iterator_base &wrapped() { return Base::wrapped(); }
H A Diterator.h250 const WrappedIteratorT &wrapped() const { return I; } function in class:llvm::iterator_adaptor_base
H A DStringMap.h495 StringRef operator*() const { return this->wrapped()->getKey(); }
/freebsd-current/contrib/llvm-project/lld/COFF/
H A DMinGW.h67 void wrapSymbols(COFFLinkerContext &ctx, ArrayRef<WrappedSymbol> wrapped);
H A DMinGW.cpp250 // so that wrapped symbols are swapped as instructed by the command line.
252 ArrayRef<WrappedSymbol> wrapped) {
254 for (const WrappedSymbol &w : wrapped) {
251 wrapSymbols(COFFLinkerContext &ctx, ArrayRef<WrappedSymbol> wrapped) argument
H A DDriver.cpp2453 // Create wrapped symbols for -wrap option.
2454 std::vector<WrappedSymbol> wrapped = addWrappedSymbols(ctx, args); local
2455 // Load more object files that might be needed for wrapped symbols.
2456 if (!wrapped.empty())
2522 if (!wrapped.empty())
2523 wrapSymbols(ctx, wrapped);
/freebsd-current/contrib/kyua/utils/process/
H A Dexecutor_pid_test.cpp96 bool wrapped; local
102 wrapped = true;
104 wrapped = false;
116 wrapped = true;
118 } while (!wrapped || current < target);
/freebsd-current/crypto/heimdal/appl/gssmask/
H A Dgssmaestro.c434 krb5_data msg, wrapped, out; local
440 krb5_data_zero(&wrapped);
443 val = encrypt_token(c1, hc1, conf, &msg, &wrapped);
448 val = decrypt_token(c2, hc2, conf, &wrapped, &out);
450 krb5_data_free(&wrapped);
464 krb5_data_free(&wrapped);
473 krb5_data header, msg, trailer, wrapped, out; local
485 krb5_data_zero(&wrapped);
488 val = wrap_token_ext(c1, hc1, conf, bflags, &header, &msg, &trailer, &wrapped);
493 val = unwrap_token_ext(c2, hc2, conf, bflags, &header, &wrapped,
[all...]
/freebsd-current/usr.bin/gzip/
H A Dunlz.c283 bool wrapped; member in struct:lz_decoder
301 lz->wrapped = lz->pos >= lz->dict_size;
302 if (lz->wrapped) {
336 lz->wrapped = false;
358 if (lz->wrapped)
519 (rep[0] >= lz->pos && !lz->wrapped)) {
/freebsd-current/contrib/wpa/src/common/
H A Ddpp_pkex.c585 u8 *wrapped; local
661 wrapped = wpabuf_put(msg, wpabuf_len(clear) + AES_BLOCK_SIZE);
666 2, addr, len, wrapped) < 0)
669 wrapped, wpabuf_len(clear) + AES_BLOCK_SIZE);
905 u8 *wrapped; local
980 wrapped = wpabuf_put(msg, wpabuf_len(clear) + AES_BLOCK_SIZE);
985 2, addr, len, wrapped) < 0)
988 wrapped, wpabuf_len(clear) + AES_BLOCK_SIZE);
H A Ddpp_reconfig.c320 u8 *wrapped; local
330 /* C-nonce (wrapped) */
335 /* Connection Status (wrapped) */
395 wrapped = wpabuf_put(msg, wpabuf_len(clear) + AES_BLOCK_SIZE);
400 2, addr, len, wrapped) < 0)
563 u8 *wrapped; local
583 /* C-nonce (wrapped) */
588 /* E-nonce (wrapped) */
593 /* Reconfig-Flags (wrapped) */
625 wrapped
[all...]
H A Ddpp.c663 u8 *wrapped; local
731 wrapped = wpabuf_put(msg, wpabuf_len(clear) + AES_BLOCK_SIZE);
737 0, NULL, NULL, wrapped) < 0)
740 wrapped, wpabuf_len(clear) + AES_BLOCK_SIZE);
1701 u8 *wrapped; local
1851 wrapped = wpabuf_put(msg, wpabuf_len(clear) + AES_BLOCK_SIZE);
1856 1, addr, len, wrapped) < 0)
1859 wrapped, wpabuf_len(clear) + AES_BLOCK_SIZE);
3094 u8 *wrapped; local
3125 wrapped
3312 u8 *wrapped; local
[all...]
/freebsd-current/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DDIE.h715 explicit operator bool() const { return bool(wrapped()); }
716 DIEValue &operator*() const { return wrapped()->V; }
729 : iterator_adaptor(X.wrapped()) {}
733 explicit operator bool() const { return bool(wrapped()); }
734 const DIEValue &operator*() const { return wrapped()->V; }
/freebsd-current/sys/dev/dpaa2/
H A Ddpaa2_console.c208 uint32_t wrapped; local
235 wrapped = cd->hdr_eobyte & LOG_HEADER_FLAG_BUFFER_WRAPAROUND;
238 if (wrapped && cd->eod != cd->end)
/freebsd-current/contrib/dialog/
H A Dformbox.c233 bool wrapped = FALSE; local
240 wrapped = TRUE;
243 wrapped = TRUE;
266 if (wrapped) {
/freebsd-current/crypto/openssl/providers/implementations/ciphers/
H A Dcipher_aes_gcm_hw_s390x.inc170 /* ctx->ares contains a complete block if offset has wrapped around */
237 /* ctx->mres contains a complete block if offset has wrapped around */
/freebsd-current/contrib/ncurses/progs/
H A Ddump_entry.c66 static bool wrapped; /* true if we wrap too-long strings */ variable
210 wrapped = wrap_strings;
583 wrapped &&
1272 if (wrapped && did_wrap) {
/freebsd-current/sys/conf/
H A Dkern.opts.mk214 # wrapped around declarations. Module makefiles can optionally compile such
/freebsd-current/contrib/kyua/store/
H A Dschema_v3.sql32 -- The whole contents of this file are wrapped in a transaction. We want
H A Dschema_v1.sql32 -- The whole contents of this file are wrapped in a transaction. We want
H A Dschema_v2.sql32 -- The whole contents of this file are wrapped in a transaction. We want
/freebsd-current/contrib/llvm-project/lld/ELF/
H A DDriver.cpp2518 // so that wrapped symbols are swapped as instructed by the command line.
2519 static void redirectSymbols(ArrayRef<WrappedSymbol> wrapped) { argument
2522 for (const WrappedSymbol &w : wrapped) {
2546 for (const WrappedSymbol &w : wrapped)
2782 std::vector<WrappedSymbol> wrapped = addWrappedSymbols(args); local
2894 redirectSymbols(wrapped);
/freebsd-current/crypto/openssl/util/perl/OpenSSL/
H A DTest.pm219 further on). Where necessary, the command will be wrapped in a

Completed in 389 milliseconds

12