Home
last modified time | relevance | path

Searched refs:tolerance (Results 1 – 25 of 96) sorted by relevance

1234

/linux/tools/testing/selftests/vm/
A Dhugetlb_reparenting_test.sh67 local tolerance=$((5 * 1024 * 1024))
71 if [[ $actual_a -lt $(($expected_a - $tolerance)) ]] ||
72 [[ $actual_a -gt $(($expected_a + $tolerance)) ]]; then
83 if [[ $actual_a_hugetlb -lt $(($expected_a_hugetlb - $tolerance)) ]] ||
84 [[ $actual_a_hugetlb -gt $(($expected_a_hugetlb + $tolerance)) ]]; then
99 if [[ $actual_b -lt $(($expected_b - $tolerance)) ]] ||
100 [[ $actual_b -gt $(($expected_b + $tolerance)) ]]; then
111 if [[ $actual_b_hugetlb -lt $(($expected_b_hugetlb - $tolerance)) ]] ||
112 [[ $actual_b_hugetlb -gt $(($expected_b_hugetlb + $tolerance)) ]]; then
/linux/drivers/media/rc/img-ir/
A Dimg-ir-hw.c176 unsigned int tolerance, in img_ir_timing_range_convert() argument
183 min = min - (min*tolerance >> 7); in img_ir_timing_range_convert()
184 max = max + (max*tolerance >> 7); in img_ir_timing_range_convert()
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()
292 unsigned int tolerance, in img_ir_timings_convert() argument
320 if (!decoder->tolerance) in img_ir_decoder_preprocess()
321 decoder->tolerance = 10; /* percent */ in img_ir_decoder_preprocess()
323 decoder->tolerance = decoder->tolerance * 128 / 100; in img_ir_decoder_preprocess()
[all …]
A Dimg-ir-rc5.c58 .tolerance = 16,
/linux/Documentation/misc-devices/
A Dad525x_dpot.rst9 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
/linux/tools/testing/selftests/kvm/x86_64/
A Dvmx_nested_tsc_scaling_test.c42 uint64_t tolerance, thresh_low, thresh_high; in compare_tsc_freq() local
44 tolerance = expected / 100; in compare_tsc_freq()
45 thresh_low = expected - tolerance; in compare_tsc_freq()
46 thresh_high = expected + tolerance; in compare_tsc_freq()
/linux/Documentation/power/
A Dpm_qos_interface.rst92 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
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
212 but do not let the hardware control latency tolerance" and writing "auto" to it
[all …]
/linux/Documentation/hwmon/
A Dw83792d.rst145 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]
A Dnct6775.rst186 Temperature step tolerance.
198 Target temperature tolerance, unit millidegree Celsius
234 Target speed tolerance
258 Temperature tolerance, unit millidegree Celsius
261 Temperature tolerance for critical temperature,
/linux/arch/arm/boot/dts/
A Dam335x-nano.dts415 /* +1.5V voltage with ±4% tolerance */
423 /* VDD_MPU voltage limits 0.95V - 1.1V with ±4% tolerance */
432 /* VDD_CORE voltage limits 0.95V - 1.1V with ±4% tolerance */
441 /* +1.8V voltage with ±4% tolerance */
449 /* +3.3V voltage with ±4% tolerance */
457 /* +1.8V voltage with ±4% tolerance */
465 /* +3.3V voltage with ±4% tolerance */
A Dam335x-moxa-uc-8100-me-t.dts83 /* VDD_MPU voltage limits 0.95V - 1.26V with +/-4% tolerance */
92 /* VDD_CORE voltage limits 0.95V - 1.1V with +/-4% tolerance */
A Dam335x-osd335x-common.dtsi77 /* VDD_MPU voltage limits 0.95V - 1.26V with +/-4% tolerance */
86 /* VDD_CORE voltage limits 0.95V - 1.1V with +/-4% tolerance */
A Dam335x-shc.dts26 * tolerance value is reduced to 2% from 4% and
34 voltage-tolerance = <2>; /* 2 percentage */
274 * +/-4% tolerance
289 * +/-4% tolerance
A Dam335x-chilisom.dtsi79 /* VDD_MPU voltage limits 0.95V - 1.26V with +/-4% tolerance */
88 /* VDD_CORE voltage limits 0.95V - 1.1V with +/-4% tolerance */
/linux/include/uapi/linux/
A Dtimex.h74 __kernel_long_t tolerance;/* clock frequency tolerance (ppm) member
113 long long tolerance;/* clock frequency tolerance (ppm) member
/linux/arch/alpha/kernel/
A Dtime.c393 unsigned long cycle_freq, tolerance; in time_init() local
421 tolerance = cycle_freq / 4000; in time_init()
425 if ((unsigned long)diff > tolerance) { in time_init()
/linux/Documentation/devicetree/bindings/cpufreq/
A Dcpufreq-dt.txt19 - voltage-tolerance: Specify the CPU voltage tolerance in percentage.
/linux/Documentation/devicetree/bindings/serial/
A Dnvidia,tegra20-hsuart.txt36 Baud Rate tolerance:
37 Standard UART devices are expected to have tolerance for baud rate error by
39 Tegra186 chip has a known hardware issue. UART Rx baud rate tolerance level
/linux/drivers/net/wireless/ath/
A Ddfs_pri_detector.c44 static u32 pde_get_multiple(u32 val, u32 fraction, u32 tolerance) in pde_get_multiple() argument
55 if (delta <= tolerance) in pde_get_multiple()
61 if (remainder > tolerance) { in pde_get_multiple()
63 if ((fraction - remainder) <= tolerance) in pde_get_multiple()
/linux/include/drm/
A Ddrm_fixed.h190 s64 tolerance = div64_s64(DRM_FIXED_ONE, 1000000); in drm_fixp_exp() local
199 while (term >= tolerance) { in drm_fixp_exp()
/linux/net/tipc/
A Dbearer.h122 u32 tolerance; member
168 u32 tolerance; member
A Dlink.c164 u32 tolerance; member
270 int tolerance, int priority,
362 return l->tolerance; in tipc_link_tolerance()
537 l->tolerance = tolerance; in tipc_link_create()
539 bc_rcvlink->tolerance = tolerance; in tipc_link_create()
1232 msecs_to_jiffies(r->tolerance * 10))) in link_retransmit_failure()
1857 int tolerance, int priority, in tipc_link_build_proto_msg() argument
2245 l->tolerance = peers_tol; in tipc_link_proto_rcv()
2288 l->tolerance = peers_tol; in tipc_link_proto_rcv()
2876 l->tolerance = tol; in tipc_link_set_tolerance()
[all …]
/linux/drivers/hwmon/
A Dw83l786ng.c135 u8 tolerance[2]; member
208 data->tolerance[0] = reg_tmp & 0x0f; in w83l786ng_update_device()
209 data->tolerance[1] = (reg_tmp >> 4) & 0x0f; in w83l786ng_update_device()
579 return sprintf(buf, "%ld\n", (long)data->tolerance[nr]); in show_tolerance()
602 data->tolerance[nr] = tol_tmp; in store_tolerance()
/linux/kernel/time/
A Dtime.c302 txc->tolerance = tx32.tolerance; in get_old_timex32()
331 tx32.tolerance = txc->tolerance; in put_old_timex32()
/linux/drivers/gpu/drm/amd/display/dc/dce/
A Ddce_clock_source.c198 uint32_t tolerance) in calc_fb_divider_checking_tolerance() argument
233 if (abs_err <= tolerance) { in calc_fb_divider_checking_tolerance()
260 uint32_t tolerance; in calc_pll_dividers_in_range() local
264 tolerance = (pll_settings->adjusted_pix_clk_100hz * err_tolerance) / in calc_pll_dividers_in_range()
266 if (tolerance < CALC_PLL_CLK_SRC_ERR_TOLERANCE) in calc_pll_dividers_in_range()
267 tolerance = CALC_PLL_CLK_SRC_ERR_TOLERANCE; in calc_pll_dividers_in_range()
282 tolerance)) { in calc_pll_dividers_in_range()
/linux/drivers/media/usb/pvrusb2/
A Dpvrusb2-io.h38 unsigned int tolerance);

Completed in 60 milliseconds

1234