/openbmc/openbmc/poky/scripts/contrib/ |
H A D | test_build_time.sh | 16 # the specified threshold) or bad (over it). There is also a tolerance 18 # tolerance from the given threshold and uses it as the actual threshold. 34 echo "syntax: $0 <script> <time> <tolerance> [patchrevlist]" 38 echo " tolerance - tolerance (in seconds, suffix m for minutes or % for" 80 echo "'$3' is not a valid number for tolerance" 106 tolerance=$3 118 if [[ $tolerance == *m* ]] ; then 119 tolerance=`echo $tolerance | sed s/m/*60/ | bc` 120 elif [[ $tolerance == *%* ]] ; then 121 tolerance=`echo $tolerance | sed s/%//` [all …]
|
/openbmc/linux/Documentation/power/ |
H A D | pm_qos_interface.rst | 92 state latency tolerance (in microseconds) and the third one is for PM QoS flags. 95 The target values of resume latency and active state latency tolerance are 181 Active state latency tolerance 190 If there is a latency tolerance control mechanism for a given device available 196 Whenever the effective latency tolerance changes for the device, its 199 latency tolerance requirements for the device is empty, the callback is expected 200 to switch the underlying hardware latency tolerance control mechanism to an 204 automatically updating the device's latency tolerance in response to its power 206 be done in the autonomous latency tolerance control mode. 210 Then, user space can use that attribute to specify its latency tolerance [all …]
|
/openbmc/linux/tools/testing/selftests/mm/ |
H A D | hugetlb_reparenting_test.sh | 72 local tolerance=$((5 * 1024 * 1024)) 76 if [[ $actual_a -lt $(($expected_a - $tolerance)) ]] || 77 [[ $actual_a -gt $(($expected_a + $tolerance)) ]]; then 88 if [[ $actual_a_hugetlb -lt $(($expected_a_hugetlb - $tolerance)) ]] || 89 [[ $actual_a_hugetlb -gt $(($expected_a_hugetlb + $tolerance)) ]]; then 104 if [[ $actual_b -lt $(($expected_b - $tolerance)) ]] || 105 [[ $actual_b -gt $(($expected_b + $tolerance)) ]]; then 116 if [[ $actual_b_hugetlb -lt $(($expected_b_hugetlb - $tolerance)) ]] || 117 [[ $actual_b_hugetlb -gt $(($expected_b_hugetlb + $tolerance)) ]]; then
|
/openbmc/linux/drivers/media/rc/img-ir/ |
H A D | img-ir-hw.c | 166 * @tolerance: Tolerance as a fraction of 128 (roughly percent). 171 * tolerance, and shifts for the register, rounding in the right direction. 176 unsigned int tolerance, in img_ir_timing_range_convert() argument 182 /* add a tolerance */ in img_ir_timing_range_convert() 183 min = min - (min*tolerance >> 7); in img_ir_timing_range_convert() 184 max = max + (max*tolerance >> 7); in img_ir_timing_range_convert() 196 * @tolerance: Timing tolerance where 0-128 represents 0-100% 204 unsigned int tolerance, in img_ir_symbol_timing() argument 214 tolerance, clock_hz, pd_shift); in img_ir_symbol_timing() 216 tolerance, clock_hz, w_shift); in img_ir_symbol_timing() [all …]
|
H A D | img-ir-hw.h | 57 * and is taken care of by the tolerance) 148 * @tolerance: Timing tolerance as a percentage (default 10%). 167 unsigned int tolerance; member
|
/openbmc/openbmc-test-automation/redfish/extended/ |
H A D | test_fan_operation.robot | 47 # Set the speed tolerance criteria. 48 # A tolerance value of .30 means that the fan's speed should be 51 ${tolerance}= Set Variable .50 52 Rprint Vars tolerance 54 Verify Fan Speed ${tolerance} ${fan_names}
|
/openbmc/linux/Documentation/hwmon/ |
H A D | w83792d.rst | 145 via thermal_cruise# file. The tolerance# file serves to create T +- tolerance 147 remains below the thermal_cruise# +- tolerance# value. Once the temperature 148 exceeds the high limit (T+tolerance), the fan will be turned on with a 156 limit (T-tolerance), the fan speed will be fixed at the current speed because 168 temperature region (sf2_point@_fan# +- tolerance#) it will cause fans to run 194 tolerance[1-3]
|
H A D | nct6775.rst | 192 Temperature step tolerance. 204 Target temperature tolerance, unit millidegree Celsius 240 Target speed tolerance 264 Temperature tolerance, unit millidegree Celsius 267 Temperature tolerance for critical temperature,
|
/openbmc/linux/Documentation/misc-devices/ |
H A D | ad525x_dpot.rst | 9 settings. Access to the factory programmed tolerance is also provided, but 16 Each dpot device will have a set of eeprom, rdac, and tolerance files. How 23 The tolerance files are the read-only factory programmed tolerance settings
|
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/open-vm-tools/open-vm-tools/ |
H A D | 0014-timeSync-Portable-way-to-print-64bit-time_t.patch | 31 - "const %ld precision %ld tolerance %ld tick %ld\n", 33 - tx->status, tx->constant, tx->precision, tx->tolerance, tx->tick); 35 + "const %jd precision %jd tolerance %jd tick %jd\n", 37 + tx->status, (intmax_t)tx->constant, (intmax_t)tx->precision, (intmax_t)tx->tolerance, (…
|
/openbmc/openbmc/poky/meta/recipes-support/libevent/libevent/ |
H A D | 0002-test-regress.h-Increase-default-timeval-tolerance-50.patch | 4 Subject: [PATCH] test/regress.h: Increase default timeval tolerance 50 ms -> 7 The default timeout tolerance is 50 ms, 26 tt_int_op(labs(timeval_msec_diff((tv1), (tv2)) - diff), <=, tolerance)
|
/openbmc/linux/drivers/net/wireless/ath/ |
H A D | dfs_pri_detector.c | 41 * pde_get_multiple() - get number of multiples considering a given tolerance 42 * Return value: factor if abs(val - factor*fraction) <= tolerance, 0 otherwise 44 static u32 pde_get_multiple(u32 val, u32 fraction, u32 tolerance) in pde_get_multiple() argument 55 if (delta <= tolerance) in pde_get_multiple() 56 /* val and fraction are within tolerance */ in pde_get_multiple() 61 if (remainder > tolerance) { in pde_get_multiple() 63 if ((fraction - remainder) <= tolerance) in pde_get_multiple() 64 /* remainder is within tolerance */ in pde_get_multiple()
|
H A D | dfs_pattern_detector.h | 63 * @pri_min: minimum pulse repetition interval in [us] (including tolerance) 64 * @pri_max: minimum pri in [us] (including tolerance) 68 * @max_pri_tolerance: pulse time stamp tolerance on both sides [us]
|
/openbmc/linux/tools/testing/selftests/kvm/x86_64/ |
H A D | vmx_nested_tsc_scaling_test.c | 39 uint64_t tolerance, thresh_low, thresh_high; in compare_tsc_freq() local 41 tolerance = expected / 100; in compare_tsc_freq() 42 thresh_low = expected - tolerance; in compare_tsc_freq() 43 thresh_high = expected + tolerance; in compare_tsc_freq()
|
/openbmc/linux/net/tipc/ |
H A D | bearer.h | 95 * @tolerance: default time (in ms) before declaring link failure 122 u32 tolerance; member 144 * @tolerance: default link tolerance for bearer 169 u32 tolerance; member
|
/openbmc/linux/arch/arm/boot/dts/ti/omap/ |
H A D | am335x-nano.dts | 435 /* +1.5V voltage with ±4% tolerance */ 443 /* VDD_MPU voltage limits 0.95V - 1.1V with ±4% tolerance */ 452 /* VDD_CORE voltage limits 0.95V - 1.1V with ±4% tolerance */ 461 /* +1.8V voltage with ±4% tolerance */ 469 /* +3.3V voltage with ±4% tolerance */ 477 /* +1.8V voltage with ±4% tolerance */ 485 /* +3.3V voltage with ±4% tolerance */
|
H A D | am335x-moxa-uc-8100-me-t.dts | 83 /* VDD_MPU voltage limits 0.95V - 1.26V with +/-4% tolerance */ 92 /* VDD_CORE voltage limits 0.95V - 1.1V with +/-4% tolerance */
|
/openbmc/linux/Documentation/devicetree/bindings/cpufreq/ |
H A D | cpufreq-dt.txt | 19 - voltage-tolerance: Specify the CPU voltage tolerance in percentage.
|
/openbmc/linux/Documentation/ABI/removed/ |
H A D | sysfs-mce | 14 Tolerance level. When a machine check exception occurs for a 20 defies normal kernel locking rules. The tolerance level
|
/openbmc/linux/drivers/staging/media/imx/ |
H A D | imx-media-fim.c | 37 #define FIM_CL_TOLERANCE_MAX_DEF 0 /* no max tolerance (unbounded) */ 119 /* disable tolerance range if max <= min */ in reset_fim() 166 "FIM: %llu ignored, out of tolerance bounds\n", in frame_interval_monitor() 272 .name = "FIM Tolerance Min", 282 .name = "FIM Tolerance Max",
|
/openbmc/linux/drivers/base/power/ |
H A D | qos.c | 883 * dev_pm_qos_get_user_latency_tolerance - Get user space latency tolerance. 884 * @dev: Device to obtain the user space latency tolerance for. 900 * dev_pm_qos_update_user_latency_tolerance - Update user space latency tolerance. 901 * @dev: Device to update the user space latency tolerance for. 902 * @val: New user space latency tolerance for @dev (negative values disable). 948 * dev_pm_qos_expose_latency_tolerance - Expose latency tolerance to userspace 949 * @dev: Device whose latency tolerance to expose 967 * dev_pm_qos_hide_latency_tolerance - Hide latency tolerance from userspace 968 * @dev: Device whose latency tolerance to hide
|
/openbmc/linux/include/uapi/linux/ |
H A D | timex.h | 74 __kernel_long_t tolerance;/* clock frequency tolerance (ppm) member 113 long long tolerance;/* clock frequency tolerance (ppm) member
|
/openbmc/linux/drivers/gpu/drm/amd/display/dc/dce/ |
H A D | dce_clock_source.c | 178 * checking for tolerance. 183 * @tolerance: Tolerance for Calculated Pixel Clock to be within 187 * if calculated values are within required tolerance 188 * It returns - true if error is within tolerance 189 * - false if error is not within tolerance 196 uint32_t tolerance) in calc_fb_divider_checking_tolerance() argument 231 if (abs_err <= tolerance) { in calc_fb_divider_checking_tolerance() 258 uint32_t tolerance; in calc_pll_dividers_in_range() local 262 tolerance = (pll_settings->adjusted_pix_clk_100hz * err_tolerance) / in calc_pll_dividers_in_range() 264 if (tolerance < CALC_PLL_CLK_SRC_ERR_TOLERANCE) in calc_pll_dividers_in_range() [all …]
|
/openbmc/openbmc-test-automation/lib/ |
H A D | fan_utils.robot | 259 [Arguments] ${tolerance} ${fan_names} 262 # tolerance The speed tolerance criteria. 263 # A tolerance value of .15 means that the fan's speed 273 # Calculate tolerance, which is a % of the target speed. 274 ${tolerance_value}= Evaluate ${tolerance}*${target_speed}
|
/openbmc/linux/tools/perf/tests/shell/lib/ |
H A D | perf_metric_validation.py | 17 self.tolerance = t 77 Get bounds and tolerance from lb, ub, and error. 78 If missing lb, use 0.0; missing ub, use float('inf); missing error, use self.tolerance. 82 @param error: float/str, error tolerance 85 tolerance, denormalized base on upper bound value 109 t = get_bound_value(error, self.tolerance, ridx) 460 'ErrorThreshold': self.tolerance,
|