Searched refs:volume (Results 1 - 25 of 172) sorted by relevance

1234567

/external/qemu/distrib/sdl-1.2.15/src/audio/
H A DSDL_mixer_m68k.c31 void SDL_MixAudio_m68k_U8(char* dst, char* src, long len, long volume, char* mix8) argument
46 " muls %3,%%d0\n" /* d0 *= volume (0<=volume<=128) */
63 "a"(dst), "a"(src), "d"(len), "d"(volume), "a"(mix8)
69 void SDL_MixAudio_m68k_S8(char* dst, char* src, long len, long volume) argument
85 " muls %3,%%d0\n" /* d0 *= volume (0<=volume<=128) */
110 "a"(dst), "a"(src), "d"(len), "d"(volume)
116 void SDL_MixAudio_m68k_S16MSB(short* dst, short* src, long len, long volume) argument
130 " muls %3,%%d0\n" /* d0 *= volume (
162 SDL_MixAudio_m68k_S16LSB(short* dst, short* src, long len, long volume) argument
[all...]
H A DSDL_mixer_m68k.h31 void SDL_MixAudio_m68k_U8(char* dst,char* src, long len, long volume, char* mix8);
32 void SDL_MixAudio_m68k_S8(char* dst,char* src, long len, long volume);
34 void SDL_MixAudio_m68k_S16MSB(short* dst,short* src, long len, long volume);
35 void SDL_MixAudio_m68k_S16LSB(short* dst,short* src, long len, long volume);
H A DSDL_mixer_MMX.c40 void SDL_MixAudio_MMX_S16(char* dst,char* src,unsigned int size,int volume) argument
44 " movl %3,%%eax\n" /* eax = volume */
75 /* multiplier par le volume */
106 /* mm1 = le sample avec le volume modifi� */
112 /* mm4 = le sample avec le volume modifi� */
131 "m"(volume)
142 void SDL_MixAudio_MMX_S8(char* dst,char* src,unsigned int size,int volume) argument
146 " movl %3,%%eax\n" /* eax = volume */
202 "m"(volume)
/external/jmonkeyengine/engine/src/core/com/jme3/audio/
H A DLowPassFilter.java44 protected float volume, highFreqVolume; field in class:LowPassFilter
46 public LowPassFilter(float volume, float highFreqVolume) { argument
48 setVolume(volume);
62 throw new IllegalArgumentException("High freq volume must be between 0 and 1");
69 return volume;
72 public void setVolume(float volume) { argument
73 if (volume < 0 || volume > 1)
76 this.volume = volume;
[all...]
H A DListener.java43 private float volume = 1; field in class:Listener
56 volume = source.volume;
64 return volume;
67 public void setVolume(float volume) { argument
68 this.volume = volume;
/external/srec/audio/AudioIn/UNIX/include/
H A Daudioinwrapper.h36 int AudioSetVolume(int stream_type, int volume);
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/
H A DTrackMetaData.java30 private float volume; field in class:TrackMetaData
116 return volume;
119 public void setVolume(float volume) { argument
120 this.volume = volume;
/external/jmonkeyengine/engine/src/niftygui/com/jme3/niftygui/
H A DSoundHandleJme.java46 private float volume = 1; field in class:SoundHandleJme
80 node.setVolume(volume);
98 volume = f;
102 return volume;
/external/sonivox/arm-fm-22k/lib_src/
H A Deas_math.c148 * Transform volume control in 1dB increments to gain multiplier
151 * volume - 100 = 0dB, 99 = -1dB, 0 = -inf
157 EAS_I16 EAS_VolumeToGain (EAS_INT volume) argument
160 if (volume <= 0)
162 if (volume >= 100)
166 return (EAS_I16) EAS_Calculate2toX((((volume - EAS_MAX_VOLUME) * 204099) >> 10) - 1);
H A Deas_imelodydata.h65 EAS_U8 volume; /* current volume */ member in struct:__anon12775
/external/sonivox/arm-hybrid-22k/lib_src/
H A Deas_math.c148 * Transform volume control in 1dB increments to gain multiplier
151 * volume - 100 = 0dB, 99 = -1dB, 0 = -inf
157 EAS_I16 EAS_VolumeToGain (EAS_INT volume) argument
160 if (volume <= 0)
162 if (volume >= 100)
166 return (EAS_I16) EAS_Calculate2toX((((volume - EAS_MAX_VOLUME) * 204099) >> 10) - 1);
H A Deas_imelodydata.h65 EAS_U8 volume; /* current volume */ member in struct:__anon12825
/external/sonivox/arm-wt-22k/lib_src/
H A Deas_math.c148 * Transform volume control in 1dB increments to gain multiplier
151 * volume - 100 = 0dB, 99 = -1dB, 0 = -inf
157 EAS_I16 EAS_VolumeToGain (EAS_INT volume) argument
160 if (volume <= 0)
162 if (volume >= 100)
166 return (EAS_I16) EAS_Calculate2toX((((volume - EAS_MAX_VOLUME) * 204099) >> 10) - 1);
H A Deas_tcdata.h54 EAS_U8 volume; /* volume */ member in struct:__anon12893
H A Deas_imelodydata.h66 EAS_U8 volume; /* current volume */ member in struct:__anon12873
/external/chromium/chrome/browser/extensions/
H A Dextension_tts_api_win.cc27 double volume);
59 double volume) {
83 if (volume >= 0.0) {
84 // The TTS api allows a range of 0 to 100 for speech volume.
85 speech_synthesizer_->SetVolume(static_cast<uint16>(volume * 100));
53 Speak( const std::string& src_utterance, const std::string& language, const std::string& gender, double rate, double pitch, double volume) argument
H A Dextension_tts_api_chromeos.cc28 double volume);
61 double volume) {
99 if (volume >= 0.0) {
100 // The TTS service allows a range of 0 to 5 for speech volume.
103 DoubleToString(volume * 5),
55 Speak( const std::string& utterance, const std::string& locale, const std::string& gender, double rate, double pitch, double volume) argument
H A Dextension_tts_api_linux.cc24 double volume) {
18 Speak( const std::string& utterance, const std::string& language, const std::string& gender, double rate, double pitch, double volume) argument
/external/webkit/Source/WebKit/chromium/public/
H A DWebMediaPlayerClient.h53 virtual float volume() const = 0;
/external/webkit/Source/WebCore/css/
H A DmediaControlsGtk.css89 audio::-webkit-media-controls-volume-slider-container, video::-webkit-media-controls-volume-slider-container {
90 -webkit-appearance: media-volume-slider-container;
96 audio::-webkit-media-controls-volume-slider, video::-webkit-media-controls-volume-slider {
97 -webkit-appearance: media-volume-slider;
H A DfullscreenQuickTime.css63 video:-webkit-full-screen::-webkit-media-controls-volume-slider-container {
67 video:-webkit-full-screen::-webkit-media-controls-volume-slider {
71 video:-webkit-full-screen::-webkit-media-controls-volume-slider-mute-button {
75 video:-webkit-full-screen::-webkit-media-controls-fullscreen-volume-min-button {
85 video:-webkit-full-screen::-webkit-media-controls-fullscreen-volume-slider {
95 video:-webkit-full-screen::-webkit-media-controls-fullscreen-volume-max-button {
H A DmediaControls.css108 audio::-webkit-media-controls-volume-slider, video::-webkit-media-controls-volume-slider {
169 audio::-webkit-media-controls-volume-slider-mute-button, video::-webkit-media-controls-volume-slider-mute-button {
170 -webkit-appearance: media-volume-slider-mute-button;
177 audio::-webkit-media-controls-fullscreen-volume-slider, video::-webkit-media-controls-fullscreen-volume-slider {
181 audio::-webkit-media-controls-fullscreen-volume-min-button, video::-webkit-media-controls-fullscreen-volume-min-button {
185 audio::-webkit-media-controls-fullscreen-volume
[all...]
/external/quake/quake/src/WinQuake/
H A Dsnd_null.cpp26 cvar_t volume = {"volume", "0.7", true}; variable
/external/replicaisland/src/com/replica/replicaisland/
H A DGameObjectCollisionSystem.java29 * overlaps. A bounding volume that encompasses all attack and vulnerability volumes is used for
76 * @param boundingVolume A volume that describes the game object in space. It should encompass
195 * @return The hit type of the first attacking volume that intersects a vulnerability volume,
247 CollisionVolume volume = record.attackVolumes.get(y);
249 position.x + volume.getMinXPosition(sFlip), position.y + volume.getMinYPosition(sFlip),
250 volume.getMaxX() - volume.getMinX(),
251 volume
[all...]
/external/chromium/chrome/browser/speech/
H A Dspeech_input_bubble_controller.h74 // Updates the current captured audio volume displayed on screen.
75 void SetBubbleInputVolume(int caller_id, float volume, float noise_volume);
110 float volume,

Completed in 421 milliseconds

1234567