Home
last modified time | relevance | path

Searched refs:difference (Results 1 – 25 of 425) sorted by relevance

12345678910>>...17

/openbmc/linux/tools/testing/selftests/powerpc/pmu/
H A Dcount_instructions.c32 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()
66 difference *= 10000 * 100; in do_count_loop()
67 if (difference / events[0].result.value) in do_count_loop()
H A Dcount_stcx_fail.c32 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()
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 Dinstruction_count_test.c28 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()
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 Dstrcmp.S31 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/ipmi/
H A Dtest_ipmi_sel_time.robot102 # Identify Time difference and find the difference is less than 6 seconds.
112 Should Be True 0<=${difference}<=6
130 Should Be True 0<=${difference}<=2
135 Should Be True 0<=${difference}<=2
155 Should Be True 0<=${difference}<=2
159 Should Be True 0<=${difference}<=2
225 # Identify Time difference and find the difference is less than 6 seconds.
235 Should Be True 0<=${difference}<=6
281 Should Be True 0<=${difference}<=2
286 Should Be True 0<=${difference}<=2
[all …]
H A Dtest_ipmi_poh_counter.robot78 # 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/Documentation/hwmon/
H A Dlm77.rst29 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 Demc1403.rst63 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 Dlm70.rst55 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/linux/drivers/input/
H A Dff-memless.c157 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/md/
H A Ddm-kcopyd.c125 unsigned int throttle, now, difference; in io_job_start() local
140 difference = now - t->last_jiffies; in io_job_start()
143 t->io_period += difference; in io_job_start()
144 t->total_period += difference; in io_job_start()
189 unsigned int now, difference; in io_job_finish() local
192 difference = now - t->last_jiffies; in io_job_finish()
195 t->io_period += difference; in io_job_finish()
196 t->total_period += difference; in io_job_finish()
/openbmc/linux/drivers/platform/x86/dell/
H A Ddell-smbios-wmi.c87 size_t difference; in dell_smbios_wmi_call() local
99 difference = priv->req_buf_size - sizeof(u64) - size; in dell_smbios_wmi_call()
101 memset(&priv->buf->ext, 0, difference); in dell_smbios_wmi_call()
/openbmc/u-boot/fs/yaffs2/
H A Dyaffs_verify.c502 int difference; in yaffs_verify_free_chunks() local
509 difference = dev->n_free_chunks - counted; in yaffs_verify_free_chunks()
511 if (difference) { in yaffs_verify_free_chunks()
514 dev->n_free_chunks, counted, difference); in yaffs_verify_free_chunks()
/openbmc/phosphor-webui/app/access-control/controllers/
H A Dcertificate-controller.js120 var difference = (new Date(certificate.ValidNotAfter).getTime()) -
122 if (difference <= 0) {
124 } else if (difference <= 2592000000) {
/openbmc/linux/drivers/hid/
H A Dhid-roccat-kone.c293 int retval = 0, difference, old_profile; in kone_sysfs_write_settings() local
301 difference = memcmp(settings, &kone->settings, in kone_sysfs_write_settings()
303 if (difference) { in kone_sysfs_write_settings()
360 int retval = 0, difference; in kone_sysfs_write_profilex() local
369 difference = memcmp(buf, profile, sizeof(struct kone_profile)); in kone_sysfs_write_profilex()
370 if (difference) { in kone_sysfs_write_profilex()
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-benchmark/glmark2/files/
H A D0003-GLVisualConfig-By-default-don-t-care-about-the-stenc.patch57 * 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/openbmc-test-automation/redfish/managers/
H A Dtest_managers_bmc_time.robot45 ... The difference between Redfish time and CLI time exceeds the allowed time difference.
64 ... The difference between Redfish time and CLI time exceeds the allowed time difference.
108 ... The difference between Redfish time and CLI time exceeds the allowed time difference.
/openbmc/linux/arch/x86/
H A DMakefile_32.cpu3 # Must change only cflags-y (or [yn]), not CFLAGS! That makes a difference for UML.
25 # They make zero difference whatsosever to performance at this time.
/openbmc/openbmc/poky/meta/recipes-devtools/patch/
H A Dpatch.inc2 DESCRIPTION = "patch takes a patch file containing a difference listing \
/openbmc/openbmc/meta-facebook/conf/recipes/
H A Dfb-consoles.inc17 [ f"ttyS{i}" for i in sorted(set(range(0,16)).difference(skipped)) ]
/openbmc/linux/Documentation/misc-devices/
H A Dlis3lv02d.rst44 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/Documentation/userspace-api/media/v4l/
H A Dselections-common.rst10 similar, there's one fundamental difference between the two. On
/openbmc/linux/Documentation/devicetree/bindings/power/reset/
H A Dqcom,pshold.yaml14 Clearing that bit allows us to restart/power off. The difference between
/openbmc/u-boot/arch/arm/dts/
H A Darmada-388.dtsi9 * The main difference with the Armada 385 is that the 388 can handle two more
/openbmc/linux/arch/arm/boot/dts/marvell/
H A Darmada-388.dtsi9 * The main difference with the Armada 385 is that the 388 can handle two more

12345678910>>...17