Home
last modified time | relevance | path

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

12345678

/dflybsd-src/sbin/hammer2/zlib/
H A Dhammer2_zlib_deflate.c74 typedef block_state (*compress_func)(deflate_state *s, int flush);
79 local block_state deflate_slow(deflate_state *s, int flush);
81 local block_state deflate_rle(deflate_state *s, int flush);
82 local block_state deflate_huff(deflate_state *s, int flush);
364 deflate (z_streamp strm, int flush) in deflate() argument
370 flush > Z_BLOCK || flush < 0) { in deflate()
377 (s->status == FINISH_STATE && flush != Z_FINISH)) { in deflate()
384 s->last_flush = flush; in deflate()
430 } else if (strm->avail_in == 0 && RANK(flush) <= RANK(old_flush) && in deflate()
431 flush != Z_FINISH) { in deflate()
[all …]
H A Dhammer2_zlib_deflate.h314 # define _tr_tally_lit(s, c, flush) \ argument
319 flush = (s->last_lit == s->lit_bufsize-1); \
321 # define _tr_tally_dist(s, distance, length, flush) \ argument
329 flush = (s->last_lit == s->lit_bufsize-1); \
332 # define _tr_tally_lit(s, c, flush) flush = _tr_tally(s, 0, c) argument
333 # define _tr_tally_dist(s, distance, length, flush) \ argument
334 flush = _tr_tally(s, distance, length)
/dflybsd-src/usr.sbin/makefs/hammer2/zlib/
H A Dhammer2_zlib_deflate.c79 typedef block_state (*compress_func)(deflate_state *s, int flush);
84 local block_state deflate_slow(deflate_state *s, int flush);
86 local block_state deflate_rle(deflate_state *s, int flush);
87 local block_state deflate_huff(deflate_state *s, int flush);
369 deflate (z_streamp strm, int flush) in deflate() argument
375 flush > Z_BLOCK || flush < 0) { in deflate()
382 (s->status == FINISH_STATE && flush != Z_FINISH)) { in deflate()
389 s->last_flush = flush; in deflate()
435 } else if (strm->avail_in == 0 && RANK(flush) <= RANK(old_flush) && in deflate()
436 flush != Z_FINISH) { in deflate()
[all …]
H A Dhammer2_zlib_deflate.h314 # define _tr_tally_lit(s, c, flush) \ argument
319 flush = (s->last_lit == s->lit_bufsize-1); \
321 # define _tr_tally_dist(s, distance, length, flush) \ argument
329 flush = (s->last_lit == s->lit_bufsize-1); \
332 # define _tr_tally_lit(s, c, flush) flush = _tr_tally(s, 0, c) argument
333 # define _tr_tally_dist(s, distance, length, flush) \ argument
334 flush = _tr_tally(s, distance, length)
/dflybsd-src/sys/vfs/hammer2/zlib/
H A Dhammer2_zlib_deflate.c79 typedef block_state (*compress_func)(deflate_state *s, int flush);
84 local block_state deflate_slow(deflate_state *s, int flush);
86 local block_state deflate_rle(deflate_state *s, int flush);
87 local block_state deflate_huff(deflate_state *s, int flush);
369 deflate (z_streamp strm, int flush) in deflate() argument
375 flush > Z_BLOCK || flush < 0) { in deflate()
382 (s->status == FINISH_STATE && flush != Z_FINISH)) { in deflate()
389 s->last_flush = flush; in deflate()
435 } else if (strm->avail_in == 0 && RANK(flush) <= RANK(old_flush) && in deflate()
436 flush != Z_FINISH) { in deflate()
[all …]
H A Dhammer2_zlib_deflate.h314 # define _tr_tally_lit(s, c, flush) \ argument
319 flush = (s->last_lit == s->lit_bufsize-1); \
321 # define _tr_tally_dist(s, distance, length, flush) \ argument
329 flush = (s->last_lit == s->lit_bufsize-1); \
332 # define _tr_tally_lit(s, c, flush) flush = _tr_tally(s, 0, c) argument
333 # define _tr_tally_dist(s, distance, length, flush) \ argument
334 flush = _tr_tally(s, distance, length)
/dflybsd-src/contrib/zlib-1.2/
H A Ddeflate.c73 typedef block_state (*compress_func) OF((deflate_state *s, int flush));
79 local block_state deflate_stored OF((deflate_state *s, int flush));
80 local block_state deflate_fast OF((deflate_state *s, int flush));
82 local block_state deflate_slow OF((deflate_state *s, int flush));
84 local block_state deflate_rle OF((deflate_state *s, int flush));
85 local block_state deflate_huff OF((deflate_state *s, int flush));
763 int ZEXPORT deflate (strm, flush) in deflate() argument
765 int flush;
770 if (deflateStateCheck(strm) || flush > Z_BLOCK || flush < 0) {
777 (s->status == FINISH_STATE && flush != Z_FINISH)) {
[all …]
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 Dgzwrite.c73 local int gz_comp(state, flush) in gz_comp() argument
75 int flush;
105 if (strm->avail_out == 0 || (flush != Z_NO_FLUSH &&
106 (flush != Z_FINISH || ret == Z_STREAM_END))) {
126 ret = deflate(strm, flush);
136 if (flush == Z_FINISH)
553 int ZEXPORT gzflush(file, flush) in gzflush() argument
555 int flush;
569 if (flush < 0 || flush > Z_FINISH)
580 (void)gz_comp(state, flush);
/dflybsd-src/usr.sbin/ppp/
H A Ddeflate.c75 int olen, ilen, len, res, flush; in DeflateOutput() local
109 flush = Z_NO_FLUSH; in DeflateOutput()
113 if ((res = deflate(&state->cx, flush)) != Z_OK) { in DeflateOutput()
124 if (flush == Z_SYNC_FLUSH && state->cx.avail_out != 0) in DeflateOutput()
132 flush = Z_SYNC_FLUSH; in DeflateOutput()
206 int seq, flush, res, first; in DeflateInput() local
253 flush = mi->m_next ? Z_NO_FLUSH : Z_SYNC_FLUSH; in DeflateInput()
258 if ((res = inflate(&state->cx, flush)) != Z_OK) { in DeflateInput()
269 if (flush == Z_SYNC_FLUSH && state->cx.avail_out != 0) in DeflateInput()
277 flush = Z_SYNC_FLUSH; in DeflateInput()
[all …]
/dflybsd-src/etc/rc.d/
H A Dip6addrctl38 ${IP6ADDRCTL_CMD} flush >/dev/null 2>&1
56 ${IP6ADDRCTL_CMD} flush >/dev/null 2>&1
78 ${IP6ADDRCTL_CMD} flush >/dev/null 2>&1
95 ${IP6ADDRCTL_CMD} flush >/dev/null 2>&1
114 ip6addrctl flush >/dev/null 2>&1
/dflybsd-src/contrib/gcc-4.7/libstdc++-v3/include/parallel/
H A Dqueue.h73 #pragma omp flush in _RestrictedBoundedConcurrentQueue()
103 #pragma omp flush in pop_front()
118 #pragma omp flush in pop_front()
130 #pragma omp flush in pop_back()
145 #pragma omp flush in pop_back()
H A Dworkstealing.h207 # pragma omp flush(__busy) in __for_each_template_random_access_workstealing()
234 # pragma omp flush(__busy) in __for_each_template_random_access_workstealing()
253 # pragma omp flush(__busy) in __for_each_template_random_access_workstealing()
290 # pragma omp flush(__busy) in __for_each_template_random_access_workstealing()
292 # pragma omp flush(__busy) in __for_each_template_random_access_workstealing()
/dflybsd-src/contrib/gcc-8.0/libstdc++-v3/include/parallel/
H A Dqueue.h73 #pragma omp flush in _RestrictedBoundedConcurrentQueue()
103 #pragma omp flush in pop_front()
118 #pragma omp flush in pop_front()
130 #pragma omp flush in pop_back()
145 #pragma omp flush in pop_back()
H A Dworkstealing.h207 # pragma omp flush(__busy) in __for_each_template_random_access_workstealing()
234 # pragma omp flush(__busy) in __for_each_template_random_access_workstealing()
253 # pragma omp flush(__busy) in __for_each_template_random_access_workstealing()
290 # pragma omp flush(__busy) in __for_each_template_random_access_workstealing()
292 # pragma omp flush(__busy) in __for_each_template_random_access_workstealing()
/dflybsd-src/contrib/gcc-8.0/libstdc++-v3/src/c++98/
H A Dios_init.cc134 cout.flush(); in ~Init()
135 cerr.flush(); in ~Init()
136 clog.flush(); in ~Init()
139 wcout.flush(); in ~Init()
140 wcerr.flush(); in ~Init()
141 wclog.flush(); in ~Init()
/dflybsd-src/contrib/gcc-4.7/libstdc++-v3/src/c++98/
H A Dios_init.cc136 cout.flush(); in ~Init()
137 cerr.flush(); in ~Init()
138 clog.flush(); in ~Init()
141 wcout.flush(); in ~Init()
142 wcerr.flush(); in ~Init()
143 wclog.flush(); in ~Init()
/dflybsd-src/sys/vfs/hammer2/
H A DTODO15 against flush.
35 code doesn't know that and the last flush batch will probably match
40 * More complex transaction sequencing and flush merging. Right now it is
69 * flush synchronization boundary crossing check and current flush chain
99 properly synchronized with the flush. This needs to be adjusted
130 * modifications past our flush point do not adjust vchain.
144 * Snapshot / flush-synchronization point. remodified data that crosses
159 the iterator in the volume header, on load, or flush sequencing will
177 * Deleted inode not reachable via tree for volume flush but still reachable
190 * Check flush race upward recursion setting SUBMODIFIED vs downward
[all …]
/dflybsd-src/usr.sbin/pppctl/
H A Dpppctl.c139 int flush; in Receive() local
142 flush = sizeof Buffer / 2; in Receive()
144 flush = last - Buffer + 1; in Receive()
145 write(1, Buffer, flush); in Receive()
146 strcpy(temp, Buffer + flush); in Receive()
148 len -= flush; in Receive()
/dflybsd-src/sbin/fsck/
H A Dutilities.c208 flush(fswritefd, bp); in getblk()
217 flush(int fd, struct bufarea *bp) in flush() function
261 flush(fswritefd, &sblk); in ckfini()
266 flush(fswritefd, &sblk); in ckfini()
268 flush(fswritefd, &cgblk); in ckfini()
272 flush(fswritefd, bp); in ckfini()
284 flush(fswritefd, &sblk); in ckfini()
/dflybsd-src/contrib/less/
H A Doutput.c368 public void flush(void) in flush() function
405 flush(); in set_output()
453 flush(); in putchr()
674 flush(); in error()
693 flush(); in ierror_suffix()
734 flush(); in query()
H A Dlsystem.c96 flush(); /* Make sure the deinit chars get out */ in lsystem()
192 flush(); in lsystem()
309 flush(); in pipe_data()
/dflybsd-src/contrib/tcsh-6/
H A Dsh.print.c183 flush(); in xputchar()
208 flush(); in putpure()
219 flush(void) in flush() function
/dflybsd-src/contrib/gcc-8.0/libstdc++-v3/include/bits/
H A Dostream.tcc52 __os.tie()->flush(); in sentry()
211 flush() in flush() function in std::basic_ostream
362 extern template ostream& flush(ostream&);
385 extern template wostream& flush(wostream&);
/dflybsd-src/contrib/gcc-4.7/libstdc++-v3/include/bits/
H A Dostream.tcc54 __os.tie()->flush(); in sentry()
213 flush() in flush() function in std::basic_ostream
364 extern template ostream& flush(ostream&);
387 extern template wostream& flush(wostream&);

12345678