Searched refs:oss (Results 1 - 19 of 19) sorted by relevance

/linux-master/sound/core/oss/
H A DMakefile7 snd-mixer-oss-objs := mixer_oss.o
9 snd-pcm-oss-y := pcm_oss.o
10 snd-pcm-oss-$(CONFIG_SND_PCM_OSS_PLUGINS) += pcm_plugin.o \
13 obj-$(CONFIG_SND_MIXER_OSS) += snd-mixer-oss.o
14 obj-$(CONFIG_SND_PCM_OSS) += snd-pcm-oss.o
H A Dpcm_oss.c536 plugin = runtime->oss.plugin_first;
542 runtime->oss.plugin_first = runtime->oss.plugin_last = NULL;
549 plugin->next = runtime->oss.plugin_first;
551 if (runtime->oss.plugin_first) {
552 runtime->oss.plugin_first->prev = plugin;
553 runtime->oss.plugin_first = plugin;
555 runtime->oss.plugin_last =
556 runtime->oss.plugin_first = plugin;
565 plugin->prev = runtime->oss
[all...]
H A Dpcm_plugin.c35 #define snd_pcm_plug_first(plug) ((plug)->runtime->oss.plugin_first)
36 #define snd_pcm_plug_last(plug) ((plug)->runtime->oss.plugin_last)
/linux-master/sound/core/seq/oss/
H A DMakefile7 snd-seq-oss-objs := seq_oss.o seq_oss_init.o seq_oss_timer.o seq_oss_ioctl.o \
11 obj-$(CONFIG_SND_SEQUENCER_OSS) += snd-seq-oss.o
/linux-master/arch/m68k/mac/
H A Doss.c33 volatile struct mac_oss *oss; variable in typeref:struct:mac_oss
46 oss = (struct mac_oss *) OSS_BASE;
47 pr_debug("OSS detected at %p", oss);
54 oss->irq_level[i] = 0;
77 events = oss->irq_pending & OSS_IP_NUBUS;
119 oss->irq_level[OSS_VIA1] = OSS_IRQLEV_VIA1;
134 oss->irq_level[OSS_IOPSCC] = OSS_IRQLEV_IOPSCC;
137 oss->irq_level[OSS_IOPISM] = OSS_IRQLEV_IOPISM;
140 oss->irq_level[OSS_SCSI] = OSS_IRQLEV_SCSI;
149 oss
[all...]
H A DMakefile6 obj-y := config.o macints.o iop.o via.o oss.o psc.o \
H A Dmisc.c337 oss->rom_ctrl = OSS_POWEROFF;
/linux-master/sound/
H A DMakefile6 obj-$(CONFIG_DMASOUND) += oss/dmasound/
/linux-master/include/sound/
H A Dpcm_oss.h58 unsigned oss: 1; /* oss mode */ member in struct:snd_pcm_oss_substream
H A Drawmidi.h60 oss: 1; /* OSS compatible mode */ member in struct:snd_rawmidi_runtime
H A Dpcm.h441 struct snd_pcm_oss_runtime oss; member in struct:snd_pcm_runtime
487 struct snd_pcm_oss_substream oss; member in struct:snd_pcm_substream
509 struct snd_pcm_oss_stream oss; member in struct:snd_pcm_str
539 struct snd_pcm_oss oss; member in struct:snd_pcm
/linux-master/arch/m68k/include/asm/
H A Dmac_oss.h73 extern volatile struct mac_oss *oss;
/linux-master/sound/core/seq/
H A DMakefile20 obj-$(CONFIG_SND_SEQUENCER_OSS) += oss/
/linux-master/sound/core/
H A DMakefile53 obj-$(CONFIG_SND_OSSEMUL) += oss/
H A Dpcm.c396 if (substream->oss.oss) {
397 snd_iprintf(buffer, "OSS format: %s\n", snd_pcm_oss_format_name(runtime->oss.format));
398 snd_iprintf(buffer, "OSS channels: %u\n", runtime->oss.channels);
399 snd_iprintf(buffer, "OSS rate: %u\n", runtime->oss.rate);
400 snd_iprintf(buffer, "OSS period bytes: %lu\n", (unsigned long)runtime->oss.period_bytes);
401 snd_iprintf(buffer, "OSS periods: %u\n", runtime->oss.periods);
402 snd_iprintf(buffer, "OSS period frames: %lu\n", (unsigned long)runtime->oss.period_frames);
633 mutex_init(&pstr->oss.setup_mutex);
831 for (setup = pstr->oss
[all...]
H A Drawmidi.c515 rawmidi_file->input->runtime->oss = (maj == SOUND_MAJOR);
517 rawmidi_file->output->runtime->oss = (maj == SOUND_MAJOR);
1735 runtime->oss ? "OSS compatible" : "native",
H A Dpcm_native.c721 #define is_oss_stream(substream) ((substream)->oss.oss)
/linux-master/drivers/iio/pressure/
H A Dbmp280-core.c22 * - Updated equation for B3 param on section 3.5 to ((((long)AC1 * 4 + X3) << oss) + 2) / 4
1910 u8 oss = data->oversampling_press; local
1915 FIELD_PREP(BMP180_OSRS_PRESS_MASK, oss) |
1925 *val = get_unaligned_be24(data->buf) >> (8 - oss);
1938 s32 oss = data->oversampling_press; local
1947 b3 = ((((s32)calib->AC1 * 4 + x3) << oss) + 2) / 4;
1952 b7 = ((u32)adc_press - b3) * (50000 >> oss);
/linux-master/kernel/
H A Dsignal.c4246 do_sigaltstack (const stack_t *ss, stack_t *oss, unsigned long sp, argument
4252 if (oss) {
4253 memset(oss, 0, sizeof(stack_t));
4254 oss->ss_sp = (void __user *) t->sas_ss_sp;
4255 oss->ss_size = t->sas_ss_size;
4256 oss->ss_flags = sas_ss_flags(sp) |

Completed in 290 milliseconds