Home | History | Annotate | Download | only in sys

Lines Matching refs:int_val

387 	int32 int_val = 0;
421 if (plen >= (int)sizeof(int_val))
422 bcopy(params, &int_val, sizeof(int_val));
424 bool_val = (int_val != 0) ? TRUE : FALSE;
429 int_val = (int32)sd_msglevel;
430 bcopy(&int_val, arg, val_size);
434 sd_msglevel = int_val;
438 int_val = (int32)si->sd_blockmode;
439 bcopy(&int_val, arg, val_size);
443 si->sd_blockmode = (bool)int_val;
451 int_val = sd_yieldcpu;
452 bcopy(&int_val, arg, val_size);
456 sd_yieldcpu = (bool)int_val;
460 int_val = sd_minyield;
461 bcopy(&int_val, arg, val_size);
465 sd_minyield = (bool)int_val;
469 int_val = sd_forcerb;
470 bcopy(&int_val, arg, val_size);
474 sd_forcerb = (bool)int_val;
479 if ((uint32)int_val > si->num_funcs) {
483 int_val = (int32)si->client_block_size[int_val];
484 bcopy(&int_val, arg, val_size);
489 uint func = ((uint32)int_val >> 16);
490 uint blksize = (uint16)int_val;
520 int_val = (int32)si->sd_dma_mode;
521 bcopy(&int_val, arg, val_size);
525 si->sd_dma_mode = (char)int_val;
530 int_val = (int32)si->use_client_ints;
531 bcopy(&int_val, arg, val_size);
535 si->use_client_ints = (bool)int_val;
543 int_val = (uint32)sd_divisor;
544 bcopy(&int_val, arg, val_size);
548 sd_divisor = int_val;
556 int_val = (uint32)sd_power;
557 bcopy(&int_val, arg, val_size);
561 sd_power = int_val;
579 int_val = (uint32)sd_clock;
580 bcopy(&int_val, arg, val_size);
584 sd_clock = int_val;
601 int_val = (uint32)sd_sdmode;
602 bcopy(&int_val, arg, val_size);
606 sd_sdmode = int_val;
615 int_val = (uint32)sd_hiok;
616 bcopy(&int_val, arg, val_size);
620 sd_hiok = int_val;
625 int_val = (int32)si->intrcount;
626 bcopy(&int_val, arg, val_size);
630 int_val = (int32)si->local_intrcount;
631 bcopy(&int_val, arg, val_size);
648 int_val = sdstd_rreg8(si, sd_ptr->offset);
650 int_val = sdstd_rreg16(si, sd_ptr->offset);
652 int_val = sdstd_rreg(si, sd_ptr->offset);
654 bcopy(&int_val, arg, sizeof(int_val));
691 int_val = (int)data;
692 bcopy(&int_val, arg, sizeof(int_val));