Home | History | Annotate | Download | only in sys

Lines Matching refs:int_val

1679 	int32 int_val = 0;
1688 if (plen >= (int)sizeof(int_val))
1689 bcopy(params, &int_val, sizeof(int_val));
1691 bool_val = (int_val != 0) ? TRUE : FALSE;
1709 int_val = (int32)bus->sleeping;
1710 bcopy(&int_val, arg, val_size);
1723 int_val = (int32)bus->intr;
1724 bcopy(&int_val, arg, val_size);
1742 int_val = (int32)bus->pollrate;
1743 bcopy(&int_val, arg, val_size);
1747 bus->pollrate = (uint)int_val;
1752 int_val = bus->idletime;
1753 bcopy(&int_val, arg, val_size);
1757 if ((int_val < 0) && (int_val != DHD_IDLE_IMMEDIATE)) {
1760 bus->idletime = int_val;
1765 int_val = (int32)bus->idleclock;
1766 bcopy(&int_val, arg, val_size);
1770 bus->idleclock = int_val;
1774 int_val = (int32)sd1idle;
1775 bcopy(&int_val, arg, val_size);
1794 address = (uint32)int_val;
1795 bcopy((char *)params + sizeof(int_val), &int_val, sizeof(int_val));
1796 size = (uint)int_val;
1829 int_val = (int32)bus->ramsize;
1830 bcopy(&int_val, arg, val_size);
1834 int_val = (int32)dhd_sdiod_drive_strength;
1835 bcopy(&int_val, arg, val_size);
1839 dhd_sdiod_drive_strength = int_val;
1852 int_val = (int32)dhd_readahead;
1853 bcopy(&int_val, arg, val_size);
1863 int_val = (int32)bus->use_rxchain;
1864 bcopy(&int_val, arg, val_size);
1874 int_val = (int32)dhd_alignctl;
1875 bcopy(&int_val, arg, val_size);
1883 int_val = DHD_SDALIGN;
1884 bcopy(&int_val, arg, val_size);
1906 int_val = (int32)bcmsdh_reg_read(bus->sdh, addr, size);
1909 bcopy(&int_val, arg, sizeof(int32));
1938 int_val = (int32)bcmsdh_reg_read(bus->sdh, addr, size);
1941 bcopy(&int_val, arg, sizeof(int32));
1974 int_val = (int32)forcealign;
1975 bcopy(&int_val, arg, val_size);
1983 int_val = (int32)dhd_txbound;
1984 bcopy(&int_val, arg, val_size);
1988 dhd_txbound = (uint)int_val;
1992 int_val = (int32)dhd_rxbound;
1993 bcopy(&int_val, arg, val_size);
1997 dhd_rxbound = (uint)int_val;
2001 int_val = (int32)dhd_txminmax;
2002 bcopy(&int_val, arg, val_size);
2006 dhd_txminmax = (uint)int_val;
2016 int_val = (int32)bus->ext_loop;
2017 bcopy(&int_val, arg, val_size);
2050 int_val = (bool) bus->dhd->dongle_reset;
2051 bcopy(&int_val, arg, val_size);