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

1 2 3

  /external/qemu/distrib/sdl-1.2.12/src/audio/dc/
aica.h 33 void aica_play(int ch,int mode,unsigned long smpptr,int looptst,int loopend,int freq,int vol,int pan,int loopflag);
35 void aica_vol(int ch,int vol);
aica.c 146 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) {
185 /* Vol starts at zero so we can ramp */
186 vol = AICA_VOL(vol);
187 CHNREG32(ch, 40) = 0x24 | (vol<<8);
189 /* Vol starts at zero so we can ramp */
218 for (i=0xff; i>=vol; i--) {
238 void aica_vol(int ch,int vol) {
239 // g2_write_8(CHNREGADDR(ch, 41),AICA_VOL(vol));
    [all...]
  /external/qemu/audio/
mixeng_template.h 36 #define VOL(a, b) ((a) * (b))
38 #define VOL(a, b) ((a) * (b)) >> 32
41 #define VOL(a, b) a
112 (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)
    [all...]
mixeng.h 37 int samples, struct mixeng_volume *vol);
audio_int.h 120 struct mixeng_volume vol; member in struct:SWVoiceOut
136 struct mixeng_volume vol; member in struct:SWVoiceIn
audio.c 804 int samples, struct mixeng_volume *vol)
809 (void) vol;
1127 sw->conv (sw->buf, buf, swlim, &sw->vol);
    [all...]
  /packages/apps/Settings/src/com/android/settings/
RingerVolumePreference.java 93 for (SeekBarVolumizer vol : mSeekBarVolumizer) {
94 if (vol != null) vol.revertVolume();
125 for (SeekBarVolumizer vol : mSeekBarVolumizer) {
126 if (vol != null && vol != volumizer) vol.stopSample();
163 SeekBarVolumizer vol = mSeekBarVolumizer[i]; local
164 if (vol != null) {
165 vol.onSaveInstanceState(volumeStore[i])
183 SeekBarVolumizer vol = mSeekBarVolumizer[i]; local
    [all...]
  /external/bluetooth/bluez/test/
hsmicro 20 $HSTEST record - $BDADDR $CHANNEL | $SOX -t raw -r 8000 -c 1 -s -w - -t ossdsp -r 44100 -c 2 -s -w /dev/dsp polyphase vol 5.0 2> /dev/null
  /external/skia/src/views/
SkOSSound.cpp 129 MMRESULT StartWave(const char path[], SkOSSoundWave* wave, U32 vol);
201 void SkOSSound::SetVolume(U8CPU vol)
203 if ((int)vol < 0)
204 vol = 0;
205 else if (vol > 255)
206 vol = 255;
209 gVolume = SkToU8(vol);
213 unsigned long v32 = (vol << 8) | vol; // fill it out to 16bits
235 MMRESULT StartWave(const char path[], SkOSSoundWave* wave, U32 vol)
    [all...]
  /external/quake/quake/src/WinQuake/
snd_null.cpp 53 void S_StaticSound (sfx_t *sfx, vec3_t origin, float vol, float attenuation)
snd_dma.cpp 462 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)
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...]
sound.h 102 void S_StaticSound (sfx_t *sfx, vec3_t origin, float vol, float attenuation);
  /external/quake/quake/src/QW/client/
snd_dma.c 458 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)
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...]
sound.h 93 void S_StaticSound (sfx_t *sfx, vec3_t origin, float vol, float attenuation);
  /frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/
pvdec_api.cpp 50 extern Vol IMEM_VOL[2];
52 extern Vol IMEM_vol[2][1];
96 video->vol = (Vol **) IMEM_VOL;
98 video->vol = (Vol **) oscl_malloc(nLayers * sizeof(Vol *));
100 if (video->vol == NULL) status = PV_FALSE;
101 video->memoryUsage += nLayers * sizeof(Vol *);
165 video->vol[idx] = IMEM_vol[idx]
    [all...]
mp4lib_int.h 84 int volID; /* VOL identifier (for tracking) */
85 uint timeIncrementResolution;/* VOL time increment */
92 int complexity_estDisable; /* VOL disable complexity estimation */
93 int complexity_estMethod; /* VOL complexity estimation method */
97 int errorResDisable; /* VOL disable error resilence mode */
99 int useReverseVLC; /* VOL reversible VLCs */
100 int dataPartitioning; /* VOL data partitioning */
116 int scalability; /* VOL scalability (flag) */
119 int refVolID; /* VOL id of reference VOL */
203 Vol **vol; \/* Data stored for each VOL *\/ member in struct:tagVideoDecData
    [all...]
packet_util.cpp 31 Vol *currVol = video->vol[video->currLayer];
vop.cpp 74 * -- DecodeVolHeader -- Decode the header of a VOL
83 Vol *currVol;
96 currVol = video->vol[layer];
237 * Read the VOL header entries from the bitstream
389 /* we should put it in Vol structure. 04/12/2000. */
641 if (currVol->refVolID != video->vol[0]->volID) return PV_FAIL;
805 Vol *currVol = video->vol[video->currLayer];
    [all...]
  /device/htc/common/updater/
recovery_updater.c 67 MountedVolume* vol = find_mounted_volume_by_mount_point("/cache"); local
68 int result = unmount_mounted_volume(vol);
73 result = remount_read_only(vol);
  /frameworks/base/media/libstagefright/codecs/m4v_h263/enc/src/
mp4enc_api.cpp 194 Vol *pVol;
844 video->vol = (Vol **)M4VENC_MALLOC(nLayers * sizeof(Vol *)); /* Memory for VOL pointers */
847 if (video->vol == NULL) goto CLEAN_UP;
854 video->vol[idx] = (Vol *)M4VENC_MALLOC(sizeof(Vol));
855 if (video->vol[idx] == NULL) goto CLEAN_UP
2593 Vol **vol = video->vol; local
2833 Vol **vol = video->vol; local
    [all...]
vop.cpp 25 PV_STATUS EncodeVOPHeader(BitstreamEncVideo *stream, Vol *currVol, Vop *currVop);
44 Vol *currVol = video->vol[currLayer];
127 Vol *currVol = video->vol[video->currLayer];
196 Vol *currVol = video->vol[currLayer];
312 Vol *currVol = video->vol[0];
353 PV_STATUS EncodeVOPHeader(BitstreamEncVideo *stream, Vol *currVol, Vop *currVop
    [all...]
findhalfpel.cpp 81 Int height = video->vol[video->currLayer]->height;
203 height = video->vol[video->currLayer]->height;
  /external/webkit/JavaScriptCore/tests/mozilla/js1_5/Regress/
regress-216320.js 55 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; }
  /packages/apps/DeskClock/src/com/android/deskclock/
AlarmAlertFullScreen.java 84 final String vol = local
88 mVolumeBehavior = Integer.parseInt(vol);
  /bootable/recovery/updater/
install.c 134 const MountedVolume* vol = find_mounted_volume_by_mount_point(mount_point); local
135 if (vol == NULL) {
162 const MountedVolume* vol = find_mounted_volume_by_mount_point(mount_point); local
163 if (vol == NULL) {
167 unmount_mounted_volume(vol);

Completed in 1324 milliseconds

1 2 3