| /src/sys/dev/ |
| midisyn.c | 204 * and could probably be reduced by different management of voices and 244 if (ms->voices[v].chan_note == cn && ms->voices[v].inuse) 261 ms->voices = kmem_zalloc(ms->nvoice * sizeof(struct voice), 287 ms->voices[voice].inuse = 0; 300 bestseq = ms->voices[0].seqno + (ms->voices[0].inuse ? 0x40000000 : 0); 302 s = ms->voices[v].seqno; 303 if (ms->voices[v].inuse) 311 bestv, ms->voices[bestv].seqno [all...] |
| midisynvar.h | 57 * Allocate one of the devices actual voices (stealing one if 179 struct voice *voices; member in struct:midisyn 185 #define MS_GETPGM(ms, vno) ((ms)->pgms[MS_GETCHAN(&(ms)->voices[vno])])
|
| /src/sys/dev/ic/ |
| oplvar.h | 55 struct opl_voice voices[OPL3_NVOICE]; member in struct:opl_softc
|
| opl.c | 171 sc->voices[i] = voicetab[i]; 302 struct opl_voice *v = &sc->voices[voice]; 312 struct opl_voice *v = &sc->voices[voice]; 323 const struct opl_operators *p = sc->voices[v].patch; 534 v = &sc->voices[voice]; 542 chan = MS_GETCHAN(&ms->voices[voice]); 632 v = &sc->voices[voice];
|
| interwavevar.h | 186 u_char voices; /* Number of active voices */ member in struct:iw_softc
|
| /src/sys/dev/isa/ |
| gus.c | 201 int sc_voices; /* Number of active voices */ 469 * voices. Since the GUS samples a voice every 1.6 us, the maximum frequency 470 * is dependent on the number of active voices. Yes, it is pretty weird. 474 44100, /* 14 voices */ 475 41160, /* 15 voices */ 476 38587, /* 16 voices */ 477 36317, /* 17 voices */ 478 34300, /* 18 voices */ 479 32494, /* 19 voices */ 480 30870, /* 20 voices */ [all...] |