/openbmc/linux/Documentation/tools/rtla/ |
H A D | rtla-hwnoise.rst | 7 Detect and quantify hardware-related noise 23 noise is allowed. 41 The tool is set to detect any noise higher than *one microsecond*, 61 all noise that the tool observed, and the *% CPU Aval* is the relation 64 The *Max Noise* column is the maximum hardware noise the tool detected in a 65 single period, and the *Max Single* is the maximum single noise seen. 67 The *HW* and *NMI* columns show the total number of *hardware* and *NMI* noise 73 noise to the application, but it was certainly caused by more than one single 74 noise, as the *Max Single* noise was of *3 us*. The CPU has *HW noise,* at a 78 The tool should report *0* hardware-related noise in the ideal situation. [all …]
|
H A D | rtla-osnoise.rst | 5 Measure the operating system noise 20 a summary of the noise of the operating system, including the counters of 22 for each noise via the **osnoise:** tracepoints. The **rtla osnoise top** 24 The **rtla osnoise hist** mode displays information about the noise using
|
/openbmc/linux/Documentation/trace/ |
H A D | osnoise-tracer.rst | 8 NMIs, IRQs, SoftIRQs, and any other system thread can cause noise to the 13 source of noise: *hardware noise*. 37 system level, the hardware noise counter increases, pointing to a 38 hardware-related noise. In this way, osnoise can account for any 40 prints the sum of all noise, the max single noise, the percentage of CPU 41 available for the thread, and the counters for the noise sources. 130 workload, allowing only IRQ and hardware-related noise. 142 - osnoise:nmi_noise: noise from NMI, including the duration. 143 - osnoise:irq_noise: noise from an IRQ, including the duration. 144 - osnoise:softirq_noise: noise from a SoftIRQ, including the [all …]
|
/openbmc/qemu/hw/input/ |
H A D | ads7846.c | 27 int noise; member 80 s->noise = (s->noise + 3) & 7; in ads7846_transfer() 82 case 1: s->output += s->noise ^ 2; break; in ads7846_transfer() 83 case 3: s->output += s->noise ^ 0; break; in ads7846_transfer() 84 case 4: s->output += s->noise ^ 7; break; in ads7846_transfer() 85 case 5: s->output += s->noise ^ 5; break; in ads7846_transfer() 136 VMSTATE_INT32(noise, ADS7846State),
|
H A D | tsc2005.c | 55 uint8_t noise; member 124 (s->noise & 3); in tsc2005_read() 127 s->noise++; in tsc2005_read() 129 (s->noise & 3); in tsc2005_read() 133 (s->noise & 3); in tsc2005_read() 137 (s->noise & 3); in tsc2005_read() 146 (s->noise & 5); in tsc2005_read() 151 (s->noise & 3); in tsc2005_read() 493 VMSTATE_UINT8(noise, TSC2005State),
|
H A D | tsc210x.c | 74 uint8_t noise; member 343 (s->noise & 3); in tsc2102_data_register_read() 346 s->noise ++; in tsc2102_data_register_read() 349 (s->noise & 3); in tsc2102_data_register_read() 354 (s->noise & 3); in tsc2102_data_register_read() 359 (s->noise & 3); in tsc2102_data_register_read() 375 (s->noise & 6); in tsc2102_data_register_read() 392 (s->noise & 5); in tsc2102_data_register_read() 397 (s->noise & 3); in tsc2102_data_register_read() 1037 VMSTATE_UINT8(noise, TSC210xState),
|
/openbmc/linux/drivers/net/wireless/ath/ |
H A D | spectral_common.h | 56 s8 noise; member 100 __be16 noise; member 124 __be32 noise; member
|
/openbmc/linux/drivers/media/dvb-frontends/ |
H A D | lgdt330x.c | 496 u32 noise; /* noise value */ in lgdt3302_read_snr() local 505 noise = ((buf[0] & 7) << 16) | (buf[1] << 8) | buf[2]; in lgdt3302_read_snr() 517 noise = ((buf[0] & 3) << 8) | buf[1]; in lgdt3302_read_snr() 531 state->snr = calculate_snr(noise, c); in lgdt3302_read_snr() 533 dprintk(state, "noise = 0x%08x, snr = %d.%02d dB\n", noise, in lgdt3302_read_snr() 543 u32 noise; /* noise value */ in lgdt3303_read_snr() local 552 noise = ((buf[0] & 0x78) << 13) | (buf[1] << 8) | buf[2]; in lgdt3303_read_snr() 557 noise = ((buf[0] & 7) << 16) | (buf[3] << 8) | buf[4]; in lgdt3303_read_snr() 564 noise = (buf[0] << 8) | buf[1]; in lgdt3303_read_snr() 576 state->snr = calculate_snr(noise, c); in lgdt3303_read_snr() [all …]
|
H A D | or51132.c | 461 int noise, reg; in or51132_read_snr() local 467 noise = or51132_readreg(state, 0x02); in or51132_read_snr() 468 if (noise < 0) { in or51132_read_snr() 472 dprintk("read_snr noise (%d)\n", noise); in or51132_read_snr() 501 state->snr = calculate_snr(noise, c) - usK; in or51132_read_snr() 504 dprintk("%s: noise = 0x%08x, snr = %d.%02d dB\n", __func__, noise, in or51132_read_snr()
|
/openbmc/linux/tools/testing/selftests/bpf/progs/ |
H A D | tailcall_bpf2bpf4.c | 20 int noise = 0; variable 33 if (noise) in subprog_tail_2()
|
/openbmc/linux/Documentation/userspace-api/media/dvb/ |
H A D | fe-read-snr.rst | 31 The signal-to-noise ratio is stored into \*snr. 36 This ioctl call returns the signal-to-noise ratio for the signal
|
/openbmc/openbmc/poky/meta/recipes-graphics/mesa/mesa-demos/ |
H A D | 0004-Use-DEMOS_DATA_DIR-to-locate-data-files.patch | 16 src/glsl/simplex-noise.c | 2 +- 127 diff --git a/src/glsl/simplex-noise.c b/src/glsl/simplex-noise.c 129 --- a/src/glsl/simplex-noise.c 130 +++ b/src/glsl/simplex-noise.c 135 - const char *filename = "simplex-noise.glsl"; 136 + const char *filename = DEMOS_DATA_DIR "simplex-noise.glsl";
|
/openbmc/linux/drivers/net/wireless/mediatek/mt76/ |
H A D | mt792x_mac.c | 241 if (!phy->noise) in mt792x_phy_update_channel() 242 phy->noise = nf << 4; in mt792x_phy_update_channel() 244 phy->noise += nf - (phy->noise >> 4); in mt792x_phy_update_channel() 251 state->noise = -(phy->noise >> 4); in mt792x_phy_update_channel()
|
/openbmc/linux/Documentation/sound/soc/ |
H A D | pops-clicks.rst | 8 powered up and causes a popping noise on the speakers). 50 An unwanted zipper noise can occur within the audio playback or capture stream 51 when a volume control is changed near its maximum gain value. The zipper noise
|
/openbmc/linux/drivers/media/pci/cx88/ |
H A D | cx88-dsp.c | 159 s32 carrier, stereo, dual, noise; in detect_a2_a2m_eiaj() local 189 noise = noise_magnitude(x, N, FREQ_NOISE_START, FREQ_NOISE_END); in detect_a2_a2m_eiaj() 193 carrier, stereo, dual, noise); in detect_a2_a2m_eiaj() 216 (noise < 10) && in detect_a2_a2m_eiaj()
|
/openbmc/linux/Documentation/devicetree/bindings/input/touchscreen/ |
H A D | tsc2007.txt | 16 If set, it will permit noise in the data up to +- the value given to the fuzz 17 parameter, that is used to filter noise from the event stream.
|
H A D | touchscreen.yaml | 48 description: horizontal noise value of the absolute input device (in pixels) 52 description: vertical noise value of the absolute input device (in pixels) 56 description: pressure noise value of the absolute input device (arbitrary
|
/openbmc/linux/Documentation/devicetree/bindings/iio/proximity/ |
H A D | ams,as3935.yaml | 42 Set the noise and watchdog threshold register on startup. This will 43 need to set according to the noise from the MCU board, and possibly
|
/openbmc/linux/Documentation/ABI/testing/ |
H A D | sysfs-bus-iio-adc-ad4130 | 7 * "sinc4" - Sinc 4. Excellent noise performance. Long 14 Good noise performance.
|
/openbmc/linux/Documentation/devicetree/bindings/iio/accel/ |
H A D | adi,adxl355.yaml | 7 title: Analog Devices ADXL355 and ADXL359 3-Axis, Low noise MEMS Accelerometers 13 Analog Devices ADXL355 and ADXL359 3-Axis, Low noise MEMS Accelerometers that
|
/openbmc/linux/drivers/staging/wlan-ng/ |
H A D | p80211conv.c | 224 wlandev->spy_stat[i].noise = rxmeta->noise; in orinoco_spy_gather() 227 rxmeta->noise) ? (rxmeta->signal - in orinoco_spy_gather() 228 rxmeta->noise) : 0; in orinoco_spy_gather()
|
/openbmc/linux/kernel/trace/ |
H A D | trace_osnoise.c | 324 u64 noise; /* noise */ member 512 entry->noise = sample->noise; in __trace_osnoise_sample() 1426 s64 noise = 0, max_noise = 0; in run_osnoise() local 1495 noise = time_sub(sample, last_sample); in run_osnoise() 1500 if (noise < 0) { in run_osnoise() 1520 if (noise >= threshold) { in run_osnoise() 1523 if (noise > max_noise) in run_osnoise() 1524 max_noise = noise; in run_osnoise() 1529 sum_noise += noise; in run_osnoise() 1534 if (noise > stop_in) in run_osnoise() [all …]
|
/openbmc/linux/drivers/net/wireless/intersil/orinoco/ |
H A D | hermes.h | 263 __le16 noise; /* Noise level */ member 279 __le16 noise; /* Noise level */ member 293 __le16 noise; /* Noise level */ member 320 u8 noise; member
|
/openbmc/linux/drivers/net/wireless/ath/ath9k/ |
H A D | calib.c | 75 s8 noise = ATH_DEFAULT_NOISE_FLOOR; in ath9k_hw_getchan_noise() local 81 noise += delta; in ath9k_hw_getchan_noise() 83 return noise; in ath9k_hw_getchan_noise() 438 ah->noise = ath9k_hw_getchan_noise(ah, chan, chan->noisefloor); in ath9k_hw_getnf()
|
/openbmc/linux/drivers/net/wireless/realtek/rtl818x/rtl8187/ |
H A D | rtl8187.h | 46 u8 noise; member 136 u8 noise; member
|