Home
last modified time | relevance | path

Searched refs:fval (Results 1 – 4 of 4) sorted by relevance

/f-stack/freebsd/netgraph/
H A Dng_parse.c356 int fval; in ng_int8_unparse() local
364 fval = val; in ng_int8_unparse()
368 fval = (u_int8_t)val; in ng_int8_unparse()
372 fval = (u_int8_t)val; in ng_int8_unparse()
452 int fval; in ng_int16_unparse() local
460 fval = val; in ng_int16_unparse()
464 fval = (u_int16_t)val; in ng_int16_unparse()
551 long fval; in ng_int32_unparse() local
559 fval = val; in ng_int32_unparse()
646 long long fval; in ng_int64_unparse() local
[all …]
/f-stack/freebsd/contrib/openzfs/lib/libzfs/
H A Dlibzfs_util.c1556 double fval = strtod(value, &end); local
1561 fval *= pow(2, shift);
1568 if (fval >= (double)UINT64_MAX) {
1575 *num = (uint64_t)fval;
/f-stack/freebsd/contrib/openzfs/cmd/ztest/
H A Dztest.c656 double fval = strtod(buf, &end); in nicenumtoull() local
657 fval *= pow(2, str2shift(end)); in nicenumtoull()
663 if (fval >= (double)UINT64_MAX) { in nicenumtoull()
668 val = (uint64_t)fval; in nicenumtoull()
/f-stack/freebsd/netinet/tcp_stacks/
H A Dbbr.c10861 uint32_t cur_rttp, fval, newval, baseval; in bbr_check_probe_rtt_limits() local
10866 fval = bbr_filter_len_sec * USECS_IN_SECOND; in bbr_check_probe_rtt_limits()
10868 if (fval > bbr_rtt_probe_limit) in bbr_check_probe_rtt_limits()
10869 newval = cur_rttp + (fval - bbr_rtt_probe_limit); in bbr_check_probe_rtt_limits()
10875 mul = fval / bbr_rtt_probe_limit; in bbr_check_probe_rtt_limits()