/freebsd/sys/tools/sound/ |
H A D | feeder_eq_mkfilter.awk | 58 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 D | snd_fxdiv_gen.awk | 31 function floor(x, r) function 51 x = floor(x / 2); 59 y = floor(FXONE / x); 66 y = floor(y / 2);
|
H A D | feeder_rate_mkfilter.awk | 70 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 D | random.h | 73 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 D | autotrim_config.ksh | 70 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 D | trim_config.ksh | 70 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 D | zpool_trim_partial.ksh | 68 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 D | s_round.c | 45 t = floor(x); in round() 50 t = floor(-x); in round()
|
H A D | s_floor.c | 29 floor(double x) in floor() function 73 __weak_reference(floor, floorl);
|
/freebsd/lib/msun/i387/ |
H A D | s_floor.S | 37 ENTRY(floor) 56 END(floor)
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-mca/Views/ |
H A D | SummaryView.cpp | 76 << 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 D | RetireControlUnitStatistics.cpp | 76 double NormalizedMaxPercentage = floor((MaxUsagePercentage * 10) + 0.5) / 10; in printView() 78 double NormalizedAvgPercentage = floor((AvgUsagePercentage * 10) + 0.5) / 10; in printView()
|
H A D | DispatchStatistics.cpp | 43 << " (" << 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 D | rounding_functions.h | 47 _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 D | t_ceil.c | 332 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 D | l2arc_compressed_arc_disabled.ksh | 79 typeset cache_sz=$(( floor($fill_mb / 2) )) 80 export FILE_SIZE=$(( floor($fill_mb / $NUMJOBS) ))M
|
H A D | l2arc_encrypted_no_compressed_arc.ksh | 80 typeset cache_sz=$(( floor($fill_mb / 2) )) 81 export FILE_SIZE=$(( floor($fill_mb / $NUMJOBS) ))M
|
H A D | l2arc_compressed_arc.ksh | 79 typeset cache_sz=$(( floor($fill_mb / 2) )) 80 export FILE_SIZE=$(( floor($fill_mb / $NUMJOBS) ))M
|
H A D | l2arc_encrypted.ksh | 80 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 D | persist_l2arc_001_pos.ksh | 74 typeset cache_sz=$(( floor($fill_mb / 2) )) 75 export FILE_SIZE=$(( floor($fill_mb / $NUMJOBS) ))M
|
H A D | persist_l2arc_005_pos.ksh | 65 typeset cache_sz=$(( floor($fill_mb / 2) )) 66 export FILE_SIZE=$(( floor($fill_mb / $NUMJOBS) ))M
|
H A D | persist_l2arc_004_pos.ksh | 66 typeset cache_sz=$(( floor($fill_mb / 2) )) 67 export FILE_SIZE=$(( floor($fill_mb / $NUMJOBS) ))M
|
H A D | persist_l2arc_002_pos.ksh | 78 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 D | cache_012_pos.ksh | 69 typeset fill_mb=$(( floor($VDEV_SZ * 3 / 4 ) )) 79 export FILE_SIZE=$(( floor($fill_mb / $NUMJOBS) ))
|
/freebsd/tools/tools/ath/athprom/ |
H A D | eeprom-14 | 48 | noise floor thres 0 $noiseFloorThreshCh0 | 49 | noise floor thres 1 $noiseFloorThreshCh1 | 50 | noise floor thres 2 $noiseFloorThreshCh2 |
|