/netbsd-src/external/ibm-public/postfix/dist/src/flush/ |
H A D | Makefile.in | 2 SRCS = flush.c 3 OBJS = flush.o 9 PROG = flush 62 flush.o: ../../include/argv.h 63 flush.o: ../../include/attr.h 64 flush.o: ../../include/check_arg.h 65 flush.o: ../../include/dict.h 66 flush.o: ../../include/domain_list.h 67 flush.o: ../../include/events.h 68 flush.o: ../../include/flush_clnt.h [all …]
|
/netbsd-src/external/cddl/dtracetoolkit/dist/Docs/Examples/ |
H A D | j_classflow_example.txt | 42 0 311461 4790094965926 -> java/io/BufferedOutputStream.flush 45 0 311461 4790094966293 <- java/io/BufferedOutputStream.flush 48 0 311461 4790094966610 -> java/io/BufferedOutputStream.flush 51 0 311461 4790094966787 <- java/io/BufferedOutputStream.flush 52 0 311461 4790094966811 -> java/io/BufferedOutputStream.flush 55 0 311461 4790094966836 <- java/io/BufferedOutputStream.flush 58 0 311461 4790095970382 -> java/io/BufferedOutputStream.flush 61 0 311461 4790095970462 <- java/io/BufferedOutputStream.flush 64 0 311461 4790095970759 -> java/io/BufferedOutputStream.flush 67 0 311461 4790095970804 <- java/io/BufferedOutputStream.flush [all …]
|
/netbsd-src/external/cddl/dtracetoolkit/dist/Examples/ |
H A D | j_classflow_example.txt | 42 0 311461 4790094965926 -> java/io/BufferedOutputStream.flush 45 0 311461 4790094966293 <- java/io/BufferedOutputStream.flush 48 0 311461 4790094966610 -> java/io/BufferedOutputStream.flush 51 0 311461 4790094966787 <- java/io/BufferedOutputStream.flush 52 0 311461 4790094966811 -> java/io/BufferedOutputStream.flush 55 0 311461 4790094966836 <- java/io/BufferedOutputStream.flush 58 0 311461 4790095970382 -> java/io/BufferedOutputStream.flush 61 0 311461 4790095970462 <- java/io/BufferedOutputStream.flush 64 0 311461 4790095970759 -> java/io/BufferedOutputStream.flush 67 0 311461 4790095970804 <- java/io/BufferedOutputStream.flush [all …]
|
/netbsd-src/external/gpl3/gdb/dist/zlib/examples/ |
H A D | fitblk.c | 75 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()
|
/netbsd-src/external/gpl3/binutils.old/dist/zlib/examples/ |
H A D | fitblk.c | 75 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()
|
/netbsd-src/external/gpl3/binutils/dist/zlib/examples/ |
H A D | fitblk.c | 75 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()
|
/netbsd-src/external/gpl3/gdb.old/dist/zlib/examples/ |
H A D | fitblk.c | 75 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()
|
/netbsd-src/external/gpl2/groff/dist/src/devices/grohtml/ |
H A D | output.cpp | 100 int word_list::flush (FILE *f) in flush() function in word_list 226 col = last_word.flush(fp); in check_newline() 241 col = last_word.flush(fp); in space_or_newline() 251 col += last_word.flush(fp); in space_or_newline() 264 col += last_word.flush(fp); in force_nl() 278 col += last_word.flush(fp); in nl() 293 col += last_word.flush(fp); in put_raw_char() 362 len += last_word.flush(fp); in flush_last_word() 366 col += last_word.flush(fp); in flush_last_word()
|
/netbsd-src/external/cddl/osnet/dist/uts/common/zmod/ |
H A D | deflate.h | 308 # define _tr_tally_lit(s, c, flush) \ argument 313 flush = (s->last_lit == s->lit_bufsize-1); \ 315 # define _tr_tally_dist(s, distance, length, flush) \ argument 323 flush = (s->last_lit == s->lit_bufsize-1); \ 326 # define _tr_tally_lit(s, c, flush) flush = _tr_tally(s, 0, c) argument 327 # define _tr_tally_dist(s, distance, length, flush) \ argument 328 flush = _tr_tally(s, distance, length)
|
H A D | deflate.c | 78 typedef block_state (*compress_func) OF((deflate_state *s, int flush)); 82 local block_state deflate_stored OF((deflate_state *s, int flush)); 83 local block_state deflate_fast OF((deflate_state *s, int flush)); 85 local block_state deflate_slow OF((deflate_state *s, int flush)); 558 int ZEXPORT deflate (strm, flush) in deflate() argument 560 int flush; 566 flush > Z_FINISH || flush < 0) { 573 (s->status == FINISH_STATE && flush != Z_FINISH)) { 580 s->last_flush = flush; 780 } else if (strm->avail_in == 0 && flush <= old_flush && [all …]
|
/netbsd-src/external/gpl3/binutils/dist/zlib/ |
H A D | deflate.c | 73 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)); 804 int ZEXPORT deflate (strm, flush) in deflate() argument 806 int flush; 811 if (deflateStateCheck(strm) || flush > Z_BLOCK || flush < 0) { 818 (s->status == FINISH_STATE && flush != Z_FINISH)) { [all …]
|
H A D | deflate.h | 321 # define _tr_tally_lit(s, c, flush) \ argument 327 flush = (s->sym_next == s->sym_end); \ 329 # define _tr_tally_dist(s, distance, length, flush) \ argument 338 flush = (s->sym_next == s->sym_end); \ 341 # define _tr_tally_lit(s, c, flush) flush = _tr_tally(s, 0, c) argument 342 # define _tr_tally_dist(s, distance, length, flush) \ argument 343 flush = _tr_tally(s, distance, length)
|
/netbsd-src/external/gpl3/gdb/dist/zlib/ |
H A D | deflate.c | 73 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)); 804 int ZEXPORT deflate (strm, flush) in deflate() argument 806 int flush; 811 if (deflateStateCheck(strm) || flush > Z_BLOCK || flush < 0) { 818 (s->status == FINISH_STATE && flush != Z_FINISH)) { [all …]
|
H A D | deflate.h | 321 # define _tr_tally_lit(s, c, flush) \ argument 327 flush = (s->sym_next == s->sym_end); \ 329 # define _tr_tally_dist(s, distance, length, flush) \ argument 338 flush = (s->sym_next == s->sym_end); \ 341 # define _tr_tally_lit(s, c, flush) flush = _tr_tally(s, 0, c) argument 342 # define _tr_tally_dist(s, distance, length, flush) \ argument 343 flush = _tr_tally(s, distance, length)
|
/netbsd-src/external/gpl3/binutils.old/dist/zlib/ |
H A D | deflate.c | 73 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)); 804 int ZEXPORT deflate (strm, flush) in deflate() argument 806 int flush; 811 if (deflateStateCheck(strm) || flush > Z_BLOCK || flush < 0) { 818 (s->status == FINISH_STATE && flush != Z_FINISH)) { [all …]
|
H A D | deflate.h | 321 # define _tr_tally_lit(s, c, flush) \ argument 327 flush = (s->sym_next == s->sym_end); \ 329 # define _tr_tally_dist(s, distance, length, flush) \ argument 338 flush = (s->sym_next == s->sym_end); \ 341 # define _tr_tally_lit(s, c, flush) flush = _tr_tally(s, 0, c) argument 342 # define _tr_tally_dist(s, distance, length, flush) \ argument 343 flush = _tr_tally(s, distance, length)
|
/netbsd-src/usr.bin/fpr/ |
H A D | fpr.c | 85 static void flush(void); 133 flush(); in main() 137 flush(); in main() 142 flush(); in main() 146 flush(); in main() 150 flush(); in main() 159 flush(); in main() 250 flush(); in get_text() 323 flush(void) in flush() function
|
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/parallel/ |
H A D | queue.h | 73 #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()
|
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/parallel/ |
H A D | queue.h | 73 #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()
|
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++98/ |
H A D | ios_init.cc | 134 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()
|
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/src/c++98/ |
H A D | ios_init.cc | 134 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()
|
/netbsd-src/external/mpl/dhcp/dist/client/scripts/ |
H A D | linux | 252 ${ip} -4 addr flush dev ${interface} label ${interface}:0 263 ${ip} -4 addr flush dev ${interface} label ${interface}:0 269 ${ip} -4 addr flush dev ${interface} label ${interface} 315 ${ip} -4 addr flush dev ${interface} label ${interface}:0 329 ${ip} -4 addr flush dev ${interface} label ${interface}:0 334 ${ip} -4 addr flush dev ${interface} label ${interface} 349 ${ip} -4 addr flush dev ${interface} label ${interface}:0 397 ip -4 addr flush dev ${interface} 406 ${ip} -4 addr flush dev ${interface} label ${interface} 430 ${ip} -6 addr flush dev ${interface} scope global permanent
|
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/xray/tests/unit/ |
H A D | fdr_controller_test.cc | 66 ASSERT_TRUE(C->flush()); in TEST_F() 90 ASSERT_TRUE(C->flush()); in TEST_F() 110 ASSERT_TRUE(C->flush()); in TEST_F() 125 ASSERT_TRUE(C->flush()); in TEST_F() 149 ASSERT_TRUE(C->flush()); in TEST_F() 173 ASSERT_TRUE(C->flush()); in TEST_F() 206 ASSERT_TRUE(C->flush()); in TEST_F() 240 ASSERT_TRUE(C->flush()); in TEST_F() 278 ASSERT_TRUE(C->flush()); in TEST_F() 326 ASSERT_TRUE(C->flush()); in TEST_F() [all …]
|
/netbsd-src/etc/rc.d/ |
H A D | ip6addrctl | 26 ${IP6ADDRCTL_CMD} flush >/dev/null 2>&1 42 ${IP6ADDRCTL_CMD} flush >/dev/null 2>&1 62 ${IP6ADDRCTL_CMD} flush >/dev/null 2>&1 89 ${IP6ADDRCTL_CMD} flush >/dev/null 2>&1
|
/netbsd-src/sys/net/npf/ |
H A D | npf_conf.c | 134 npf_config_load(npf_t *npf, npf_config_t *nc, npf_conndb_t *conns, bool flush) in npf_config_load() argument 139 nc->default_pass = flush; in npf_config_load() 160 npf_conn_load(npf, conns, !flush); in npf_config_load() 169 if (flush || conns) { in npf_config_load() 175 if (flush) { in npf_config_load() 184 npf_conn_load(npf, conns, !flush); in npf_config_load()
|