Home
last modified time | relevance | path

Searched full:sensitivity (Results 1 – 25 of 189) sorted by relevance

12345678

/linux/drivers/iio/pressure/
H A Dst_pressure_core.c26 * Datasheets specify typical pressure sensitivity so that pressure is computed
28 * pressure[mBar] = raw / sensitivity
31 * sensitivity a scaling factor specified by the datasheet in LSB/mBar
36 * = raw / (sensitivity * 10) (1)
41 * gain = 10^9 / (sensitivity * 10)
42 * = 10^8 / sensitivity
47 * Datasheets specify typical temperature sensitivity and offset so that
49 * temp[Celsius] = offset[Celsius] + (raw / sensitivity)
54 * sensitivity a scaling factor specified by the datasheet in LSB/Celsius
59 * = (offset[Celsius] + (raw / sensitivity)) * 10^3
[all …]
/linux/drivers/staging/media/atomisp/pci/isp/kernels/cnr/cnr_2/
H A Dia_css_cnr2_types.h25 * Small sensitivity of edge means strong smoothness and NR performance.
41 u16 sense_gain_vy; /** Sensitivity of horizontal edge of Y.
43 u16 sense_gain_vu; /** Sensitivity of horizontal edge of U.
45 u16 sense_gain_vv; /** Sensitivity of horizontal edge of V.
47 u16 sense_gain_hy; /** Sensitivity of vertical edge of Y.
49 u16 sense_gain_hu; /** Sensitivity of vertical edge of U.
51 u16 sense_gain_hv; /** Sensitivity of vertical edge of V.
/linux/drivers/iio/common/hid-sensors/
H A Dhid-sensor-attributes.c243 st->sensitivity.report_id, in hid_sensor_read_raw_hyst_value()
244 st->sensitivity.index, sizeof(value), in hid_sensor_read_raw_hyst_value()
250 convert_from_vtf_format(value, st->sensitivity.size, in hid_sensor_read_raw_hyst_value()
251 st->sensitivity.unit_expo, in hid_sensor_read_raw_hyst_value()
291 value = convert_to_vtf_format(st->sensitivity.size, in hid_sensor_write_raw_hyst_value()
292 st->sensitivity.unit_expo, in hid_sensor_write_raw_hyst_value()
294 ret = sensor_hub_set_feature(st->hsdev, st->sensitivity.report_id, in hid_sensor_write_raw_hyst_value()
295 st->sensitivity.index, sizeof(value), in hid_sensor_write_raw_hyst_value()
301 st->sensitivity.report_id, in hid_sensor_write_raw_hyst_value()
302 st->sensitivity.index, sizeof(value), in hid_sensor_write_raw_hyst_value()
[all …]
/linux/drivers/platform/x86/
H A Dclassmate-laptop.c17 int sensitivity; member
211 return sprintf(buf, "%d\n", accel->sensitivity); in cmpc_accel_sensitivity_show_v4()
221 unsigned long sensitivity; in cmpc_accel_sensitivity_store_v4() local
228 r = kstrtoul(buf, 0, &sensitivity); in cmpc_accel_sensitivity_store_v4()
232 /* sensitivity must be between 1 and 127 */ in cmpc_accel_sensitivity_store_v4()
233 if (sensitivity < 1 || sensitivity > 127) in cmpc_accel_sensitivity_store_v4()
236 accel->sensitivity = sensitivity; in cmpc_accel_sensitivity_store_v4()
237 cmpc_accel_set_sensitivity_v4(acpi->handle, sensitivity); in cmpc_accel_sensitivity_store_v4()
243 .attr = { .name = "sensitivity", .mode = 0660 },
305 cmpc_accel_set_sensitivity_v4(acpi->handle, accel->sensitivity); in cmpc_accel_open_v4()
[all …]
/linux/drivers/iio/imu/inv_mpu6050/
H A Dinv_mpu_magn.c64 int32_t sensitivity; in inv_magn_init() local
115 /* sensor sensitivity is 0.3 uT */ in inv_magn_init()
116 sensitivity = 3000; in inv_magn_init()
120 /* sensor sensitivity in 16 bits mode: 0.15 uT */ in inv_magn_init()
121 sensitivity = 1500; in inv_magn_init()
128 * Sensitivity adjustement and scale to Gauss in inv_magn_init()
134 * raw_to_gauss = Hadj * sensitivity in inv_magn_init()
136 st->magn_raw_to_gauss[0] = (((int32_t)asa[0] + 128) * sensitivity) / 256; in inv_magn_init()
137 st->magn_raw_to_gauss[1] = (((int32_t)asa[1] + 128) * sensitivity) / 256; in inv_magn_init()
138 st->magn_raw_to_gauss[2] = (((int32_t)asa[2] + 128) * sensitivity) / 256; in inv_magn_init()
/linux/drivers/cpufreq/
H A Damd_freq_sensitivity.c3 * amd_freq_sensitivity.c: AMD frequency sensitivity feedback powersave bias
43 int sensitivity; in amd_powersave_bias_target() local
76 sensitivity = POWERSAVE_BIAS_MAX - in amd_powersave_bias_target()
79 clamp(sensitivity, 0, POWERSAVE_BIAS_MAX); in amd_powersave_bias_target()
82 if (sensitivity < od_tuners->powersave_bias) { in amd_powersave_bias_target()
157 MODULE_DESCRIPTION("AMD frequency sensitivity feedback powersave bias for "
/linux/Documentation/netlabel/
H A Ddraft-ietf-cipso-ipsecurity-01.txt190 Internet Draft belong to the Mandatory Access Control (MAC) Sensitivity
202 class and support the MAC Sensitivity security policy.
208 in the MAC Sensitivity tag type class. The format of this tag type is as
215 TAG TAG ALIGNMENT SENSITIVITY BIT MAP OF
240 3.4.2.4 Sensitivity Level
295 Sensitivity tag type class. The format of this tag type is as follows:
301 TAG TAG ALIGNMENT SENSITIVITY ENUMERATED
337 3.4.3.4 Sensitivity Level
357 in the sensitivity label. Tag type 5 is in the MAC Sensitivity tag type
364 TAG TAG ALIGNMENT SENSITIVITY CATEGORY RANGES
[all …]
/linux/sound/isa/gus/
H A Dgus_volume.c151 int wheel, sensitivity;
160 sensitivity = ((int) sens * wheel) / 128;
161 if (sensitivity < 0) {
163 sensitivity = -sensitivity;
165 semitones = (unsigned int) (sensitivity >> 13);
166 mantissa = sensitivity % 8192;
/linux/security/selinux/ss/
H A Dmls.c233 char *sensitivity, *cur_cat, *next_cat, *rngptr; in mls_context_to_sid() local
280 /* Split sensitivity and category set. */ in mls_context_to_sid()
281 sensitivity = rangep[l]; in mls_context_to_sid()
282 if (sensitivity == NULL) in mls_context_to_sid()
284 next_cat = strchr(sensitivity, ':'); in mls_context_to_sid()
288 /* Parse sensitivity. */ in mls_context_to_sid()
289 levdatum = symtab_search(&pol->p_levels, sensitivity); in mls_context_to_sid()
421 the user's computed sensitivity level) */ in mls_setup_user_range()
543 * mls_export_netlbl_lvl - Export the MLS sensitivity levels to NetLabel
549 * Given the security context copy the low MLS sensitivity level into the
[all …]
/linux/Documentation/devicetree/bindings/input/
H A Dmicrochip,cap11xx.yaml62 effectively controls the sensitivity, as a
73 microchip,sensitivity-delta-sense:
78 Controls the sensitivity multiplier of a touch detection.
110 microchip,calib-sensitivity:
176 microchip,calib-sensitivity: false
197 microchip,sensitivity-delta-sense = <16>;
/linux/Documentation/ABI/testing/
H A Dsysfs-driver-hid-lenovo37 …<busnum>-<devnum>:<config num>.<interface num>/<hid-bus>:<vendor-id>:<product-id>.<num>/sensitivity
40 Description: This file contains the trackpoint sensitivity.
41 Values are decimal integers from 1 (lowest sensitivity) to 255 (highest sensitivity).
/linux/drivers/staging/media/atomisp/pci/isp/kernels/ynr/ynr_2/
H A Dia_css_ynr2_types.h31 u16 edge_sense_gain_0; /** Sensitivity of edge in dark area.
34 u16 edge_sense_gain_1; /** Sensitivity of edge in bright area.
37 u16 corner_sense_gain_0; /** Sensitivity of corner in dark area.
40 u16 corner_sense_gain_1; /** Sensitivity of corner in bright area.
/linux/drivers/media/i2c/et8ek8/
H A Det8ek8_mode.c55 .sensitivity = 65536
156 .sensitivity = 65536
212 .sensitivity = 65536
268 .sensitivity = 65536
324 .sensitivity = 65536
380 .sensitivity = 65536
435 .sensitivity = 65536
491 .sensitivity = 65536
547 .sensitivity = 65536
/linux/drivers/net/wireless/intel/iwlegacy/
H A D4965-calib.c90 * This algorithm attempts to set a sensitivity level that is high
186 /* If we got too many false alarms this time, reduce sensitivity */ in il4965_sens_energy_cck()
191 D_CALIB("... reducing sensitivity\n"); in il4965_sens_energy_cck()
197 * to decrease sensitivity */ in il4965_sens_energy_cck()
199 /* Else if we got fewer than desired, increase sensitivity */ in il4965_sens_energy_cck()
212 /* Increase value to increase sensitivity, but only if: in il4965_sens_energy_cck()
222 D_CALIB("... increasing sensitivity\n"); in il4965_sens_energy_cck()
223 /* Increase nrg value to increase sensitivity */ in il4965_sens_energy_cck()
227 D_CALIB("... but not changing sensitivity\n"); in il4965_sens_energy_cck()
239 * give it some extra margin by reducing sensitivity again in il4965_sens_energy_cck()
[all …]
/linux/drivers/net/wireless/intel/iwlwifi/dvm/
H A Dcalib.c105 * This algorithm attempts to set a sensitivity level that is high
203 /* If we got too many false alarms this time, reduce sensitivity */ in iwl_sens_energy_cck()
208 IWL_DEBUG_CALIB(priv, "... reducing sensitivity\n"); in iwl_sens_energy_cck()
214 * to decrease sensitivity */ in iwl_sens_energy_cck()
216 /* Else if we got fewer than desired, increase sensitivity */ in iwl_sens_energy_cck()
229 /* Increase value to increase sensitivity, but only if: in iwl_sens_energy_cck()
239 IWL_DEBUG_CALIB(priv, "... increasing sensitivity\n"); in iwl_sens_energy_cck()
240 /* Increase nrg value to increase sensitivity */ in iwl_sens_energy_cck()
244 IWL_DEBUG_CALIB(priv, "... but not changing sensitivity\n"); in iwl_sens_energy_cck()
256 * give it some extra margin by reducing sensitivity again in iwl_sens_energy_cck()
[all …]
/linux/drivers/iio/proximity/
H A Dsrf08.c57 * Gain in the datasheet is called sensitivity here to distinct it
60 int sensitivity; member
84 * is called "Sensitivity" here.
341 len = sprintf(buf, "%d\n", data->sensitivity); in srf08_show_sensitivity()
374 data->sensitivity = val; in srf08_write_sensitivity()
439 * srf02 don't have an adjustable range or sensitivity,
515 * set default sensitivity of device here in srf08_probe()
/linux/drivers/net/wireless/mediatek/mt76/mt7603/
H A Dmac.c1732 if (!dev->sensitivity || dev->sensitivity < -100) { in mt7603_adjust_sensitivity()
1733 dev->sensitivity = 0; in mt7603_adjust_sensitivity()
1734 } else if (dev->sensitivity <= -84) { in mt7603_adjust_sensitivity()
1735 adj = 7 + (dev->sensitivity + 92) / 2; in mt7603_adjust_sensitivity()
1741 } else if (dev->sensitivity <= -72) { in mt7603_adjust_sensitivity()
1742 adj = 7 + (dev->sensitivity + 80) / 2; in mt7603_adjust_sensitivity()
1751 if (dev->sensitivity > -54) in mt7603_adjust_sensitivity()
1752 dev->sensitivity = -54; in mt7603_adjust_sensitivity()
1754 adj = 7 + (dev->sensitivity + 80) / 2; in mt7603_adjust_sensitivity()
1798 dev->sensitivity = 0; in mt7603_false_cca_check()
[all …]
/linux/Documentation/userspace-api/media/v4l/
H A Dext-ctrls-camera.rst335 sensitivity to light. The numbers are expressed in arithmetic scale,
337 sensitivity is represented by doubling the numerical ISO value.
346 .. _v4l2-iso-sensitivity-auto-type:
352 Enables or disables automatic ISO sensitivity adjustments.
361 - Manual ISO sensitivity.
363 - Automatic ISO sensitivity adjustments.
376 white balance and equivalent sensitivity. The controls of those
409 - Candle light. The camera generally raises the ISO sensitivity and
435 medium-to-high ISO sensitivity, with a relatively long exposure
441 usually increases ISO sensitivity, and adjusts exposure for the
/linux/net/netlabel/
H A Dnetlabel_cipso_v4.h117 * the local MLS sensitivity level */
120 * the remote MLS sensitivity level */
123 * a MLS sensitivity level mapping, must contain only one attribute of
/linux/drivers/iio/magnetometer/
H A Dhid-sensor-magn-3d.c452 if (st->rot_attributes.sensitivity.index < 0) { in magn_3d_parse_report()
457 &st->rot_attributes.sensitivity); in magn_3d_parse_report()
458 dev_dbg(&pdev->dev, "Sensitivity index:report %d:%d\n", in magn_3d_parse_report()
459 st->rot_attributes.sensitivity.index, in magn_3d_parse_report()
460 st->rot_attributes.sensitivity.report_id); in magn_3d_parse_report()
498 /* sensitivity of rot_attribute is not the same as magn_flux_attributes */ in hid_magn_3d_probe()
499 magn_state->rot_attributes.sensitivity.index = -1; in hid_magn_3d_probe()
/linux/drivers/net/wireless/ath/ath5k/
H A Dani.h40 * enum ath5k_ani_mode - mode for ANI / noise sensitivity
45 * maximizing sensitivity. ANI will not run.
47 * minimizing sensitivity. ANI will not run.
/linux/Documentation/ABI/obsolete/
H A Dsysfs-driver-hid-roccat-kovaplus27 sensitivity in x direction.
37 sensitivity in y direction.
94 profile_settings holds information like resolution, sensitivity
110 profile_settings holds information like resolution, sensitivity
/linux/drivers/hid/
H A Dhid-lenovo.c52 int sensitivity; member
547 ret = lenovo_send_cmd_cptkbd(hdev, 0x02, cptkbd_data->sensitivity); in lenovo_features_set_cptkbd()
549 hid_err(hdev, "Sensitivity setting failed: %d\n", ret); in lenovo_features_set_cptkbd()
604 return sysfs_emit(buf, "%u\n", cptkbd_data->sensitivity); in attr_sensitivity_show_cptkbd()
619 cptkbd_data->sensitivity = value; in attr_sensitivity_store_cptkbd()
662 __ATTR(sensitivity, S_IWUSR | S_IRUGO,
800 report->field[2]->value[0] = data_pointer->sensitivity; in lenovo_features_set_tpkbd()
934 return sysfs_emit(buf, "%u\n", data_pointer->sensitivity); in attr_sensitivity_show_tpkbd()
949 data_pointer->sensitivity = value; in attr_sensitivity_store_tpkbd()
1004 __ATTR(sensitivity, S_IWUSR | S_IRUGO,
[all …]
/linux/Documentation/input/devices/
H A Dedt-ft5x06.rst21 allows setting the sensitivity in the range from 0 to 31. Note that
22 lower values indicate higher sensitivity.
/linux/sound/pci/ice1712/
H A Dews.c567 /* i/o sensitivity - this callback is shared among other devices, too */
607 .name = "Input Sensitivity Switch",
615 .name = "Output Sensitivity Switch",
627 /* analog output sensitivity;; address 0x48 bit 6 */
644 /* analog output sensitivity;; address 0x48 bit 6 */
666 /* analog input sensitivity; address 0x46 */
687 /* analog output sensitivity; address 0x46 */
714 .name = "Input Sensitivity Switch",
723 .name = "Output Sensitivity Switch",

12345678