Home
last modified time | relevance | path

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

12345678910>>...21

/freebsd/sys/dev/hyperv/vmbus/
H A Dhyperv_mmu.c134 struct hyperv_tlb_flush *flush; in hv_vm_tlb_flush() local
147 flush = *VMBUS_PCPU_PTR(sc, cpu_mem, curcpu); in hv_vm_tlb_flush()
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()
186 flush->flags = HV_FLUSH_ALL_VIRTUAL_ADDRESS_SPACES; in hv_vm_tlb_flush()
189 flush->address_space = cr3; in hv_vm_tlb_flush()
190 flush->address_space &= ~CR3_PCID_MASK; in hv_vm_tlb_flush()
191 flush->flags = 0; in hv_vm_tlb_flush()
194 flush->flags |= HV_FLUSH_ALL_PROCESSORS; in hv_vm_tlb_flush()
[all …]
/freebsd/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.c70 typedef block_state (*compress_func)(deflate_state *s, int flush);
73 local block_state deflate_stored(deflate_state *s, int flush);
74 local block_state deflate_fast(deflate_state *s, int flush);
76 local block_state deflate_slow(deflate_state *s, int flush);
78 local block_state deflate_rle(deflate_state *s, int flush);
79 local block_state deflate_huff(deflate_state *s, int flush);
946 int ZEXPORT deflate(z_streamp strm, int flush) { in deflate() argument
950 if (deflateStateCheck(strm) || flush > Z_BLOCK || flush < 0) { in deflate()
957 (s->status == FINISH_STATE && flush != Z_FINISH)) { in deflate()
963 s->last_flush = flush; in deflate()
[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/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/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/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/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/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()
123 if (flush == Z_SYNC_FLUSH && state->cx.avail_out != 0) 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()
268 if (flush == Z_SYNC_FLUSH && state->cx.avail_out != 0) in DeflateInput()
276 flush = Z_SYNC_FLUSH; in DeflateInput()
[all …]
/freebsd/sys/contrib/zstd/zlibWrapper/
H A Dzstd_zlibwrapper.c362 ZEXTERN int ZEXPORT z_deflate OF((z_streamp strm, int flush)) in z_deflate() argument
368 … (int)flush, (int)strm->avail_in, (int)strm->avail_out, (int)strm->total_in, (int)strm->total_out); in z_deflate()
369 return deflate(strm, flush); in z_deflate()
378 …{ int const initErr = ZWRAP_initializeCStream(zwc, NULL, 0, (flush == Z_FINISH) ? strm->avail_in :… in z_deflate()
380 if (flush != Z_FINISH) zwc->comprState = ZWRAP_useReset; in z_deflate()
390 …resetErr = ZSTD_CCtx_setPledgedSrcSize(zwc->zbc, (flush == Z_FINISH) ? strm->avail_in : zwc->pledg… in z_deflate()
397 …int const res = ZWRAP_initializeCStream(zwc, NULL, 0, (flush == Z_FINISH) ? strm->avail_in : ZSTD_… in z_deflate()
399 if (flush != Z_FINISH) zwc->comprState = ZWRAP_useReset; in z_deflate()
404 …late2 flush=%d avail_in=%d avail_out=%d total_in=%d total_out=%d\n", (int)flush, (int)strm->avail_… in z_deflate()
425 if (flush == Z_FULL_FLUSH in z_deflate()
[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/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/sys/gdb/
H A Dgdb_cons.c55 struct callout flush; member
81 callout_init(&c->flush, 1); in gdb_cninit()
155 callout_stop(&gc->flush); in gdb_cnputc()
169 callout_reset(&gc->flush, hz/4, gdb_cnflush, gc); in gdb_cnputc()
/freebsd/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/usr.bin/tip/libacu/
H A Dbiz31.c45 static int flush(char *);
97 flush(" NO CONNECTION\r\n\07\r\n"); in biz_dialer()
99 flush("CONNECTION\r\n\07"); in biz_dialer()
187 flush(char *s) in flush() function
/freebsd/sys/netpfil/ipfilter/netinet/
H A Dip_lookup.c570 iplookupflush_t flush; in ipf_lookup_flush() local
573 err = BCOPYIN(data, &flush, sizeof(flush)); in ipf_lookup_flush()
579 unit = flush.iplf_unit; in ipf_lookup_flush()
585 flush.iplf_name[sizeof(flush.iplf_name) - 1] = '\0'; in ipf_lookup_flush()
587 type = flush.iplf_type; in ipf_lookup_flush()
597 &flush); in ipf_lookup_flush()
602 flush.iplf_count = num; in ipf_lookup_flush()
603 err = BCOPYOUT(&flush, data, sizeof(flush)); in ipf_lookup_flush()
/freebsd/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/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/contrib/llvm-project/libcxx/src/
H A Diostream.cpp153 cout_ptr->flush(); in ~DoIOSInit()
155 clog_ptr->flush(); in ~DoIOSInit()
159 wcout_ptr->flush(); in ~DoIOSInit()
161 wclog_ptr->flush(); in ~DoIOSInit()
/freebsd/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/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/crypto/openssl/external/perl/Text-Template-1.56/t/
H A Dtemplate-encoding.t23 $tmp_fh->flush;
38 $tmp_fh->flush;
/freebsd/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>>...21