Home
last modified time | relevance | path

Searched refs:flush (Results 1 – 25 of 533) sorted by relevance

12345678910>>...22

/freebsd-14.2/sys/dev/hyperv/vmbus/
H A Dhyperv_mmu.c134 struct hyperv_tlb_flush *flush; in hv_vm_tlb_flush() local
148 if (flush == NULL) in hv_vm_tlb_flush()
180 flush->processor_mask = 0; in hv_vm_tlb_flush()
185 flush->address_space = 0; in hv_vm_tlb_flush()
189 flush->address_space = cr3; in hv_vm_tlb_flush()
191 flush->flags = 0; in hv_vm_tlb_flush()
206 if (!flush->processor_mask ) in hv_vm_tlb_flush()
209 max_gvas = (PAGE_SIZE - sizeof(*flush)) / sizeof(flush->gva_list[0]); in hv_vm_tlb_flush()
266 flush->address_space = 0; in hv_flush_tlb_others_ex()
270 flush->address_space = cr3; in hv_flush_tlb_others_ex()
[all …]
/freebsd-14.2/sys/contrib/zlib/
H A Ddeflate.h333 # define _tr_tally_lit(s, c, flush) \ argument
338 flush = (s->sym_next == s->sym_end); \
340 # define _tr_tally_dist(s, distance, length, flush) \ argument
348 flush = (s->sym_next == s->sym_end); \
351 # define _tr_tally_lit(s, c, flush) \ argument
357 flush = (s->sym_next == s->sym_end); \
359 # define _tr_tally_dist(s, distance, length, flush) \ argument
368 flush = (s->sym_next == s->sym_end); \
372 # define _tr_tally_lit(s, c, flush) flush = _tr_tally(s, 0, c) argument
373 # define _tr_tally_dist(s, distance, length, flush) \ argument
[all …]
H A Ddeflate.c950 if (deflateStateCheck(strm) || flush > Z_BLOCK || flush < 0) { in deflate()
963 s->last_flush = flush; in deflate()
984 flush != Z_FINISH) { in deflate()
1228 if (flush != Z_FINISH) return Z_OK; in deflate()
1754 if (flush != Z_NO_FLUSH && flush != Z_FINISH && in deflate_stored()
1792 ((left || flush == Z_FINISH) && flush != Z_NO_FLUSH && in deflate_stored()
1897 if (flush == Z_FINISH) { in deflate_fast()
2025 if (flush == Z_FINISH) { in deflate_slow()
2098 if (flush == Z_FINISH) { in deflate_rle()
2119 if (flush == Z_NO_FLUSH) in deflate_huff()
[all …]
H A Dgzwrite.c66 local int gz_comp(gz_statep state, int flush) { in gz_comp() argument
104 if (strm->avail_out == 0 || (flush != Z_NO_FLUSH && in gz_comp()
105 (flush != Z_FINISH || ret == Z_STREAM_END))) { in gz_comp()
125 ret = deflate(strm, flush); in gz_comp()
135 if (flush == Z_FINISH) in gz_comp()
529 int ZEXPORT gzflush(gzFile file, int flush) { in gzflush() argument
542 if (flush < 0 || flush > Z_FINISH) in gzflush()
553 (void)gz_comp(state, flush); in gzflush()
/freebsd-14.2/sys/contrib/zstd/zlibWrapper/examples/
H A Dfitblk_original.c75 int ret, flush; in partcompress() local
78 flush = Z_NO_FLUSH; in partcompress()
85 flush = Z_FINISH; in partcompress()
86 ret = deflate(def, flush); in partcompress()
88 } while (def->avail_out != 0 && flush == Z_NO_FLUSH); in partcompress()
98 int ret, flush; in recompress() local
101 flush = Z_NO_FLUSH; in recompress()
116 flush = Z_FINISH; in recompress()
117 ret = deflate(def, flush); in recompress()
H A Dfitblk.c80 int ret, flush; in partcompress() local
83 flush = Z_SYNC_FLUSH; in partcompress()
90 flush = Z_FINISH; in partcompress()
92 ret = deflate(def, flush); in partcompress()
95 } while (def->avail_out != 0 && flush == Z_SYNC_FLUSH); in partcompress()
105 int ret, flush; in recompress() local
108 flush = Z_NO_FLUSH; in recompress()
126 flush = Z_FINISH; in recompress()
128 ret = deflate(def, flush); in recompress()
/freebsd-14.2/sys/contrib/xz-embedded/linux/lib/
H A Ddecompress_unxz.c253 int (*flush)(void *src, unsigned int size), in unxz()
269 if (fill == NULL && flush == NULL) in unxz()
277 if (flush == NULL) { in unxz()
299 if (fill == NULL && flush == NULL) { in unxz()
325 if (flush != NULL && (b.out_pos == b.out_size in unxz()
332 if (flush(b.out, b.out_pos) != (int)b.out_pos) in unxz()
342 if (flush != NULL) in unxz()
382 if (flush != NULL) in unxz()
/freebsd-14.2/libexec/rc/rc.d/
H A Dip6addrctl33 ${IP6ADDRCTL_CMD} flush >/dev/null 2>&1
51 ${IP6ADDRCTL_CMD} flush >/dev/null 2>&1
73 ${IP6ADDRCTL_CMD} flush >/dev/null 2>&1
100 ${IP6ADDRCTL_CMD} flush >/dev/null 2>&1
119 ip6addrctl flush >/dev/null 2>&1
/freebsd-14.2/contrib/libcbor/examples/
H A Dstreaming_array.c21 void flush(size_t bytes) { in flush() function
38 flush(cbor_encode_indef_array_start(buffer, BUFFER_SIZE)); in main()
41 flush(cbor_encode_uint32(i, buffer, BUFFER_SIZE)); in main()
44 flush(cbor_encode_break(buffer, BUFFER_SIZE)); in main()
/freebsd-14.2/usr.sbin/ppp/
H A Ddeflate.c74 int olen, ilen, len, res, flush; in DeflateOutput() local
108 flush = Z_NO_FLUSH; in DeflateOutput()
112 if ((res = deflate(&state->cx, flush)) != Z_OK) { in DeflateOutput()
131 flush = Z_SYNC_FLUSH; in DeflateOutput()
205 int seq, flush, res, first; in DeflateInput() local
252 flush = mi->m_next ? Z_NO_FLUSH : Z_SYNC_FLUSH; in DeflateInput()
257 if ((res = inflate(&state->cx, flush)) != Z_OK) { in DeflateInput()
276 flush = Z_SYNC_FLUSH; in DeflateInput()
340 int res, flush, expect_error; in DeflateDictSetup() local
376 flush = Z_NO_FLUSH; in DeflateDictSetup()
[all …]
/freebsd-14.2/sys/contrib/zstd/zlibWrapper/
H A Dzstd_zlibwrapper.c362 ZEXTERN int ZEXPORT z_deflate OF((z_streamp strm, int flush)) in z_deflate() argument
369 return deflate(strm, flush); in z_deflate()
425 if (flush == Z_FULL_FLUSH in z_deflate()
427 || flush == Z_TREES in z_deflate()
429 || flush == Z_BLOCK) in z_deflate()
432 if (flush == Z_FINISH) { in z_deflate()
451 if (flush == Z_SYNC_FLUSH || flush == Z_PARTIAL_FLUSH) { in z_deflate()
733 ZEXTERN int ZEXPORT z_inflate OF((z_streamp strm, int flush)) in z_inflate() argument
738 int const result = inflate(strm, flush); in z_inflate()
769 inflate(strm, flush); in z_inflate()
[all …]
H A Dgzwrite.c78 local int gz_comp(state, flush) in gz_comp() argument
80 int flush;
110 if (strm->avail_out == 0 || (flush != Z_NO_FLUSH &&
111 (flush != Z_FINISH || ret == Z_STREAM_END))) {
131 ret = deflate(strm, flush);
141 if (flush == Z_FINISH)
559 int ZEXPORT gzflush(file, flush) in gzflush() argument
561 int flush;
575 if (flush < 0 || flush > Z_FINISH)
586 (void)gz_comp(state, flush);
/freebsd-14.2/sys/gdb/
H A Dgdb_cons.c56 struct callout flush; member
82 callout_init(&c->flush, 1); in gdb_cninit()
156 callout_stop(&gc->flush); in gdb_cnputc()
170 callout_reset(&gc->flush, hz/4, gdb_cnflush, gc); in gdb_cnputc()
/freebsd-14.2/contrib/atf/atf-c++/
H A Dutils.cpp68 std::cout.flush(); in fork()
69 std::cerr.flush(); in fork()
96 std::cout.flush(); in redirect()
98 std::cerr.flush(); in redirect()
H A Dutils_test.cpp73 std::cout.flush(); in ATF_TEST_CASE_BODY()
85 std::cout.flush(); in ATF_TEST_CASE_BODY()
97 std::cout.flush(); in ATF_TEST_CASE_BODY()
110 std::cout.flush(); in ATF_TEST_CASE_BODY()
302 std::cout.flush(); in ATF_TEST_CASE_BODY()
313 std::cerr.flush(); in ATF_TEST_CASE_BODY()
367 std::cerr.flush(); in ATF_TEST_CASE_BODY()
369 std::cout.flush(); in ATF_TEST_CASE_BODY()
/freebsd-14.2/contrib/blocklist/libexec/
H A Dblacklistd-helper109 flush)
115 /sbin/ipfw table "port$6" flush 2>/dev/null && echo OK
118 /sbin/npfctl rule "$2" flush
123 /sbin/pfctl -a $anchor -t "port${anchor##*/}" -T flush
/freebsd-14.2/usr.bin/tip/libacu/
H A Dbiz31.c53 static int flush(char *);
105 flush(" NO CONNECTION\r\n\07\r\n"); in biz_dialer()
107 flush("CONNECTION\r\n\07"); in biz_dialer()
195 flush(char *s) in flush() function
/freebsd-14.2/contrib/opencsd/decoder/source/
H A Docsd_msg_logger.cpp89 std::cout.flush(); in LogMsg()
95 std::cerr.flush(); in LogMsg()
105 m_out_file.flush(); in LogMsg()
/freebsd-14.2/sys/netpfil/ipfilter/netinet/
H A Dip_lookup.c573 iplookupflush_t flush; in ipf_lookup_flush() local
576 err = BCOPYIN(data, &flush, sizeof(flush)); in ipf_lookup_flush()
582 unit = flush.iplf_unit; in ipf_lookup_flush()
588 flush.iplf_name[sizeof(flush.iplf_name) - 1] = '\0'; in ipf_lookup_flush()
590 type = flush.iplf_type; in ipf_lookup_flush()
600 &flush); in ipf_lookup_flush()
605 flush.iplf_count = num; in ipf_lookup_flush()
606 err = BCOPYOUT(&flush, data, sizeof(flush)); in ipf_lookup_flush()
/freebsd-14.2/sys/contrib/xz-embedded/userspace/
H A Dboottest.c35 static int flush(/*const*/ void *buf, unsigned int size) in flush() function
56 ret = decompress(in, in_size, NULL, &flush, NULL, &in_used, &error); in test_buf_to_cb()
63 ret = decompress(NULL, 0, &fill, &flush, NULL, NULL, &error); in test_cb_to_cb()
/freebsd-14.2/contrib/llvm-project/libcxx/src/
H A Diostream.cpp161 cout_ptr->flush(); in ~DoIOSInit()
163 clog_ptr->flush(); in ~DoIOSInit()
167 wcout_ptr->flush(); in ~DoIOSInit()
169 wclog_ptr->flush(); in ~DoIOSInit()
/freebsd-14.2/contrib/ofed/opensm/opensm/
H A Dosm_log.c202 (p_log->flush || (verbosity & (OSM_LOG_ERROR | OSM_LOG_SYS))) in osm_log()
318 (p_log->flush || (verbosity & (OSM_LOG_ERROR | OSM_LOG_SYS))) in osm_log_v2()
351 if (p_log->flush || (verbosity & OSM_LOG_ERROR)) in osm_log_raw()
466 ib_api_status_t osm_log_init_v2(IN osm_log_t * p_log, IN boolean_t flush, in osm_log_init_v2() argument
472 p_log->flush = flush; in osm_log_init_v2()
495 ib_api_status_t osm_log_init(IN osm_log_t * p_log, IN boolean_t flush, in osm_log_init() argument
499 return osm_log_init_v2(p_log, flush, log_flags, log_file, 0, in osm_log_init()
/freebsd-14.2/tools/regression/ipfw/fwd/
H A Dvimage-fwd.sh127 jexec ${ljid} /sbin/ipfw -f flush
129 jexec ${mjid} /sbin/ipfw -f flush
131 jexec ${rjid} /sbin/ipfw -f flush
170 jexec ${ljid} /sbin/ipfw -f flush
172 jexec ${mjid} /sbin/ipfw -f flush
174 jexec ${rjid} /sbin/ipfw -f flush
/freebsd-14.2/crypto/openssl/external/perl/Text-Template-1.56/t/
H A Dtemplate-encoding.t23 $tmp_fh->flush;
38 $tmp_fh->flush;
/freebsd-14.2/contrib/less/
H A Doutput.c363 public void flush(void) in flush() function
400 flush(); in set_output()
446 flush(); in putchr()
653 flush(); in error()
672 flush(); in ierror_suffix()
710 flush(); in query()

12345678910>>...22