/src/sys/arch/macppc/dev/ |
fcu.c | 311 uint16_t rmin, rmax; local in function:fcu_configure_sensor 334 memcpy(&rmax, &eeprom[0x56], 2); 336 fan->max_rpm = rmax; 337 fan->step = (rmax - rmin) / 30; 341 memcpy(&rmax, &eeprom[0x4e], 2); 343 fan->max_rpm = rmax; 344 fan->step = (rmax - rmin) / 30; 348 memcpy(&rmax, &eeprom[0x52], 2); 350 fan->max_rpm = rmax; 351 fan->step = (rmax - rmin) / 30 [all...] |
/src/sys/arch/arm/fdt/ |
pcihost_fdt.c | 676 const bus_addr_t rmax = pbs->ranges[i].bpci - 1 + pbs->ranges[i].size; local in function:pcihost_bus_space_map 677 if ((bpa >= rmin) && ((bpa - 1 + size) <= rmax)) {
|
/src/sys/arch/riscv/fdt/ |
pcihost_fdt.c | 626 const bus_addr_t rmax = pbs->ranges[i].bpci - 1 + pbs->ranges[i].size; local in function:pcihost_bus_space_map 627 if ((bpa >= rmin) && ((bpa - 1 + size) <= rmax)) {
|
/src/sys/arch/arm/broadcom/ |
bcm2838_pcie.c | 863 const bus_addr_t rmax = bs->ranges[i].bpci - 1 + bs->ranges[i].size; local in function:bcmstb_bus_space_map 864 if ((bpa >= rmin) && ((bpa - 1 + size) <= rmax)) {
|
/src/lib/libc/time/ |
zic.c | 1286 r = 0, rmax = 0; 1289 uint_fast64_t rmax1 = rmax; 1298 rmax = rmax < rmax1 ? rmax1 : UINT_FAST64_MAX; 1299 } while (rmax < UINT_FAST64_MAX);
|
/src/sys/dev/sbus/ |
p9100.c | 720 uint32_t rmax = ((sc->sc_width & 0x3fff) << 16) | local in function:p9100_init_engine 727 p9100_ctl_write_4(sc, WINDOW_MAX, rmax);
|