Home
last modified time | relevance | path

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

12345678

/f-stack/dpdk/drivers/event/dsw/
H A Ddsw_evdev.c293 eventdev_stop_flush_t flush, void *flush_arg) in dsw_port_drain_buf() argument
298 flush(dev_id, buf[i], flush_arg); in dsw_port_drain_buf()
306 flush, flush_arg); in dsw_port_drain_paused()
311 eventdev_stop_flush_t flush, void *flush_arg) in dsw_port_drain_out() argument
319 flush, flush_arg); in dsw_port_drain_out()
329 flush(dev_id, ev, flush_arg); in dsw_port_drain_in_ring()
334 eventdev_stop_flush_t flush, void *flush_arg) in dsw_drain() argument
338 if (flush == NULL) in dsw_drain()
355 eventdev_stop_flush_t flush; in dsw_stop() local
359 flush = dev->dev_ops->dev_stop_flush; in dsw_stop()
[all …]
/f-stack/freebsd/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()
/f-stack/app/nginx-1.16.1/src/http/modules/
H A Dngx_http_gunzip_filter_module.c34 unsigned flush:4; member
178 ngx_uint_t flush; in ngx_http_gunzip_body_filter() local
216 flush = 0; in ngx_http_gunzip_body_filter()
219 flush = ctx->busy ? 1 : 0; in ngx_http_gunzip_body_filter()
284 flush = 0; in ngx_http_gunzip_body_filter()
326 ctx->flush = Z_NO_FLUSH; in ngx_http_gunzip_filter_inflate_start()
359 ctx->flush = Z_FINISH; in ngx_http_gunzip_filter_add_data()
362 ctx->flush = Z_SYNC_FLUSH; in ngx_http_gunzip_filter_add_data()
389 ctx->out_buf->flush = 0; in ngx_http_gunzip_filter_get_buf()
479 ctx->flush = Z_NO_FLUSH; in ngx_http_gunzip_filter_inflate()
[all …]
H A Dngx_http_gzip_filter_module.c54 unsigned flush:4; member
322 ngx_uint_t flush; in ngx_http_gzip_body_filter() local
392 flush = 0; in ngx_http_gzip_body_filter()
395 flush = ctx->busy ? 1 : 0; in ngx_http_gzip_body_filter()
468 flush = 0; in ngx_http_gzip_body_filter()
656 ctx->flush = Z_NO_FLUSH; in ngx_http_gzip_filter_deflate_start()
742 ctx->flush = Z_FINISH; in ngx_http_gzip_filter_add_data()
744 } else if (ctx->in_buf->flush) { in ngx_http_gzip_filter_add_data()
745 ctx->flush = Z_SYNC_FLUSH; in ngx_http_gzip_filter_add_data()
869 ctx->flush = Z_NO_FLUSH; in ngx_http_gzip_filter_deflate()
[all …]
/f-stack/freebsd/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()
/f-stack/freebsd/contrib/zlib/
H A Ddeflate.h326 # define _tr_tally_lit(s, c, flush) \ argument
331 flush = (s->last_lit == s->lit_bufsize-1); \
333 # define _tr_tally_dist(s, distance, length, flush) \ argument
341 flush = (s->last_lit == s->lit_bufsize-1); \
344 # define _tr_tally_lit(s, c, flush) flush = _tr_tally(s, 0, c) argument
345 # define _tr_tally_dist(s, distance, length, flush) \ argument
346 flush = _tr_tally(s, distance, length)
H A Ddeflate.c768 int flush;
773 if (deflateStateCheck(strm) || flush > Z_BLOCK || flush < 0) {
786 s->last_flush = flush;
1650 int flush;
1773 if (flush != Z_NO_FLUSH && flush != Z_FINISH &&
1808 ((left || flush == Z_FINISH) && flush != Z_NO_FLUSH &&
1831 int flush;
1916 if (flush == Z_FINISH) {
1933 int flush;
2064 int flush;
[all …]
H A Dgzwrite.c76 local int gz_comp(state, flush) in gz_comp() argument
78 int flush;
108 if (strm->avail_out == 0 || (flush != Z_NO_FLUSH &&
109 (flush != Z_FINISH || ret == Z_STREAM_END))) {
129 ret = deflate(strm, flush);
139 if (flush == Z_FINISH)
556 int ZEXPORT gzflush(file, flush) in gzflush() argument
558 int flush;
572 if (flush < 0 || flush > Z_FINISH)
583 (void)gz_comp(state, flush);
/f-stack/app/nginx-1.16.1/src/http/
H A Dngx_http_write_filter_module.c51 ngx_uint_t last, flush, sync; in ngx_http_write_filter() local
64 flush = 0; in ngx_http_write_filter()
121 if (cl->buf->flush || cl->buf->recycled) { in ngx_http_write_filter()
122 flush = 1; in ngx_http_write_filter()
193 if (cl->buf->flush || cl->buf->recycled) { in ngx_http_write_filter()
194 flush = 1; in ngx_http_write_filter()
209 "http write filter: l:%ui f:%ui s:%O", last, flush, size); in ngx_http_write_filter()
219 if (!last && !flush && in && size < (off_t) clcf->postpone_output) { in ngx_http_write_filter()
232 if (last || flush || sync) { in ngx_http_write_filter()
/f-stack/dpdk/examples/ipsec-secgw/test/
H A Dtun_aesgcm_defs.sh10 ssh ${REMOTE_HOST} ip xfrm policy flush
11 ssh ${REMOTE_HOST} ip xfrm state flush
43 ssh ${REMOTE_HOST} ip xfrm policy flush
44 ssh ${REMOTE_HOST} ip xfrm state flush
78 ssh ${REMOTE_HOST} ip xfrm policy flush
79 ssh ${REMOTE_HOST} ip xfrm state flush
113 ssh ${REMOTE_HOST} ip xfrm policy flush
114 ssh ${REMOTE_HOST} ip xfrm state flush
H A Dtun_aesctr_sha1_defs.sh10 ssh ${REMOTE_HOST} ip xfrm policy flush
11 ssh ${REMOTE_HOST} ip xfrm state flush
43 ssh ${REMOTE_HOST} ip xfrm policy flush
44 ssh ${REMOTE_HOST} ip xfrm state flush
78 ssh ${REMOTE_HOST} ip xfrm policy flush
79 ssh ${REMOTE_HOST} ip xfrm state flush
113 ssh ${REMOTE_HOST} ip xfrm policy flush
114 ssh ${REMOTE_HOST} ip xfrm state flush
H A Dtun_aescbc_sha1_defs.sh10 ssh ${REMOTE_HOST} ip xfrm policy flush
11 ssh ${REMOTE_HOST} ip xfrm state flush
43 ssh ${REMOTE_HOST} ip xfrm policy flush
44 ssh ${REMOTE_HOST} ip xfrm state flush
78 ssh ${REMOTE_HOST} ip xfrm policy flush
79 ssh ${REMOTE_HOST} ip xfrm state flush
113 ssh ${REMOTE_HOST} ip xfrm policy flush
114 ssh ${REMOTE_HOST} ip xfrm state flush
H A Dtun_3descbc_sha1_defs.sh10 ssh ${REMOTE_HOST} ip xfrm policy flush
11 ssh ${REMOTE_HOST} ip xfrm state flush
43 ssh ${REMOTE_HOST} ip xfrm policy flush
44 ssh ${REMOTE_HOST} ip xfrm state flush
78 ssh ${REMOTE_HOST} ip xfrm policy flush
79 ssh ${REMOTE_HOST} ip xfrm state flush
113 ssh ${REMOTE_HOST} ip xfrm policy flush
114 ssh ${REMOTE_HOST} ip xfrm state flush
H A Dtrs_aesgcm_defs.sh10 ssh ${REMOTE_HOST} ip xfrm policy flush
11 ssh ${REMOTE_HOST} ip xfrm state flush
41 ssh ${REMOTE_HOST} ip xfrm policy flush
42 ssh ${REMOTE_HOST} ip xfrm state flush
H A Dtrs_aesctr_sha1_defs.sh10 ssh ${REMOTE_HOST} ip xfrm policy flush
11 ssh ${REMOTE_HOST} ip xfrm state flush
41 ssh ${REMOTE_HOST} ip xfrm policy flush
42 ssh ${REMOTE_HOST} ip xfrm state flush
H A Dtrs_3descbc_sha1_defs.sh10 ssh ${REMOTE_HOST} ip xfrm policy flush
11 ssh ${REMOTE_HOST} ip xfrm state flush
41 ssh ${REMOTE_HOST} ip xfrm policy flush
42 ssh ${REMOTE_HOST} ip xfrm state flush
H A Dtrs_aescbc_sha1_defs.sh10 ssh ${REMOTE_HOST} ip xfrm policy flush
11 ssh ${REMOTE_HOST} ip xfrm state flush
41 ssh ${REMOTE_HOST} ip xfrm policy flush
42 ssh ${REMOTE_HOST} ip xfrm state flush
H A Dcommon_defs.sh168 ip neigh flush dev ${LOCAL_IFACE}
191 ssh ${REMOTE_HOST} ip neigh flush dev ${REMOTE_IFACE}
197 ssh ${REMOTE_HOST} iptables --flush
212 ssh ${REMOTE_HOST} ip6tables --flush
/f-stack/app/nginx-1.16.1/src/stream/
H A Dngx_stream_write_filter_module.c57 ngx_uint_t last, flush, sync; in ngx_stream_write_filter() local
88 flush = 0; in ngx_stream_write_filter()
145 if (cl->buf->flush || cl->buf->recycled) { in ngx_stream_write_filter()
146 flush = 1; in ngx_stream_write_filter()
217 if (cl->buf->flush || cl->buf->recycled) { in ngx_stream_write_filter()
218 flush = 1; in ngx_stream_write_filter()
233 "stream write filter: l:%ui f:%ui s:%O", last, flush, size); in ngx_stream_write_filter()
239 if (last || flush || sync) { in ngx_stream_write_filter()
/f-stack/freebsd/contrib/zstd/zlibWrapper/
H A Dzstd_zlibwrapper.c353 ZEXTERN int ZEXPORT z_deflate OF((z_streamp strm, int flush)) in z_deflate() argument
360 return deflate(strm, flush); in z_deflate()
410 if (flush == Z_FULL_FLUSH in z_deflate()
412 || flush == Z_TREES in z_deflate()
414 || flush == Z_BLOCK) in z_deflate()
417 if (flush == Z_FINISH) { in z_deflate()
436 if (flush == Z_SYNC_FLUSH || flush == Z_PARTIAL_FLUSH) { in z_deflate()
718 ZEXTERN int ZEXPORT z_inflate OF((z_streamp strm, int flush)) in z_inflate() argument
723 int const result = inflate(strm, flush); in z_inflate()
754 inflate(strm, flush); in z_inflate()
[all …]
/f-stack/freebsd/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()
/f-stack/dpdk/drivers/compress/zlib/
H A Dzlib_pmd.c21 int ret, flush, fin_flush; in process_zlib_deflate() local
53 flush = Z_NO_FLUSH; in process_zlib_deflate()
61 flush = fin_flush; in process_zlib_deflate()
64 ret = deflate(strm, flush); in process_zlib_deflate()
111 int ret, flush; in process_zlib_inflate() local
131 flush = Z_NO_FLUSH; in process_zlib_inflate()
137 ret = inflate(strm, flush); in process_zlib_inflate()
/f-stack/freebsd/contrib/ipfilter/netinet/
H A Dip_lookup.c600 iplookupflush_t flush; local
603 err = BCOPYIN(data, &flush, sizeof(flush));
609 unit = flush.iplf_unit;
615 flush.iplf_name[sizeof(flush.iplf_name) - 1] = '\0';
617 type = flush.iplf_type;
627 &flush);
632 flush.iplf_count = num;
633 err = BCOPYOUT(&flush, data, sizeof(flush));
/f-stack/app/nginx-1.16.1/src/os/unix/
H A Dngx_udp_sendmsg_chain.c118 ngx_uint_t n, flush; in ngx_udp_output_chain_to_iovec() local
127 flush = 0; in ngx_udp_output_chain_to_iovec()
129 for ( /* void */ ; in && !flush; in = in->next) { in ngx_udp_output_chain_to_iovec()
131 if (in->buf->flush || in->buf->last_buf) { in ngx_udp_output_chain_to_iovec()
132 flush = 1; in ngx_udp_output_chain_to_iovec()
184 if (!flush) { in ngx_udp_output_chain_to_iovec()

12345678