| /freebsd-12-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/lua/ |
| D | lgc.c | 913 static void setpause (global_State *g, l_mem estimate) { in setpause() argument 915 estimate = estimate / PAUSEADJ; /* adjust 'estimate' */ in setpause() 916 threshold = (g->gcpause < MAX_LMEM / estimate) /* overflow? */ in setpause() 917 ? estimate * g->gcpause /* no overflow */ in setpause() 1125 lu_mem estimate = g->GCestimate; in generationalcollection() local 1128 if (gettotalbytes(g) > (estimate / 100) * g->gcmajorinc) in generationalcollection() 1131 g->GCestimate = estimate; /* keep estimate from last major coll. */ in generationalcollection()
|
| /freebsd-12-stable/usr.sbin/quot/ |
| D | quot.c | 58 static char estimate; variable 398 sz = estimate ? virtualblocks(super, dp) : in dofsizes() 460 estimate ? virtualblocks(super, dp) : in douser() 601 estimate = 1; in main()
|
| /freebsd-12-stable/contrib/gcclibs/libiberty/ |
| D | cp-demangle.c | 2679 int estimate, size_t *palc) in cplus_demangle_print() argument 2685 dpi.alc = estimate + 1; in cplus_demangle_print() 3817 int estimate; in d_demangle() local 3899 estimate = len + di.expansion + 10 * di.did_subs; in d_demangle() 3900 estimate += estimate / 8; in d_demangle() 3904 ret = cplus_demangle_print (options, dc, estimate, palc); in d_demangle() 3917 if (rlen > 2 * estimate) in d_demangle() 3919 rlen, estimate); in d_demangle() 3920 else if (rlen > estimate) in d_demangle() 3922 rlen, estimate); in d_demangle() [all …]
|
| /freebsd-12-stable/crypto/openssl/doc/man3/ |
| D | RAND_add.pod | 49 The B<randomness> argument is an estimate of how much randomness is 52 Details about sources of randomness and how to estimate their randomness
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/X86/ |
| D | X86Schedule.td | 281 defm WriteFRcp : X86SchedWritePair<ReadAfterVecLd>; // Floating point reciprocal estimate. 282 defm WriteFRcpX : X86SchedWritePair<ReadAfterVecXLd>; // Floating point reciprocal estimate (XMM). 283 defm WriteFRcpY : X86SchedWritePair<ReadAfterVecYLd>; // Floating point reciprocal estimate (YMM). 284 defm WriteFRcpZ : X86SchedWritePair<ReadAfterVecYLd>; // Floating point reciprocal estimate (ZMM). 285 …riteFRsqrt : X86SchedWritePair<ReadAfterVecLd>; // Floating point reciprocal square root estimate. 286 …sqrtX: X86SchedWritePair<ReadAfterVecXLd>; // Floating point reciprocal square root estimate (XMM). 287 …sqrtY: X86SchedWritePair<ReadAfterVecYLd>; // Floating point reciprocal square root estimate (YMM). 288 …sqrtZ: X86SchedWritePair<ReadAfterVecYLd>; // Floating point reciprocal square root estimate (ZMM).
|
| D | X86ScheduleZnver3.td | 959 … : Zn3WriteResXMMPair<WriteFRcp, [Zn3FPFMul01], 3, [1], 1>; // Floating point reciprocal estimate. 960 …WriteResXMMPair<WriteFRcpX, [Zn3FPFMul01], 3, [1], 1>; // Floating point reciprocal estimate (XMM). 961 …WriteResYMMPair<WriteFRcpY, [Zn3FPFMul01], 3, [1], 1>; // Floating point reciprocal estimate (YMM). 962 defm : X86WriteResPairUnsupported<WriteFRcpZ>; // Floating point reciprocal estimate (ZMM). 963 …esXMMPair<WriteFRsqrt, [Zn3FPFDiv], 3, [1], 1>; // Floating point reciprocal square root estimate. 964 …air<WriteFRsqrtX, [Zn3FPFDiv], 3, [1], 1>; // Floating point reciprocal square root estimate (XMM). 965 …air<WriteFRsqrtY, [Zn3FPFDiv], 3, [1], 1>; // Floating point reciprocal square root estimate (YMM). 966 defm : X86WriteResPairUnsupported<WriteFRsqrtZ>; // Floating point reciprocal square root estimate …
|
| D | X86SchedBroadwell.td | 300 defm : BWWriteResPair<WriteFRcp, [BWPort0], 5, [1], 1, 5>; // Floating point reciprocal estimate. 301 defm : BWWriteResPair<WriteFRcpX, [BWPort0], 5, [1], 1, 5>; // Floating point reciprocal estimate… 302 …riteFRcpY, [BWPort0,BWPort015], 11, [2,1], 3, 6>; // Floating point reciprocal estimate (YMM/ZMM). 305 …eResPair<WriteFRsqrt, [BWPort0], 5, [1], 1, 5>; // Floating point reciprocal square root estimate. 306 …ir<WriteFRsqrtX,[BWPort0], 5, [1], 1, 5>; // Floating point reciprocal square root estimate (XMM). 307 …[BWPort0,BWPort015], 11, [2,1], 3, 6>; // Floating point reciprocal square root estimate (YMM/ZMM).
|
| D | X86SchedSkylakeClient.td | 293 …fm : SKLWriteResPair<WriteFRcp, [SKLPort0], 4, [1], 1, 5>; // Floating point reciprocal estimate. 298 …eResPair<WriteFRsqrt, [SKLPort0], 4, [1], 1, 5>; // Floating point reciprocal square root estimate.
|
| D | X86SchedSkylakeServer.td | 293 …m : SKXWriteResPair<WriteFRcp, [SKXPort0], 4, [1], 1, 5>; // Floating point reciprocal estimate. 298 …ResPair<WriteFRsqrt, [SKXPort0], 4, [1], 1, 5>; // Floating point reciprocal square root estimate.
|
| /freebsd-12-stable/contrib/lua/src/ |
| D | lgc.c | 942 l_mem estimate = g->GCestimate / PAUSEADJ; /* adjust 'estimate' */ in setpause() local 943 lua_assert(estimate > 0); in setpause() 944 threshold = (g->gcpause < MAX_LMEM / estimate) /* overflow? */ in setpause() 945 ? estimate * g->gcpause /* no overflow */ in setpause()
|
| /freebsd-12-stable/tools/tools/netrate/tcpp/ |
| D | README | 70 The bandwidth estimate doesn't handle failures well. It also has serious
|
| /freebsd-12-stable/contrib/binutils/libiberty/ |
| D | cp-demangle.c | 2641 d_growable_string_init (struct d_growable_string *dgs, size_t estimate) in d_growable_string_init() argument 2648 if (estimate > 0) in d_growable_string_init() 2649 d_growable_string_resize (dgs, estimate); in d_growable_string_init() 2826 int estimate, size_t *palc) in cplus_demangle_print() argument 2830 d_growable_string_init (&dgs, estimate); in cplus_demangle_print()
|
| /freebsd-12-stable/contrib/binutils/ld/emultempl/ |
| D | avrelf.em | 63 /* Makes a conservative estimate of the trampoline section size that could
|
| /freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/builtins/sparc64/ |
| D | divmod.m4 | 27 * current estimate for non-large dividend is
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| D | AArch64SchedA57.td | 533 // ASIMD reciprocal estimate, D-form 535 // ASIMD reciprocal estimate, Q-form
|
| D | AArch64SchedThunderX2T99.td | 1521 // ASIMD reciprocal estimate, D-form 1522 // ASIMD reciprocal estimate, Q-form
|
| D | AArch64SchedThunderX3T110.td | 1637 // ASIMD reciprocal estimate, D-form 1638 // ASIMD reciprocal estimate, Q-form
|
| /freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/builtins/ |
| D | fp_div_impl.inc | 111 // Then, refine the reciprocal estimate using a quadratically converging
|
| /freebsd-12-stable/sys/contrib/zstd/ |
| D | NEWS | 47 api : fix : sizeof_CCtx() used to over-estimate
|
| /freebsd-12-stable/contrib/ntp/ntpd/ |
| D | ntpd-opts.def | 309 contains the latest estimate of clock frequency error.
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/ARM/ |
| D | ARMScheduleA8.td | 1070 let MispredictPenalty = 13; // Based on estimate of pipeline depth.
|
| /freebsd-12-stable/contrib/gcc/doc/ |
| D | cfg.texi | 374 feedback}, but it can also estimate branch probabilities based on
|
| /freebsd-12-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/ |
| D | zfs_ioctl.c | 4892 boolean_t estimate = (zc->zc_guid != 0); in zfs_ioc_send() local 4918 if (estimate) { in zfs_ioc_send()
|
| /freebsd-12-stable/contrib/ntp/ntpq/ |
| D | ntpq-opts.def | 674 offset RMS error estimate.
|
| /freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/IR/ |
| D | IntrinsicsPowerPC.td | 1194 // Vector reciprocal estimate
|