/external/jmonkeyengine/engine/src/core/com/jme3/audio/ |
D | LowPassFilter.java | 44 protected float volume, highFreqVolume; field in LowPassFilter 46 public LowPassFilter(float volume, float highFreqVolume) { in LowPassFilter() argument 48 setVolume(volume); in LowPassFilter() 69 return volume; in getVolume() 72 public void setVolume(float volume) { in setVolume() argument 73 if (volume < 0 || volume > 1) in setVolume() 76 this.volume = volume; in setVolume() 83 oc.write(volume, "volume", 0); in write() 91 volume = ic.readFloat("volume", 0); in read()
|
D | Listener.java | 43 private float volume = 1; field in Listener 56 volume = source.volume; in Listener() 64 return volume; in getVolume() 67 public void setVolume(float volume) { in setVolume() argument 68 this.volume = volume; in setVolume()
|
D | AudioNode.java | 67 protected float volume = 1; field in AudioNode 411 return volume; in getVolume() 422 public void setVolume(float volume) { in setVolume() argument 423 if (volume < 0f) { in setVolume() 427 this.volume = volume; in setVolume() 736 oc.write(volume, "volume", 1); in write() 770 volume = ic.readFloat("volume", 1); in read() 802 if (volume != 1f) { in toString() 803 ret += ", vol=" + volume; in toString()
|
/external/qemu/distrib/sdl-1.2.15/src/audio/ |
D | SDL_mixer.c | 93 void SDL_MixAudio (Uint8 *dst, const Uint8 *src, Uint32 len, int volume) in SDL_MixAudio() argument 97 if ( volume == 0 ) { in SDL_MixAudio() 115 SDL_MixAudio_m68k_U8((char*)dst,(char*)src,(unsigned long)len,(long)volume,(char *)mix8); in SDL_MixAudio() 121 ADJUST_VOLUME_U8(src_sample, volume); in SDL_MixAudio() 135 SDL_MixAudio_MMX_S8((char*)dst,(char*)src,(unsigned int)len,(int)volume); in SDL_MixAudio() 141 SDL_MixAudio_MMX_S8_VC((char*)dst,(char*)src,(unsigned int)len,(int)volume); in SDL_MixAudio() 148 SDL_MixAudio_m68k_S8((char*)dst,(char*)src,(unsigned long)len,(long)volume); in SDL_MixAudio() 161 ADJUST_VOLUME(src_sample, volume); in SDL_MixAudio() 184 SDL_MixAudio_MMX_S16((char*)dst,(char*)src,(unsigned int)len,(int)volume); in SDL_MixAudio() 190 SDL_MixAudio_MMX_S16_VC((char*)dst,(char*)src,(unsigned int)len,(int)volume); in SDL_MixAudio() [all …]
|
D | SDL_mixer_m68k.c | 31 void SDL_MixAudio_m68k_U8(char* dst, char* src, long len, long volume, char* mix8) in SDL_MixAudio_m68k_U8() argument 63 "a"(dst), "a"(src), "d"(len), "d"(volume), "a"(mix8) in SDL_MixAudio_m68k_U8() 69 void SDL_MixAudio_m68k_S8(char* dst, char* src, long len, long volume) in SDL_MixAudio_m68k_S8() argument 110 "a"(dst), "a"(src), "d"(len), "d"(volume) in SDL_MixAudio_m68k_S8() 116 void SDL_MixAudio_m68k_S16MSB(short* dst, short* src, long len, long volume) in SDL_MixAudio_m68k_S16MSB() argument 156 "a"(dst), "a"(src), "d"(len), "d"(volume) in SDL_MixAudio_m68k_S16MSB() 162 void SDL_MixAudio_m68k_S16LSB(short* dst, short* src, long len, long volume) in SDL_MixAudio_m68k_S16LSB() argument 205 "a"(dst), "a"(src), "d"(len), "d"(volume) in SDL_MixAudio_m68k_S16LSB()
|
D | SDL_mixer_m68k.h | 31 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);
|
D | SDL_mixer_MMX.c | 40 void SDL_MixAudio_MMX_S16(char* dst,char* src,unsigned int size,int volume) in SDL_MixAudio_MMX_S16() argument 131 "m"(volume) in SDL_MixAudio_MMX_S16() 142 void SDL_MixAudio_MMX_S8(char* dst,char* src,unsigned int size,int volume) in SDL_MixAudio_MMX_S8() argument 202 "m"(volume) in SDL_MixAudio_MMX_S8()
|
/external/replicaisland/src/com/replica/replicaisland/ |
D | GameObjectCollisionSystem.java | 247 CollisionVolume volume = record.attackVolumes.get(y); in drawDebugVolumes() local 249 position.x + volume.getMinXPosition(sFlip), position.y + volume.getMinYPosition(sFlip), in drawDebugVolumes() 250 volume.getMaxX() - volume.getMinX(), in drawDebugVolumes() 251 volume.getMaxY() - volume.getMinY(), in drawDebugVolumes() 252 …volume.getClass() == AABoxCollisionVolume.class ? DebugSystem.SHAPE_BOX : DebugSystem.SHAPE_CIRCLE, in drawDebugVolumes() 260 CollisionVolume volume = record.vulnerabilityVolumes.get(y); in drawDebugVolumes() local 262 position.x + volume.getMinXPosition(sFlip), position.y + volume.getMinYPosition(sFlip), in drawDebugVolumes() 263 volume.getMaxX() - volume.getMinX(), in drawDebugVolumes() 264 volume.getMaxY() - volume.getMinY(), in drawDebugVolumes() 265 …volume.getClass() == AABoxCollisionVolume.class ? DebugSystem.SHAPE_BOX : DebugSystem.SHAPE_CIRCLE, in drawDebugVolumes()
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/ |
D | TrackMetaData.java | 30 private float volume; field in TrackMetaData 116 return volume; in getVolume() 119 public void setVolume(float volume) { in setVolume() argument 120 this.volume = volume; in setVolume()
|
/external/sonivox/arm-hybrid-22k/lib_src/ |
D | eas_math.c | 157 EAS_I16 EAS_VolumeToGain (EAS_INT volume) in EAS_VolumeToGain() argument 160 if (volume <= 0) in EAS_VolumeToGain() 162 if (volume >= 100) in EAS_VolumeToGain() 166 return (EAS_I16) EAS_Calculate2toX((((volume - EAS_MAX_VOLUME) * 204099) >> 10) - 1); in EAS_VolumeToGain()
|
/external/sonivox/arm-fm-22k/lib_src/ |
D | eas_math.c | 157 EAS_I16 EAS_VolumeToGain (EAS_INT volume) in EAS_VolumeToGain() argument 160 if (volume <= 0) in EAS_VolumeToGain() 162 if (volume >= 100) in EAS_VolumeToGain() 166 return (EAS_I16) EAS_Calculate2toX((((volume - EAS_MAX_VOLUME) * 204099) >> 10) - 1); in EAS_VolumeToGain()
|
/external/sonivox/arm-wt-22k/lib_src/ |
D | eas_math.c | 157 EAS_I16 EAS_VolumeToGain (EAS_INT volume) in EAS_VolumeToGain() argument 160 if (volume <= 0) in EAS_VolumeToGain() 162 if (volume >= 100) in EAS_VolumeToGain() 166 return (EAS_I16) EAS_Calculate2toX((((volume - EAS_MAX_VOLUME) * 204099) >> 10) - 1); in EAS_VolumeToGain()
|
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/ |
D | TrackHeaderBox.java | 45 private float volume; field in TrackHeaderBox 81 return volume; in getVolume() 127 volume = IsoTypeReader.readFixedPoint88(content); in _parseDetails() 156 IsoTypeWriter.writeFixedPont88(byteBuffer, volume); in getContent() 217 public void setVolume(float volume) { in setVolume() argument 218 this.volume = volume; in setVolume()
|
D | MovieHeaderBox.java | 41 private float volume = 1.0f; field in MovieHeaderBox 80 return volume; in getVolume() 117 volume = IsoTypeReader.readFixedPoint88(content); in _parseDetails() 177 IsoTypeWriter.writeFixedPont88(byteBuffer, volume); in getContent() 219 public void setVolume(float volume) { in setVolume() argument 220 this.volume = volume; in setVolume()
|
/external/webkit/Source/WebCore/css/ |
D | mediaControls.css | 108 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-slide… 170 -webkit-appearance: media-volume-slider-mute-button; 177 audio::-webkit-media-controls-fullscreen-volume-slider, video::-webkit-media-controls-fullscreen-vo… 181 audio::-webkit-media-controls-fullscreen-volume-min-button, video::-webkit-media-controls-fullscree… 185 audio::-webkit-media-controls-fullscreen-volume-max-button, video::-webkit-media-controls-fullscree…
|
D | mediaControlsGtk.css | 89 audio::-webkit-media-controls-volume-slider-container, video::-webkit-media-controls-volume-slider-… 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;
|
D | mediaControlsQt.css | 163 audio::-webkit-media-controls-volume-slider-container { 164 -webkit-appearance: media-volume-slider-container; 170 video::-webkit-media-controls-volume-slider-container { 171 -webkit-appearance: media-volume-slider-container; 177 audio::-webkit-media-controls-volume-slider { 178 -webkit-appearance: media-volume-slider; 188 video::-webkit-media-controls-volume-slider { 189 -webkit-appearance: media-volume-slider; 256 ::-webkit-media-controls-volume-slider,
|
/external/jmonkeyengine/engine/src/niftygui/com/jme3/niftygui/ |
D | SoundHandleJme.java | 46 private float volume = 1; field in SoundHandleJme 80 node.setVolume(volume); in play() 98 volume = f; in setVolume() 102 return volume; in getVolume()
|
/external/chromium/chrome/browser/extensions/ |
D | extension_tts_api_win.cc | 27 double volume); 59 double volume) { in Speak() argument 83 if (volume >= 0.0) { in Speak() 85 speech_synthesizer_->SetVolume(static_cast<uint16>(volume * 100)); in Speak()
|
D | extension_tts_api_chromeos.cc | 28 double volume); 61 double volume) { in Speak() argument 99 if (volume >= 0.0) { in Speak() 103 DoubleToString(volume * 5), in Speak()
|
D | extension_tts_api_mac.mm | 25 double volume); 56 double volume) { 74 if (volume >= 0.0) { 76 setObject: [NSNumber numberWithFloat:volume]
|
/external/llvm/docs/ |
D | mailing_lists.rst | 9 This is a low volume list that provides important announcements regarding 16 for or using the LLVM tools. It is relatively low volume. 21 submit patches to be included in LLVM. It is higher volume than the LLVMdev 28 stay on the bleeding edge of LLVM development. This list is very high volume. 35 making it a high volume list.
|
/external/webkit/Source/WebKit/gtk/WebCoreSupport/ |
D | FullscreenVideoController.cpp | 239 controller->setVolume(controller->volume() + VOLUME_UP_OFFSET); in onFullscreenGtkKeyPressEvent() 243 controller->setVolume(controller->volume() - VOLUME_DOWN_OFFSET); in onFullscreenGtkKeyPressEvent() 402 float FullscreenVideoController::volume() const in volume() function in FullscreenVideoController 404 return m_mediaElement ? m_mediaElement->volume() : 0; in volume() 412 void FullscreenVideoController::setVolume(float volume) in setVolume() argument 414 if (volume < 0.0 || volume > 1.0) in setVolume() 419 m_mediaElement->setVolume(volume, ec); in setVolume() 426 gtk_scale_button_set_value(GTK_SCALE_BUTTON(m_volumeButton), volume()); in volumeChanged() 433 gtk_scale_button_set_value(GTK_SCALE_BUTTON(m_volumeButton), muted() ? 0 : volume()); in muteChanged() 564 gtk_scale_button_set_value(GTK_SCALE_BUTTON(m_volumeButton), volume()); in createHud()
|
/external/eigen/unsupported/Eigen/ |
D | BVH | 23 * \brief This module provides generic bounding volume hierarchy algorithms 31 …* A bounding volume hierarchy (BVH) can accelerate many geometric queries. This module provides a… 34 …s intersection by using the fact that if a query object does not intersect a volume, then it cannot 35 …* intersect any object contained in that volume. Similarly, a BVH accelerates minimization becaus… 36 * over a volume is no greater than the minimum of a function over any object contained in it. 58 typedef Volume //the type of bounding volume 64 …const Volume &getVolume(Index index) const //returns the bounding volume of the node at given index 74 bool intersectVolume(const Volume &volume) //returns true if the query intersects the volume 77 …t BVIntersect provides is that intersectObject will be called on every object whose bounding volume
|
/external/chromium/chrome/browser/speech/ |
D | speech_input_bubble_controller.cc | 74 float volume, in SetBubbleInputVolume() argument 77 volume, noise_volume); in SetBubbleInputVolume() 140 int caller_id, RequestType type, const string16& text, float volume, in ProcessRequestInUiThread() argument 145 caller_id, type, text, volume, noise_volume)); in ProcessRequestInUiThread() 177 bubble->SetInputVolume(volume, noise_volume); in ProcessRequestInUiThread()
|