Home
last modified time | relevance | path

Searched refs:floor (Results 1 – 25 of 152) sorted by relevance

1234567

/freebsd/sys/tools/sound/
H A Dfeeder_eq_mkfilter.awk58 function floor(x, r) function
118 r = floor((v * FEEDEQ_COEFF_ONE) + 0.5);
239 if (floor(FEEDEQ_PREAMP_BITDB) == 6 && \
240 (1.0 * floor(gain)) == gain && (floor(gain) % 6) == 0) {
242 shift = floor(floor(gain) / 6);
246 mul = floor((attn * FEEDEQ_PREAMP_ONE) + 0.5);
250 mul = floor(mul / 2);
305 FEEDEQ_GAIN_MIN = floor(1.0 * subarg[1]);
306 FEEDEQ_GAIN_MAX = floor(1.0 * subarg[2]);
308 j = floor(1.0 * FEEDEQ_GAIN_DIV * subarg[3]);
[all …]
H A Dsnd_fxdiv_gen.awk31 function floor(x, r) function
51 x = floor(x / 2);
59 y = floor(FXONE / x);
66 y = floor(y / 2);
H A Dfeeder_rate_mkfilter.awk70 function floor(x, r) function
98 x = floor(x / 2);
111 r = floor((v * o) + 0.5);
221 y = floor(x + 3);
304 nwing = floor((nmult * num) / 2) + 1;
386 init_drift(floor(a[2]));
393 init_coeff_bit(floor(a[2]));
400 init_accum_bit(floor(a[2]));
532 xdrift = floor(drift);
559 xcbit = floor(cbit);
[all …]
/freebsd/sys/compat/linuxkpi/common/include/linux/
H A Drandom.h73 get_random_u32_inclusive(uint32_t floor, uint32_t ceil) in get_random_u32_inclusive() argument
78 MPASS(ceil >= floor); in get_random_u32_inclusive()
81 t = ceil - floor + 1; in get_random_u32_inclusive()
87 return (floor + v); in get_random_u32_inclusive()
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/trim/
H A Dautotrim_config.ksh70 typeset VDEV_MAX_MB=$(( floor(4 * MINVDEVSIZE * 0.75 / 1024 / 1024) ))
71 typeset VDEV_MIN_MB=$(( floor(4 * MINVDEVSIZE * 0.30 / 1024 / 1024) ))
86 VDEV_MAX_MB=$(( floor(4 * MINVDEVSIZE * 0.50 / 1024 / 1024) ))
94 typeset fill_mb=$(( floor(availspace * 0.90 / 1024 / 1024) ))
H A Dtrim_config.ksh70 typeset VDEV_MAX_MB=$(( floor(4 * MINVDEVSIZE * 0.75 / 1024 / 1024) ))
71 typeset VDEV_MIN_MB=$(( floor(4 * MINVDEVSIZE * 0.30 / 1024 / 1024) ))
86 VDEV_MAX_MB=$(( floor(4 * MINVDEVSIZE * 0.50 / 1024 / 1024) ))
93 typeset fill_mb=$(( floor(availspace * 0.90 / 1024 / 1024) ))
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_trim/
H A Dzpool_trim_partial.ksh68 log_must mkfile $(( floor(LARGESIZE * 0.80) )) /$TESTPOOL/file
73 log_must test $new_size -gt $(( floor(LARGESIZE * 0.70) ))
84 log_must test $new_size -gt $((4 * floor(LARGESIZE * 0.70) ))
112 log_must test $new_size -gt $(( floor(LARGESIZE * 0.70) ))
/freebsd/lib/msun/src/
H A Ds_round.c45 t = floor(x); in round()
50 t = floor(-x); in round()
H A Ds_floor.c29 floor(double x) in floor() function
73 __weak_reference(floor, floorl);
/freebsd/lib/msun/i387/
H A Ds_floor.S37 ENTRY(floor)
56 END(floor)
/freebsd/contrib/llvm-project/llvm/tools/llvm-mca/Views/
H A DSummaryView.cpp76 << format("%.2f", floor((DV.UOpsPerCycle * 100) + 0.5) / 100); in printView()
78 << format("%.2f", floor((DV.IPC * 100) + 0.5) / 100); in printView()
80 << format("%.1f", floor((DV.BlockRThroughput * 10) + 0.5) / 10) in printView()
H A DRetireControlUnitStatistics.cpp76 double NormalizedMaxPercentage = floor((MaxUsagePercentage * 10) + 0.5) / 10; in printView()
78 double NormalizedAvgPercentage = floor((AvgUsagePercentage * 10) + 0.5) / 10; in printView()
H A DDispatchStatistics.cpp43 << " (" << format("%.1f", floor((Percentage * 10) + 0.5) / 10) in printDispatchHistogram()
60 << format("%.1f", floor((Percentage * 10) + 0.5) / 10) << "%)"; in printStalls()
/freebsd/contrib/llvm-project/libcxx/include/__math/
H A Drounding_functions.h47 _LIBCPP_NODISCARD inline _LIBCPP_HIDE_FROM_ABI float floor(float __x) _NOEXCEPT { return __builtin_… in floor() function
50 _LIBCPP_NODISCARD _LIBCPP_HIDE_FROM_ABI double floor(double __x) _NOEXCEPT { in floor() function
54 _LIBCPP_NODISCARD inline _LIBCPP_HIDE_FROM_ABI long double floor(long double __x) _NOEXCEPT { in floor() function
59 _LIBCPP_NODISCARD inline _LIBCPP_HIDE_FROM_ABI double floor(_A1 __x) _NOEXCEPT { in floor() function
/freebsd/contrib/netbsd-tests/lib/libm/
H A Dt_ceil.c332 ATF_CHECK(floor(x) < SMALL_NUM); in ATF_TC_BODY()
333 ATF_CHECK(floor(y) < SMALL_NUM); in ATF_TC_BODY()
346 ATF_CHECK(isnan(floor(x)) != 0); in ATF_TC_BODY()
358 double y = floor(x); in ATF_TC_BODY()
373 double y = floor(x); in ATF_TC_BODY()
388 double y = floor(x); in ATF_TC_BODY()
403 double y = floor(x); in ATF_TC_BODY()
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/compression/
H A Dl2arc_compressed_arc_disabled.ksh79 typeset cache_sz=$(( floor($fill_mb / 2) ))
80 export FILE_SIZE=$(( floor($fill_mb / $NUMJOBS) ))M
H A Dl2arc_encrypted_no_compressed_arc.ksh80 typeset cache_sz=$(( floor($fill_mb / 2) ))
81 export FILE_SIZE=$(( floor($fill_mb / $NUMJOBS) ))M
H A Dl2arc_compressed_arc.ksh79 typeset cache_sz=$(( floor($fill_mb / 2) ))
80 export FILE_SIZE=$(( floor($fill_mb / $NUMJOBS) ))M
H A Dl2arc_encrypted.ksh80 typeset cache_sz=$(( floor($fill_mb / 2) ))
81 export FILE_SIZE=$(( floor($fill_mb / $NUMJOBS) ))M
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/l2arc/
H A Dpersist_l2arc_001_pos.ksh74 typeset cache_sz=$(( floor($fill_mb / 2) ))
75 export FILE_SIZE=$(( floor($fill_mb / $NUMJOBS) ))M
H A Dpersist_l2arc_005_pos.ksh65 typeset cache_sz=$(( floor($fill_mb / 2) ))
66 export FILE_SIZE=$(( floor($fill_mb / $NUMJOBS) ))M
H A Dpersist_l2arc_004_pos.ksh66 typeset cache_sz=$(( floor($fill_mb / 2) ))
67 export FILE_SIZE=$(( floor($fill_mb / $NUMJOBS) ))M
H A Dpersist_l2arc_002_pos.ksh78 typeset cache_sz=$(( floor($fill_mb / 2) ))
79 export FILE_SIZE=$(( floor($fill_mb / $NUMJOBS) ))M
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cache/
H A Dcache_012_pos.ksh69 typeset fill_mb=$(( floor($VDEV_SZ * 3 / 4 ) ))
79 export FILE_SIZE=$(( floor($fill_mb / $NUMJOBS) ))
/freebsd/tools/tools/ath/athprom/
H A Deeprom-1448 | noise floor thres 0 $noiseFloorThreshCh0 |
49 | noise floor thres 1 $noiseFloorThreshCh1 |
50 | noise floor thres 2 $noiseFloorThreshCh2 |

1234567