Searched defs:vol (Results 1 - 17 of 17) sorted by relevance

/external/qemu/audio/
H A Dmixeng_template.h112 (struct st_sample *dst, const void *src, int samples, struct mixeng_volume *vol)
117 if (vol->mute) {
122 (void) vol;
125 out->l = VOL (glue (conv_, ET) (*in++), vol->l);
126 out->r = VOL (glue (conv_, ET) (*in++), vol->r);
132 (struct st_sample *dst, const void *src, int samples, struct mixeng_volume *vol)
137 if (vol->mute) {
142 (void) vol;
145 out->l = VOL (glue (conv_, ET) (in[0]), vol->l);
111 _to_stereo(struct st_sample *dst, const void *src, int samples, struct mixeng_volume *vol) argument
131 _to_mono(struct st_sample *dst, const void *src, int samples, struct mixeng_volume *vol) argument
H A Daudio_int.h122 struct mixeng_volume vol; member in struct:SWVoiceOut
138 struct mixeng_volume vol; member in struct:SWVoiceIn
H A Daudio.c803 int samples, struct mixeng_volume *vol)
808 (void) vol;
1137 sw->conv (sw->buf, buf, swlim, &sw->vol);
2200 sw->vol.mute = mute;
2201 sw->vol.l = nominal_volume.l * lvol / 255;
2202 sw->vol.r = nominal_volume.r * rvol / 255;
2209 sw->vol.mute = mute;
2210 sw->vol.l = nominal_volume.l * lvol / 255;
2211 sw->vol.r = nominal_volume.r * rvol / 255;
802 noop_conv(struct st_sample *dst, const void *src, int samples, struct mixeng_volume *vol) argument
/external/qemu/distrib/sdl-1.2.15/src/audio/dc/
H A Daica.c146 vol is the volume, 0 to 0xff (0xff is louder)
151 void aica_play(int ch,int mode,unsigned long smpptr,int loopst,int loopend,int freq,int vol,int pan,int loopflag) { argument
186 vol = AICA_VOL(vol);
187 CHNREG32(ch, 40) = 0x24 | (vol<<8);
218 for (i=0xff; i>=vol; i--) {
238 void aica_vol(int ch,int vol) { argument
239 // g2_write_8(CHNREGADDR(ch, 41),AICA_VOL(vol));
240 g2_write_32(CHNREGADDR(ch, 40),(g2_read_32(CHNREGADDR(ch, 40))&0xffff00ff)|(AICA_VOL(vol)<<8) );
/external/qemu/distrib/sdl-1.2.15/src/audio/symbian/
H A Dstreamplayer.cpp177 const TInt vol = static_cast<TReal>(newvolume); local
178 iStream->SetVolume(vol);
/external/quake/quake/src/WinQuake/
H A Dsnd_null.cpp53 void S_StaticSound (sfx_t *sfx, vec3_t origin, float vol, float attenuation) argument
H A Dcl_parse.cpp700 int sound_num, vol, atten; local
706 vol = MSG_ReadByte ();
709 S_StaticSound (cl.sound_precache[sound_num], org, vol, atten);
H A Dsnd_dma.cpp462 int vol; local
475 vol = (int)(fvol*255);
486 target_chan->master_vol = vol;
627 void S_StaticSound (sfx_t *sfx, vec3_t origin, float vol, float attenuation) argument
656 ss->master_vol = (int) vol;
674 float vol; local
698 vol = ambient_level.value * l->ambient_sound_level[ambient_channel];
699 if (vol < 8)
700 vol = 0;
703 if (chan->master_vol < vol)
946 float vol; local
[all...]
H A Dpr_cmds.cpp511 float vol, attenuation; local
516 vol = G_FLOAT(OFS_PARM2);
538 MSG_WriteByte (&sv.signon, (int) (vol*255));
/external/eigen/unsupported/Eigen/src/BVH/
H A DBVAlgorithms.h50 bool intersectVolume(const Volume1 &vol) { return intersector.intersectVolumeObject(vol, stored); } argument
62 bool intersectVolume(const Volume2 &vol) { return intersector.intersectObjectVolume(stored, vol); } argument
187 Scalar minimumOnVolume(const Volume1 &vol) { return minimizer.minimumOnVolumeObject(vol, stored); } argument
200 Scalar minimumOnVolume(const Volume2 &vol) { return minimizer.minimumOnObjectVolume(stored, vol); } argument
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Regress/
H A Dregress-216320.js55 function vol(){ function
172 if(!vol()){ return false; }
499 if(!vol()){ return false; }
664 if(!vol()){}
726 if(!vol()){return false;}
739 if(!vol()){return false;}
746 if(!vol()){return false;}
800 if(!vol()){
833 if(!vol()){ return; }
/external/chromium/chrome/browser/chromeos/
H A Daudio_mixer_alsa.cc394 double vol = prefs_->GetDouble(prefs::kAudioVolume); local
400 NewRunnableMethod(this, &AudioMixerAlsa::DoSetVolumeMute, vol, mute));
/external/quake/quake/src/QW/client/
H A Dcl_parse.c761 int sound_num, vol, atten; local
767 vol = MSG_ReadByte ();
770 S_StaticSound (cl.sound_precache[sound_num], org, vol, atten);
H A Dsnd_dma.c458 int vol; local
471 vol = fvol*255;
482 target_chan->master_vol = vol;
623 void S_StaticSound (sfx_t *sfx, vec3_t origin, float vol, float attenuation) argument
652 ss->master_vol = vol;
670 float vol; local
694 vol = ambient_level.value * l->ambient_sound_level[ambient_channel];
695 if (vol < 8)
696 vol = 0;
699 if (chan->master_vol < vol)
939 float vol; local
[all...]
/external/llvm/include/llvm/Target/
H A DTargetLowering.h350 bool vol; // is volatile? member in struct:llvm::TargetLoweringBase::IntrinsicInfo
/external/quake/quake/src/QW/server/
H A Dpr_cmds.c428 float vol, attenuation; local
433 vol = G_FLOAT(OFS_PARM2);
455 MSG_WriteByte (&sv.signon, vol*255);
/external/webkit/Source/WebCore/html/
H A DHTMLMediaElement.cpp1561 void HTMLMediaElement::setVolume(float vol, ExceptionCode& ec) argument
1563 LOG(Media, "HTMLMediaElement::setVolume(%f)", vol);
1565 if (vol < 0.0f || vol > 1.0f) {
1570 if (m_volume != vol) {
1571 m_volume = vol;
1944 float vol = m_player->volume(); local
1945 if (vol != m_volume) {
1946 m_volume = vol;

Completed in 748 milliseconds