HomeSort by relevance Sort by last modified time
    Searched refs:volume (Results 1 - 25 of 783) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/qemu/distrib/sdl-1.2.15/src/audio/
SDL_mixer_m68k.c 31 void SDL_MixAudio_m68k_U8(char* dst, char* src, long len, long volume, char* mix8)
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)
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)
130 " muls %3,%%d0\n" /* d0 *= volume (0<=volume<=128) *
    [all...]
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);
SDL_mixer_MMX.c 40 void SDL_MixAudio_MMX_S16(char* dst,char* src,unsigned int size,int volume)
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)
146 " movl %3,%%eax\n" /* eax = volume */
202 "m"(volume)
  /bootable/recovery/mtdutils/
mounts.h 33 int unmount_mounted_volume(const MountedVolume *volume);
35 int remount_read_only(const MountedVolume* volume);
mounts.c 46 free_volume_internals(const MountedVolume *volume, int zero)
48 free((char *)volume->device);
49 free((char *)volume->mount_point);
50 free((char *)volume->filesystem);
51 free((char *)volume->flags);
53 memset((void *)volume, 0, sizeof(*volume));
78 /* Free the old volume strings.
202 unmount_mounted_volume(const MountedVolume *volume)
205 * to unmount a volume they already unmounted using thi
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/audio/
LowPassFilter.java 44 protected float volume, highFreqVolume; field in class:LowPassFilter
46 public LowPassFilter(float volume, float highFreqVolume) {
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) {
73 if (volume < 0 || volume > 1)
74 throw new IllegalArgumentException("Volume must be between 0 and 1");
76 this.volume = volume
    [all...]
Listener.java 43 private float volume = 1; field in class:Listener
56 volume = source.volume;
64 return volume;
67 public void setVolume(float volume) {
68 this.volume = volume;
70 renderer.updateListenerParam(this, ListenerParam.Volume);
  /frameworks/base/media/java/android/mtp/
MtpStorage.java 38 public MtpStorage(StorageVolume volume, Context context) {
39 mStorageId = volume.getStorageId();
40 mPath = volume.getPath();
41 mDescription = context.getResources().getString(volume.getDescriptionId());
42 mReserveSpace = volume.getMtpReserveSpace() * 1024L * 1024L;
43 mRemovable = volume.isRemovable();
44 mMaxFileSize = volume.getMaxFileSize();
  /external/chromium_org/third_party/libjingle/source/talk/sound/
soundinputstreaminterface.h 48 // Retrieves the current input volume for this stream. Nominal range is
49 // defined by SoundSystemInterface::k(Max|Min)Volume, but values exceeding the
51 // volume currently in use by the OS, not a cached value from a previous
52 // (Get|Set)Volume() call.
53 virtual bool GetVolume(int *volume) = 0;
55 // Changes the input volume for this stream. Nominal range is defined by
56 // SoundSystemInterface::k(Max|Min)Volume. The effect of exceeding kMaxVolume
58 virtual bool SetVolume(int volume) = 0;
soundoutputstreaminterface.h 53 // Retrieves the current output volume for this stream. Nominal range is
54 // defined by SoundSystemInterface::k(Max|Min)Volume, but values exceeding the
56 // volume currently in use by the OS, not a cached value from a previous
57 // (Get|Set)Volume() call.
58 virtual bool GetVolume(int *volume) = 0;
60 // Changes the output volume for this stream. Nominal range is defined by
61 // SoundSystemInterface::k(Max|Min)Volume. The effect of exceeding kMaxVolume
63 virtual bool SetVolume(int volume) = 0;
nullsoundsystem.cc 65 virtual bool GetVolume(int *volume) {
66 *volume = SoundSystemInterface::kMinVolume;
70 virtual bool SetVolume(int volume) {
99 virtual bool GetVolume(int *volume) {
100 *volume = SoundSystemInterface::kMinVolume;
104 virtual bool SetVolume(int volume) {
  /bootable/recovery/
roots.h 26 // Load and parse volume data from /etc/recovery.fstab.
29 // Return the Volume* record for this path (or NULL).
30 Volume* volume_for_path(const char* path);
32 // Make sure that the volume 'path' is on is mounted. Returns 0 on
33 // success (volume is mounted).
36 // Make sure that the volume 'path' is on is mounted. Returns 0 on
37 // success (volume is unmounted);
40 // Reformat the given volume (must be the mount point only, eg
41 // "/cache"), no paths permitted. Attempts to unmount the volume if
43 int format_volume(const char* volume);
    [all...]
  /external/chromium_org/chrome/common/
tts_utterance_request.cc 9 volume(1.0),
  /external/chromium_org/media/audio/
audio_io.h 97 // Sets the relative volume, with range [0.0, 1.0] inclusive.
98 virtual void SetVolume(double volume) = 0;
100 // Gets the relative volume, with range [0.0, 1.0] inclusive.
101 virtual void GetVolume(double* volume) = 0;
118 double volume) = 0;
153 // Returns the maximum microphone analog volume or 0.0 if device does not
154 // have volume control.
157 // Sets the microphone analog volume, with range [0, max_volume] inclusive.
158 virtual void SetVolume(double volume) = 0;
160 // Returns the microphone analog volume, with range [0, max_volume] inclusive
    [all...]
audio_output_proxy.cc 63 void AudioOutputProxy::SetVolume(double volume) {
65 volume_ = volume;
66 dispatcher_->StreamVolumeSet(this, volume);
69 void AudioOutputProxy::GetVolume(double* volume) {
71 *volume = volume_;
audio_input_ipc.h 43 // Called when the input stream volume has changed.
44 virtual void OnVolume(double volume) = 0;
78 // Sets the volume of the audio stream.
79 virtual void SetVolume(double volume) = 0;
audio_output_proxy.h 38 virtual void SetVolume(double volume) OVERRIDE;
39 virtual void GetVolume(double* volume) OVERRIDE;
57 // Need to save volume here, so that we can restore it in case the stream
fake_audio_output_stream.h 29 virtual void SetVolume(double volume) OVERRIDE;
30 virtual void GetVolume(double* volume) OVERRIDE;
  /external/srec/audio/AudioIn/UNIX/include/
audioinwrapper.h 36 int AudioSetVolume(int stream_type, int volume);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
pt2258.h 2 * ALSA Driver for the PT2258 volume controller.
30 unsigned char volume[6]; member in struct:snd_pt2258
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/
pt2258.h 2 * ALSA Driver for the PT2258 volume controller.
30 unsigned char volume[6]; member in struct:snd_pt2258
  /external/chromium_org/media/base/
audio_capturer_source.h 29 double volume,
56 // Sets the capture volume, with range [0.0, 1.0] inclusive.
57 virtual void SetVolume(double volume) = 0;
fake_audio_render_callback.h 47 // Set volume information used by ProvideAudioTransformInput().
48 void set_volume(double volume) { volume_ = volume; }
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/
TrackMetaData.java 30 private float volume; field in class:TrackMetaData
116 return volume;
119 public void setVolume(float volume) {
120 this.volume = volume;
  /frameworks/base/media/java/android/media/
IRemoteDisplayProvider.aidl 29 void setVolume(String id, int volume);

Completed in 309 milliseconds

1 2 3 4 5 6 7 8 91011>>