/openbmc/openbmc-test-automation/ipmi/ |
H A D | test_ipmi_sel_time.robot | 102 # Identify Time difference and find the difference is less than 6 seconds. 103 # Command execution may happen at the end of millisecond so considered 6 seconds as difference. 104 ${time_difference}= Get Time Difference ${get_sel_time} ${sel_date} 111 ${difference}= Get Time Difference ${bmc_time} ${sel_date} 112 Should Be True 0<=${difference}<=6 128 # Difference of time between set sel time and get time. 129 ${difference}= Get Time Difference ${get_sel_time} ${set_sel_time} 130 Should Be True 0<=${difference}<=2 132 # Difference of time between BMC Date and Get SEL Time. 134 ${difference}= Get Time Difference ${get_sel_time} ${bmc_time} [all …]
|
H A D | test_ipmi_poh_counter.robot | 78 # Verify difference between initial and present counter readings. 80 ${difference}= Evaluate ${poh_counter_2} - ${poh_counter_1} 81 Should Be Equal As Integers ${difference} 1 123 ${difference}= Evaluate ${poh_counter_2} - ${poh_counter_1} 124 Should Be Equal As Integers ${difference} 1
|
/openbmc/linux/tools/testing/selftests/powerpc/pmu/ |
H A D | count_instructions.c | 32 s64 difference, expected; in do_count_loop() local 46 difference = events[0].result.value - expected; in do_count_loop() 47 percentage = (double)difference / events[0].result.value * 100; in do_count_loop() 56 printf("Delta %lld, %f%%\n", difference, percentage); in do_count_loop() 62 if (difference < 0) in do_count_loop() 63 difference = -difference; in do_count_loop() 65 /* Tolerate a difference below 0.0001 % */ in do_count_loop() 66 difference *= 10000 * 100; in do_count_loop() 67 if (difference / events[0].result.value) in do_count_loop()
|
H A D | count_stcx_fail.c | 32 s64 difference, expected; in do_count_loop() local 48 difference = events[0].result.value - expected; in do_count_loop() 49 percentage = (double)difference / events[0].result.value * 100; in do_count_loop() 60 printf("Delta %lld, %f%%\n", difference, percentage); in do_count_loop() 67 if (difference < 0) in do_count_loop() 68 difference = -difference; in do_count_loop() 70 /* Tolerate a difference below 0.0001 % */ in do_count_loop() 71 difference *= 10000 * 100; in do_count_loop() 72 if (difference / events[0].result.value) in do_count_loop()
|
/openbmc/linux/tools/testing/selftests/powerpc/pmu/ebb/ |
H A D | instruction_count_test.c | 28 int64_t difference, expected; in do_count_loop() local 47 difference = event->result.value - expected; in do_count_loop() 48 percentage = (double)difference / event->result.value * 100; in do_count_loop() 54 printf("Delta %ld, %f%%\n", difference, percentage); in do_count_loop() 58 if (difference < 0) in do_count_loop() 59 difference = -difference; in do_count_loop() 61 /* Tolerate a difference of up to 0.0001 % */ in do_count_loop() 62 difference *= 10000 * 100; in do_count_loop() 63 if (difference / event->result.value) in do_count_loop()
|
/openbmc/linux/arch/arc/lib/ |
H A D | strcmp.S | 31 xor r0,r2,r3 ; mask for difference 33 bic_s r0,r0,r1 ; mask for least significant difference bit 35 xor r0,r5,r1 ; mask for least significant difference byte 47 xor r0,r2,r3 ; mask for difference 50 bic_s r0,r0,r1 ; mask for least significant difference bit 52 xor r0,r5,r1 ; mask for least significant difference byte
|
/openbmc/openbmc-test-automation/redfish/managers/ |
H A D | test_managers_bmc_time.robot | 33 ... The difference between Redfish time and CLI time exceeds the allowed time difference. 52 ... The difference between Redfish time and CLI time exceeds the allowed time difference. 88 ... The difference between Redfish time and CLI time exceeds the allowed time difference.
|
/openbmc/linux/Documentation/hwmon/ |
H A D | lm77.rst | 29 applies to all 3 limits. The relative difference is stored in a single 30 register on the chip, which means that the relative difference between 36 difference staying unchanged. For example, if the old critical limit 42 read-only. Setting temp1_crit_hyst writes the difference between
|
H A D | emc1403.rst | 63 hysteresis mechanism which applies to all limits. The relative difference 65 difference between the limit and its hysteresis is always the same for 71 difference staying unchanged. For example, if the old critical limit 77 are read-only. Setting temp1_crit_hyst writes the difference between
|
H A D | lm70.rst | 55 The LM74 and TMP121/TMP122/TMP123/TMP124 are very similar; main difference is 63 The LM71 is also very similar; main difference is 14-bit temperature
|
/openbmc/phosphor-led-manager/test/ |
H A D | utest.cpp | 45 // difference of refAssert and ledsAssert must be null. in TEST_F() 77 // difference of refAssert and ledsAssert must be null. in TEST_F() 109 // difference of refAssert and ledsAssert must be null. in TEST_F() 159 // difference of refAssert and ledsAssert must be null. in TEST_F() 195 // difference of refAssert and ledsAssert must be null. in TEST_F() 231 // difference of refAssert and ledsAssert must be null. in TEST_F() 261 // difference of refDeAssert and ledsDeAssert must be null. in TEST_F() 297 // difference of refAssert and ledsAssert must be null. in TEST_F() 327 // difference of refDeAssert and ledsDeAssert must be null. in TEST_F() 380 // difference of refAssert and ledsAssert must be null. in TEST_F() [all …]
|
/openbmc/linux/drivers/staging/media/atomisp/pci/isp/kernels/tnr/tnr_1.0/ |
H A D | ia_css_tnr_types.h | 25 * When difference between current frame and previous frame is less than or 28 * When difference between current frame and previous frame is greater 46 If difference between current frame and 52 If difference between current frame and
|
/openbmc/linux/drivers/input/ |
H A D | ff-memless.c | 157 int difference; in apply_envelope() local 178 difference = abs(value) - envelope_level; in apply_envelope() 180 pr_debug("difference = %d\n", difference); in apply_envelope() 184 difference = difference * time_from_level / time_of_envelope; in apply_envelope() 186 pr_debug("difference = %d\n", difference); in apply_envelope() 189 -(difference + envelope_level) : (difference + envelope_level); in apply_envelope()
|
/openbmc/linux/drivers/gpu/drm/vmwgfx/ |
H A D | vmwgfx_blit.c | 140 * vmw_find_first_diff - find the first difference between dst and src 146 * return: The offset from find start where the first difference was 147 * encountered in bytes. If no difference was found, the function returns 213 * vmw_find_last_diff - find the last difference between dst and src 219 * return: The offset from find start where the last difference was 220 * encountered in bytes, or a negative value if no difference was found. 255 * vmw_adjust_rect - Adjust rectangle coordinates for newly found difference 258 * @diff_offs: The offset from @diff->line_offset where the difference was 286 * This is needed to know the needed granularity of the difference computing 305 * Starting from where first difference was found, find in vmw_diff_memcpy() [all …]
|
/openbmc/linux/tools/testing/selftests/ftrace/test.d/ftrace/ |
H A D | func_profile_stat.tc | 12 : "diff returns 0 if there is no difference" 20 : "diff returns 0 if there is no difference"
|
/openbmc/openbmc-test-automation/lib/ |
H A D | utils_files.py | 92 + " found no difference between file " 102 # Find the differences and write difference report to diff_file_path file 137 # We have at least one difference not in the skip_string.
|
/openbmc/qemu/scripts/simplebench/ |
H A D | results_to_text.py | 24 # We want leading whitespace for difference row cells (see below) 84 # Add row of difference between columns. For each column starting from 85 # B we calculate difference with all previous columns.
|
/openbmc/linux/net/smc/ |
H A D | smc_cdc.h | 146 /* calculate cursor difference between old and new, where old <= new and 147 * difference cannot exceed size 160 /* calculate cursor difference between old and new - returns negative 173 /* calculate cursor difference between old and new, where old <= new and 174 * difference may exceed size
|
/openbmc/u-boot/arch/arm/cpu/armv8/fsl-layerscape/doc/ |
H A D | README.soc | 254 1)LS2048A, few difference w.r.t. LS2088A: 257 2)LS2084A, few difference w.r.t. LS2088A: 263 3)LS2044A, few difference w.r.t. LS2084A: 273 1)LS2041A, few difference w.r.t. LS2081A: 326 1)LX2120A, few difference w.r.t. LX2160A: 329 2)LX2080A, few difference w.r.t. LX2160A:
|
/openbmc/linux/Documentation/misc-devices/ |
H A D | lis3lv02d.rst | 44 small difference due to input system fuzziness feature. 50 sensing element is internally moved little bit. Selftest measures difference 55 measured difference between modes. Axes are not remapped in selftest mode.
|
/openbmc/linux/fs/xfs/libxfs/ |
H A D | xfs_rtbitmap.c | 113 xfs_rtword_t wdiff; /* difference from wanted value */ in xfs_rtfind_back() 150 * Calculate the difference between the value there in xfs_rtfind_back() 197 * Compute difference between actual and desired value. in xfs_rtfind_back() 244 * Compute difference between actual and desired value. in xfs_rtfind_back() 288 xfs_rtword_t wdiff; /* difference from wanted value */ in xfs_rtfind_forw() 326 * Calculate the difference between the value there in xfs_rtfind_forw() 372 * Compute difference between actual and desired value. in xfs_rtfind_forw() 416 * Compute difference between actual and desired value. in xfs_rtfind_forw() 785 xfs_rtword_t wdiff; /* difference from wanted value */ in xfs_rtcheck_range() 824 * Compute difference between actual and desired value. in xfs_rtcheck_range() [all …]
|
/openbmc/qemu/include/sysemu/ |
H A D | rtc.h | 48 * qemu_timedate_diff: Return difference between a struct tm and the RTC 51 * Returns the difference in seconds between the RTC clock time
|
/openbmc/linux/include/linux/ |
H A D | dim.h | 20 * Is a difference between values justifies taking an action. 21 * We consider 10% difference as significant. 151 * @DIM_PARKING_ON_TOP: Algorithm found a local top point - exit on significant difference 232 * dim_calc_stats - calculate the difference between two samples
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-benchmark/glmark2/files/ |
H A D | 0003-GLVisualConfig-By-default-don-t-care-about-the-stenc.patch | 57 * If scale > 0, we reward the largest positive difference from target, 58 * otherwise the smallest positive difference from target. 59 + * We also reward the smallest positive difference from the target,
|
/openbmc/linux/Documentation/userspace-api/media/v4l/ |
H A D | colorspaces-details.rst | 66 The luminance (Y') and color difference (Cb and Cr) are obtained with 142 The luminance (Y') and color difference (Cb and Cr) are obtained with 265 The luminance (Y') and color difference (Cb and Cr) are obtained with 334 The luminance (Y') and color difference (Cb and Cr) are obtained with 405 The luminance (Y') and color difference (Cb and Cr) are obtained with 553 The luminance (Y') and color difference (Cb and Cr) are obtained with 627 The luminance (Y') and color difference (Cb and Cr) are obtained with 698 The luminance (Y') and color difference (Cb and Cr) are obtained with
|