Home
last modified time | relevance | path

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

1234567891011

/linux-5.19.10/tools/testing/selftests/powerpc/pmu/
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()
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()
/linux-5.19.10/tools/testing/selftests/powerpc/pmu/ebb/
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()
/linux-5.19.10/arch/arc/lib/
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
/linux-5.19.10/Documentation/hwmon/
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
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
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
Dhih6130.rst23 The difference between the two devices is that the HIH-6131 has a condensation
/linux-5.19.10/drivers/input/
Dff-memless.c160 int difference; in apply_envelope() local
181 difference = abs(value) - envelope_level; in apply_envelope()
183 pr_debug("difference = %d\n", difference); in apply_envelope()
187 difference = difference * time_from_level / time_of_envelope; in apply_envelope()
189 pr_debug("difference = %d\n", difference); in apply_envelope()
192 -(difference + envelope_level) : (difference + envelope_level); in apply_envelope()
/linux-5.19.10/drivers/md/
Ddm-kcopyd.c122 unsigned throttle, now, difference; in io_job_start() local
137 difference = now - t->last_jiffies; in io_job_start()
140 t->io_period += difference; in io_job_start()
141 t->total_period += difference; in io_job_start()
185 unsigned now, difference; in io_job_finish() local
188 difference = now - t->last_jiffies; in io_job_finish()
191 t->io_period += difference; in io_job_finish()
192 t->total_period += difference; in io_job_finish()
Ddm-stats.c520 unsigned long long now, difference; in dm_stat_round() local
528 difference = now - shared->stamp; in dm_stat_round()
529 if (!difference) in dm_stat_round()
535 p->io_ticks[READ] += difference; in dm_stat_round()
537 p->io_ticks[WRITE] += difference; in dm_stat_round()
539 p->io_ticks_total += difference; in dm_stat_round()
540 p->time_in_queue += (in_flight_read + in_flight_write) * difference; in dm_stat_round()
/linux-5.19.10/drivers/platform/x86/dell/
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()
/linux-5.19.10/drivers/hid/
Dhid-roccat-kone.c296 int retval = 0, difference, old_profile; in kone_sysfs_write_settings() local
304 difference = memcmp(settings, &kone->settings, in kone_sysfs_write_settings()
306 if (difference) { in kone_sysfs_write_settings()
363 int retval = 0, difference; in kone_sysfs_write_profilex() local
372 difference = memcmp(buf, profile, sizeof(struct kone_profile)); in kone_sysfs_write_profilex()
373 if (difference) { in kone_sysfs_write_profilex()
/linux-5.19.10/arch/x86/
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.
/linux-5.19.10/Documentation/devicetree/bindings/power/reset/
Dmsm-poweroff.txt4 Clearing that bit allows us to restart/poweroff. The difference
/linux-5.19.10/drivers/hwmon/
Daht10.c120 ktime_t difference = ktime_sub(current_time, data->previous_poll_time); in aht10_polltime_expired() local
122 return ktime_after(difference, data->min_poll_interval); in aht10_polltime_expired()
/linux-5.19.10/tools/testing/kunit/
Dkunit_parser.py508 difference = len(DIVIDER) - len_message - 2 # 2 spaces added
509 if difference > 0:
511 len_1 = int(difference / 2)
512 len_2 = difference - len_1
/linux-5.19.10/Documentation/misc-devices/
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.
/linux-5.19.10/Documentation/sound/hd-audio/
Ddp-mst.rst8 Virtual pin is an extension of per_pin. The most difference of DP MST
52 Below discussion will ignore MST and NON-MST difference as it doesn't
/linux-5.19.10/Documentation/userspace-api/media/v4l/
Dselections-common.rst10 similar, there's one fundamental difference between the two. On
Dcolorspaces-details.rst66 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
Dyuv-formats.rst12 *color difference* signals, this way the green component can be
17 was added to transmit the color difference signals.
/linux-5.19.10/drivers/scsi/aacraid/
Dcommsup.c2435 long difference = HZ; in aac_command_thread() local
2458 && ((difference = next_check_jiffies - jiffies) <= 0)) { in aac_command_thread()
2461 difference = ((long)(unsigned)check_interval) in aac_command_thread()
2463 next_check_jiffies = jiffies + difference; in aac_command_thread()
2468 && ((difference = next_jiffies - jiffies) <= 0)) { in aac_command_thread()
2484 difference = HZ + HZ / 2 - in aac_command_thread()
2496 difference = (long)(unsigned)update_interval*HZ; in aac_command_thread()
2498 next_jiffies = jiffies + difference; in aac_command_thread()
2500 difference = next_check_jiffies - jiffies; in aac_command_thread()
2502 if (difference <= 0) in aac_command_thread()
[all …]
/linux-5.19.10/arch/arm/boot/dts/
Darmada-388.dtsi9 * The main difference with the Armada 385 is that the 388 can handle two more
/linux-5.19.10/Documentation/devicetree/bindings/display/panel/
Dsony,acx424akp.yaml10 the Novatek NT35560 display controller. The only difference is that

1234567891011