HomeSort by: relevance | last modified time | path
    Searched defs:volume (Results 1 - 25 of 26) sorted by relevancy

1 2

  /src/usr.sbin/fstyp/
cd9660.c 54 char *sector, *volume; local in function:fstyp_cd9660
63 volume = sector + 0x28;
65 strlcpy(label, volume, MIN(size, VOLUME_LEN));
  /src/sys/arch/atari/dev/
kbdreg.h 51 u_int volume; /* volume of bell (0-64) */ member in struct:kbdbell
iteioctl.h 59 u_int volume; /* volume of bell (0-64) */ member in struct:itebell
  /src/sys/dev/wscons/
wsbellvar.h 37 u_int volume; member in struct:vbell_args
  /src/sys/arch/x68k/include/
kbio.h 58 int volume; member in struct:kbiocbell
opmbellio.h 72 int volume; member in struct:bell_info
  /src/sys/arch/ews4800mips/stand/common/
ustarfs.c 51 struct volume { struct
68 * Although phisical format isn't 2D, volume size is
171 __change_volume(int volume)
177 printf("insert disk %d, and press return...", volume + 1);
187 if ((i = buf[8] - '0') != volume + 1) {
188 printf("invalid volume number. disk=%d requested=%d\n",
189 i, volume + 1);
  /src/sys/arch/macppc/dev/
abtn.c 61 int volume; /* speaker volume (not yet) */ member in struct:abtn_softc
177 printf("%s: volume setting not implemented\n",
  /src/sys/sys/
radioio.h 44 int volume; member in struct:radio_info
  /src/sys/arch/amiga/dev/
iteioctl.h 52 u_int volume; /* volume of bell (0-64) */ member in struct:itebell
  /src/sys/arch/ews4800mips/include/
vtoc.h 35 /* Volume Table Of Contents */
70 int8_t volume[8]; /* 20 */ member in struct:vtoc_sector
  /src/sys/dev/ic/
uda1341.c 107 sc->sc_l3_write(sc, 1, 0x15); /* Volume */
160 * a volume change does not trigger updates of all the
164 uint8_t val, volume, bass, treble, deemphasis; local in function:uda1341_update_sound_settings
179 /* Update volume */
180 /* On the UDA1341 maximal volume is 0x0,
181 while minimal volume is 0x3f */
182 volume = (0x3f) - ((sc->sc_volume*(0x3f+1)) / (AUDIO_LEVELS));
185 val |= volume & UDA1341_L3_DATA0_VOLUME_MASK;
interwavevar.h 47 u_char volume; member in struct:iw_voice_info
  /src/sys/arch/arm/broadcom/
bcm2835_vcaudioreg.h 85 uint32_t volume; member in struct:__anon5827fd4f0308
  /src/sys/arch/sgimips/sgimips/
arcemu.c 200 char volume[3]; member in struct:arcemu_nvramdata
212 char volume[4]; member in struct:arcemu_sgienv
337 extractenv(env, "volume", sgienv.volume, sizeof(sgienv.volume));
441 * a kernel into the volume header. However, this makes the bootfile
  /src/sys/arch/x68k/dev/
opmbell.c 83 u_char volume; member in struct:bell_softc
150 sc->volume = BELL_VOLUME;
204 bp->volume = sc->volume;
382 * The next table is a little trikcy table of volume factors.
385 * volume-scaling (0...100) to a logarithmic scaling as present in the
386 * OPM chips. so: Volume 50% = 6 db.
411 opm_set_volume(sc->ch, vol_table[sc->volume]);
488 data->volume > MAXBVOLUME || data->msec > MAXBTIME) {
491 sc->volume = data->volume
    [all...]
  /src/sys/arch/zaurus/dev/
wm8731_zaudio.c 225 /* Allocate memory for volume & mute operations */
404 /* Initialise volume levels */
515 struct zaudio_volume *volume; local in function:wm8731_update_volume
519 volume = &sc->sc_volume[WM8731_OP_SPKR];
521 WM8731_SET_LHPVOL(volume->left >> 1));
523 WM8731_SET_RHPVOL(volume->right >> 1));
527 volume = &sc->sc_volume[WM8731_OP_MIC];
529 WM8731_SET_LINVOL(volume->left >> 3));
  /src/sys/fs/sysvbfs/
bfs.h 99 char volume[6]; member in struct:bfs_super_block
  /src/usr.sbin/quotarestore/
quotarestore.c 505 fprintf(stderr, "usage: %s [-d] volume [dump-file]\n",
518 const char *volume = NULL; local in function:main
531 volume = argv[optind++];
539 qh = quota_open(volume);
541 err(EXIT_FAILURE, "quota_open: %s", volume);
  /src/usr.bin/audio/play/
play.c 64 static int volume; variable in typeref:typename:int
157 volume = atoi(optarg);
158 if (volume < 0 || volume > 255)
159 errx(1, "volume must be between 0 and 255");
528 if (volume)
529 info.play.gain = volume;
607 "-v volume\n");
  /src/sys/dev/
midisyn.c 107 /* volume state components in centibels; just sum for overall level */
108 int16_t volume; member in struct:channelstate
376 * where midisyn computes a volume from vel*volume*expression*
506 ms->chnstate[chan].volume = 0;
509 ms->chnstate[chan].volume = midisyn_vol2cB(
605 level = ms->chnstate[chan].volume + ms->chnstate[chan].expression;
  /src/sys/dev/audio/
audiodef.h 69 * Whether supports per-track volume.
145 audio_stage_t chvol; /* channel volume stage */
159 /* Track volume (0..256) */
160 u_int volume; member in struct:audio_track
232 * software master volume (0..256)
235 u_int volume; member in struct:audio_trackmixer
237 * Volume recovery timer in auto gain control.
  /src/usr.sbin/bta2dpd/bta2dpd/
bta2dpd.c 239 static int volume = 0; variable in typeref:typename:int
446 case 'V': /* Volume Multiplier */
447 volume = atoi(optarg);
470 if (volume < 0 || volume > 2)
578 "\t\t[-M mtu] [-V volume] [-f mode] [-b blocks] [-e bands]\n"
582 "\t%s -t [-v] [-K] [-r rate] [-M mtu] [-V volume] [-f mode]\n"
592 "\t-V volume Volume multiplier 0,1,2.\n"
862 alloc_method, bitpool, mtu, volume);
    [all...]
  /src/sys/dev/pci/
emuxki.c 797 uint32_t volume; local in function:emuxki_play_start
801 volume = 32767;
812 (volume << 16) |
816 (volume << 16) |
836 /* volume = 0 */
  /src/sys/dev/scsipi/
scsipi_cd.h 315 u_int8_t volume; member in struct:cd_audio_page::port_control

Completed in 27 milliseconds

1 2