Home
last modified time | relevance | path

Searched full:flushed (Results 1 – 25 of 450) sorted by relevance

12345678910>>...18

/freebsd/contrib/bmake/unit-tests/
H A Ddepsrc-ignore.mk27 # * the "fflush" line, to see stdout being flushed
40 # Goes to the stdout buffer but is not flushed (CompatRunCommand, near
48 # still waiting to be flushed. These two lines are flushed now.
/freebsd/sys/contrib/zstd/lib/compress/
H A Dzstdmt_compress.h80 * @return : minimum amount of data still to be flushed
81 * 0 if fully flushed
90 * Tell how many bytes are ready to be flushed immediately.
91 * Probe the oldest active job (not yet entirely flushed) and check its output buffer.
93 * or, it means oldest job is still active, but everything produced has been flushed so far,
H A Dzstdmt_compress.c264 /* We need 2 output buffers per worker since each dstBuff must be flushed after it is released.
750 … ZSTD_pthread_cond_signal(&job->job_cond); /* warns some more data is ready to be flushed */ in ZSTDMT_compressionJob()
1087 fps.produced = fps.flushed = mtctx->produced; in ZSTDMT_getFrameProgression()
1100 size_t const flushed = ZSTD_isError(cResult) ? 0 : jobPtr->dstFlushed; in ZSTDMT_getFrameProgression() local
1101 assert(flushed <= produced); in ZSTDMT_getFrameProgression()
1105 fps.flushed += flushed; in ZSTDMT_getFrameProgression()
1122 /* look into oldest non-fully-flushed job */ in ZSTDMT_toFlushNow()
1128 size_t const flushed = ZSTD_isError(cResult) ? 0 : jobPtr->dstFlushed; in ZSTDMT_toFlushNow() local
1129 assert(flushed <= produced); in ZSTDMT_toFlushNow()
1131 toFlush = produced - flushed; in ZSTDMT_toFlushNow()
[all …]
/freebsd/usr.sbin/ppp/
H A Dmppe.c113 * The peer has missed a packet. Mark the next output frame to be FLUSHED
246 int dictinit, flushed, ilen, len, n; in MPPEInput() local
257 flushed = prefix & MPPE_FLUSHED; in MPPEInput()
258 prefix &= ~flushed; in MPPEInput()
261 (prefix & MPPE_HEADER_BITMASK) | flushed); in MPPEInput()
268 if (!flushed && mip->stateless) { in MPPEInput()
271 flushed = MPPE_FLUSHED; in MPPEInput()
289 if (flushed) { in MPPEInput()
291 * We can always process a flushed packet. in MPPEInput()
314 log_Printf(LogDEBUG, "MPPE: Not flushed - discarded\n"); in MPPEInput()
[all …]
/freebsd/lib/libpmc/pmu-events/arch/arm64/arm/cortex-a65/
H A Difu.json57 "PublicDescription": "Thread flushed due to TLB miss",
60 "BriefDescription": "Thread flushed due to TLB miss"
63 "PublicDescription": "Thread flushed due to reasons other than TLB miss",
66 "BriefDescription": "Thread flushed due to reasons other than TLB miss"
/freebsd/sys/contrib/openzfs/module/zfs/
H A Dspa_log_spacemap.c70 * the metaslab haven't had its changes flushed. During import, we use this
92 * metaslabs in-order from the oldest-flushed to the most recently flushed
94 * oldest flushed metaslab to distinguish which log space maps have become
109 * [1] The number of metaslabs that were last flushed on that TXG. This is
213 * flushed per txg) and that's why making it a percentage in terms of the
300 * spacemaps are not flushed and destroyed during export in order for the
407 * was flushed or destroyed (e.g due to device removal or pool export/destroy).
409 * We typically flush the oldest flushed metaslab so the first (and oldest)
456 * This function is called after a metaslab is flushed and typically that
457 * metaslab is the oldest flushed, which means that this function will
[all …]
/freebsd/sys/ofed/drivers/infiniband/ulp/ipoib/
H A Dipoib_ethtool.c106 "LRO aggregated", "LRO flushed",
137 data[index++] = priv->lro.lro_mgr.stats.flushed; in ipoib_get_ethtool_stats()
138 if (priv->lro.lro_mgr.stats.flushed) in ipoib_get_ethtool_stats()
140 priv->lro.lro_mgr.stats.flushed; in ipoib_get_ethtool_stats()
/freebsd/contrib/ofed/libcxgb4/
H A Dcq.c61 int flushed = 0; in c4iw_flush_rq() local
69 flushed++; in c4iw_flush_rq()
71 return flushed; in c4iw_flush_rq()
97 unsigned short flushed = 0; in c4iw_flush_sq() local
110 BUG_ON(swsqe->flushed); in c4iw_flush_sq()
111 swsqe->flushed = 1; in c4iw_flush_sq()
117 flushed++; in c4iw_flush_sq()
121 wq->sq.flush_cidx += flushed; in c4iw_flush_sq()
143 BUG_ON(swsqe->flushed); in flush_completed_wrs()
154 swsqe->flushed = 1; in flush_completed_wrs()
[all …]
/freebsd/sys/contrib/openzfs/include/sys/
H A Dspa_log_spacemap.h35 uint64_t lse_mscount; /* # of metaslabs needed to be flushed */
36 uint64_t lse_msdcount; /* # of dirty metaslabs needed to be flushed */
54 uint64_t sls_mscount; /* # of metaslabs flushed in the log's txg */
/freebsd/sys/dev/cxgbe/iw_cxgbe/
H A Dcq.c223 int flushed = 0; in c4iw_flush_rq() local
231 flushed++; in c4iw_flush_rq()
233 return flushed; in c4iw_flush_rq()
259 int flushed = 0; in c4iw_flush_sq() local
272 BUG_ON(swsqe->flushed); in c4iw_flush_sq()
273 swsqe->flushed = 1; in c4iw_flush_sq()
279 flushed++; in c4iw_flush_sq()
283 wq->sq.flush_cidx += flushed; in c4iw_flush_sq()
286 return flushed; in c4iw_flush_sq()
306 BUG_ON(swsqe->flushed); in flush_completed_wrs()
[all …]
/freebsd/sys/netgraph/
H A Dng_mppc.c144 u_char flushed; /* clean history (xmit only) */ member
343 d->flushed = 0; in ng_mppc_rcvmsg()
491 /* Always set the flushed bit in stateless mode */ in ng_mppc_compress()
492 if (d->flushed || ((d->cfg.bits & MPPE_STATELESS) != 0)) { in ng_mppc_compress()
494 d->flushed = 0; in ng_mppc_compress()
528 d->flushed = 1; in ng_mppc_compress()
561 d->flushed = (rtn & MPPC_EXPANDED) != 0 in ng_mppc_compress()
570 if (!d->flushed) { in ng_mppc_compress()
572 d->flushed = 1; in ng_mppc_compress()
650 /* If flushed bit set, we can always handle packet */ in ng_mppc_decompress()
[all …]
/freebsd/share/man/man9/
H A Dalq.9218 to be flushed to disk.
223 to be flushed to disk.
251 has data to flush and is not already in the process of being flushed, the
326 to indicate that the queue should not be immediately scheduled to be flushed to
H A DVOP_FSYNC.980 is similar, but it does not require that all of the file's metadata be flushed.
82 That implies that the data itself must be flushed to disk, as well as some
/freebsd/usr.bin/col/
H A Dcol.c101 static int nblank_lines; /* # blanks after last flushed line */
123 int nflushd_lines; /* number of lines that were flushed */ in main()
260 * flushed yet. in main()
317 * when it is flushed. in main()
330 * Extra lines only exist if no lines have been flushed in main()
362 * number of half line feeds between the final flushed line
591 line < 0 ? "past first line" : "-- line already flushed"); in dowarn()
H A DREADME37 If a character is to be placed on a line that has been flushed, a warning
44 a line is flushed, the characters in the line are sorted according to
/freebsd/lib/libsys/
H A Dmmap.2232 Causes data dirtied via this VM map to be flushed to physical media
238 this option any VM pages you dirty may be flushed to disk every so often
242 Dirty data will be flushed automatically when all mappings of an object are
267 pages, because pages may be flushed to disk in a totally random order.
299 them to be flushed to physical media sooner rather than later.
H A Dmsync.250 will be flushed;
122 buffers and thus cause them to be flushed to physical media sooner
/freebsd/sys/gdb/
H A Dgdb_main.c308 bool flushed;
322 if (qx->flushed) { in qXfer_drain()
332 qx->flushed = true; in qXfer_drain()
358 qx->flushed = false; in init_qXfer_ctx()
459 ctx.qXfer.flushed = false; in do_qXfer_threads_read()
472 while (!ctx.qXfer.flushed && ctx.iter != NULL) { in do_qXfer_threads_read()
549 if (ctx.qXfer.flushed) in do_qXfer_threads_read()
556 if (ctx.qXfer.flushed) in do_qXfer_threads_read()
303 bool flushed; global() member
/freebsd/lib/libc/stdio/
H A Dstdio.380 Output streams are flushed (any unwritten buffer contents are transferred
93 streams are flushed) before program termination.
101 Buffers are flushed by
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DFormattedStream.h37 /// been flushed and the portion of the buffer that's been
49 /// next call to ComputePosition. This is needed when the buffer is flushed
73 /// there when the buffer has not been flushed.
/freebsd/share/man/man4/
H A Dpts.481 whenever the read queue for the terminal is flushed.
83 whenever the write queue for the terminal is flushed.
/freebsd/sys/contrib/device-tree/Bindings/arm/msm/
H A Dqcom,idle-state.txt45 be flushed in s/w, before powering down the core.
50 be flushed, system bus, clocks - lowered, and SoC main XO clock gated and
/freebsd/contrib/ntp/sntp/libevent/sample/
H A Dhello-world.c4 each client connection, and closes each connection once it is flushed.
112 printf("flushed answer\n"); in conn_writecb()
/freebsd/contrib/libevent/sample/
H A Dhello-world.c4 each client connection, and closes each connection once it is flushed.
112 printf("flushed answer\n"); in conn_writecb()
/freebsd/contrib/sendmail/libsm/
H A Dfflush.c57 ** The file is not opened for writing, so it cannot be flushed
77 ** fp -- file pointer to be flushed

12345678910>>...18