Home
last modified time | relevance | path

Searched refs:stmax (Results 1 – 4 of 4) sorted by relevance

/freebsd/sys/dev/acpica/
H A Dacpiio.h103 uint32_t stmax; /* Max Sampling Time */ member
128 uint32_t stmax; /* Max Sampling Time */
H A Dacpi_cmbat.c470 BIX_GETU32(stmax); in acpi_cmbat_get_bix()
/freebsd/usr.sbin/acpi/acpiconf/
H A Dacpiconf.c136 if (battio.bix.stmax != ACPI_BATT_UNKNOWN) in acpi_battinfo()
138 battio.bix.stmax); in acpi_battinfo()
/freebsd/sys/dev/evdev/
H A Devdev_mt.c572 evdev_mt_normalize(int32_t value, int32_t mtmin, int32_t mtmax, int32_t stmax) in evdev_mt_normalize() argument
574 if (stmax != 0 && mtmax != mtmin) { in evdev_mt_normalize()
575 value = (value - mtmin) * stmax / (mtmax - mtmin); in evdev_mt_normalize()
576 value = MAX(MIN(value, stmax), 0); in evdev_mt_normalize()