Home | History | Annotate | Download | only in sys

Lines Matching refs:int_val

2024 	int32 int_val = 0;
2033 if (plen >= (int)sizeof(int_val))
2034 bcopy(params, &int_val, sizeof(int_val));
2036 bool_val = (int_val != 0) ? TRUE : FALSE;
2054 int_val = (int32)bus->sleeping;
2055 bcopy(&int_val, arg, val_size);
2068 int_val = (int32)bus->intr;
2069 bcopy(&int_val, arg, val_size);
2087 int_val = (int32)bus->pollrate;
2088 bcopy(&int_val, arg, val_size);
2092 bus->pollrate = (uint)int_val;
2097 int_val = bus->idletime;
2098 bcopy(&int_val, arg, val_size);
2102 if ((int_val < 0) && (int_val != DHD_IDLE_IMMEDIATE)) {
2105 bus->idletime = int_val;
2110 int_val = (int32)bus->idleclock;
2111 bcopy(&int_val, arg, val_size);
2115 bus->idleclock = int_val;
2119 int_val = (int32)sd1idle;
2120 bcopy(&int_val, arg, val_size);
2139 address = (uint32)int_val;
2140 bcopy((char *)params + sizeof(int_val), &int_val, sizeof(int_val));
2141 size = (uint)int_val;
2174 int_val = (int32)bus->ramsize;
2175 bcopy(&int_val, arg, val_size);
2179 int_val = (int32)dhd_sdiod_drive_strength;
2180 bcopy(&int_val, arg, val_size);
2184 dhd_sdiod_drive_strength = int_val;
2197 int_val = (int32)dhd_readahead;
2198 bcopy(&int_val, arg, val_size);
2208 int_val = (int32)bus->use_rxchain;
2209 bcopy(&int_val, arg, val_size);
2219 int_val = (int32)dhd_alignctl;
2220 bcopy(&int_val, arg, val_size);
2228 int_val = DHD_SDALIGN;
2229 bcopy(&int_val, arg, val_size);
2251 int_val = (int32)bcmsdh_reg_read(bus->sdh, addr, size);
2254 bcopy(&int_val, arg, sizeof(int32));
2283 int_val = (int32)bcmsdh_reg_read(bus->sdh, addr, size);
2286 bcopy(&int_val, arg, sizeof(int32));
2319 int_val = (int32)forcealign;
2320 bcopy(&int_val, arg, val_size);
2328 int_val = (int32)dhd_txbound;
2329 bcopy(&int_val, arg, val_size);
2333 dhd_txbound = (uint)int_val;
2337 int_val = (int32)dhd_rxbound;
2338 bcopy(&int_val, arg, val_size);
2342 dhd_rxbound = (uint)int_val;
2346 int_val = (int32)dhd_txminmax;
2347 bcopy(&int_val, arg, val_size);
2351 dhd_txminmax = (uint)int_val;
2361 int_val = (int32)bus->ext_loop;
2362 bcopy(&int_val, arg, val_size);
2395 int_val = (bool) bus->dhd->dongle_reset;
2396 bcopy(&int_val, arg, val_size);