Home
last modified time | relevance | path

Searched refs:estimate (Results 1 – 10 of 10) sorted by relevance

/f-stack/freebsd/contrib/openzfs/module/lua/
H A Dlgc.c912 static void setpause (global_State *g, l_mem estimate) { in setpause() argument
914 estimate = estimate / PAUSEADJ; /* adjust 'estimate' */ in setpause()
915 threshold = (g->gcpause < MAX_LMEM / estimate) /* overflow? */ in setpause()
916 ? estimate * g->gcpause /* no overflow */ in setpause()
1124 lu_mem estimate = g->GCestimate; in generationalcollection() local
1127 if (gettotalbytes(g) > (estimate / 100) * g->gcmajorinc) in generationalcollection()
1130 g->GCestimate = estimate; /* keep estimate from last major coll. */ in generationalcollection()
/f-stack/app/redis-5.0.5/deps/lua/src/
H A Dlgc.c59 #define setthreshold(g) (g->GCthreshold = (g->estimate/100) * g->gcpause)
552 g->estimate = g->totalbytes - udsize; /* first estimate */ in atomic()
578 g->estimate -= old - g->totalbytes; in singlestep()
589 g->estimate -= old - g->totalbytes; in singlestep()
595 if (g->estimate > GCFINALIZECOST) in singlestep()
596 g->estimate -= GCFINALIZECOST; in singlestep()
H A Dlstate.h84 lu_mem estimate; /* an estimate of number of bytes actually in use */ member
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/reservation/
H A Dreservation.shlib138 # Note: This function can be used to do an estimate for a volume that has not
/f-stack/freebsd/contrib/device-tree/Bindings/thermal/
H A Dthermal-zones.yaml102 An estimate of the sustainable power (in mW) that this thermal zone
H A Dthermal.txt161 - sustainable-power: An estimate of the sustainable power (in mW) that the
/f-stack/freebsd/contrib/openzfs/cmd/zpool_influxdb/
H A DREADME.md112 | remaining_t | seconds | estimate of time remaining for scan |
/f-stack/freebsd/contrib/openzfs/contrib/pyzfs/libzfs_core/test/
H A Dtest_libzfs_core.py1635 estimate = lzc.lzc_send_space(snap)
1641 self.assertAlmostEqual(st.st_size, estimate, delta=estimate // 20)
1656 estimate = lzc.lzc_send_space(snap2, snap1)
1662 self.assertAlmostEqual(st.st_size, estimate, delta=estimate // 20)
/f-stack/freebsd/contrib/zstd/
H A DCHANGELOG297 api : fix : sizeof_CCtx() used to over-estimate
/f-stack/freebsd/contrib/openzfs/module/zfs/
H A Dzfs_ioctl.c5383 boolean_t estimate = (zc->zc_guid != 0); in zfs_ioc_send() local
5411 if (estimate) { in zfs_ioc_send()