/external/qemu/distrib/sdl-1.2.15/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...] |
/hardware/qcom/audio/legacy/alsa_sound/ |
ALSAMixer.cpp | 276 long vol = minVol + volume * (maxVol - minVol); local 277 if (vol > maxVol) vol = maxVol; 278 if (vol < minVol) vol = minVol; 280 info->volume = vol; 281 snd_mixer_selem_set_playback_volume_all (info->elem, vol); 295 long vol = minVol + gain * (maxVol - minVol); local 296 if (vol > maxVol) vol = maxVol 317 long vol = minVol + left * (maxVol - minVol); local 340 long vol = minVol + gain * (maxVol - minVol); local [all...] |
AudioStreamOutALSA.cpp | 73 int vol; local 85 vol = lrint((volume * 0x2000)+0.5); 90 ALOGV("Setting LPA volume to %d (available range is 0 to 100)\n", vol); 91 mHandle->module->setLpaVolume(vol); 97 ALOGV("Setting Compressed volume to %d (available range is 0 to 100)\n", vol); 98 mHandle->module->setCompressedVolume(vol);
|
alsa_default.cpp | 80 static void s_set_volte_volume(int vol); [all...] |
AudioHardwareALSA.cpp | 270 int vol = lrint(v * 100.0); local 275 vol = 100 - vol; 279 mALSADevice->setVoipVolume(vol); 282 mALSADevice->setVoiceVolume(vol); 284 mALSADevice->setVoLTEVolume(vol); 296 int vol; local 305 vol = lrint((value * 0x2000) + 0.5); 308 ALOGV("Setting FM volume to %d (available range is 0 to 0x2000)\n", vol); 310 mALSADevice->setFmVolume(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 | 122 struct mixeng_volume vol; member in struct:SWVoiceOut 138 struct mixeng_volume vol; member in struct:SWVoiceIn
|
audio.c | 803 int samples, struct mixeng_volume *vol) 808 (void) vol; 1137 sw->conv (sw->buf, buf, swlim, &sw->vol); [all...] |
/packages/apps/Settings/src/com/android/settings/ |
RingerVolumePreference.java | 248 for (SeekBarVolumizer vol : mSeekBarVolumizer) { 249 if (vol != null) vol.revertVolume(); 259 for (SeekBarVolumizer vol : mSeekBarVolumizer) { 260 if (vol != null) vol.stopSample(); 280 for (SeekBarVolumizer vol : mSeekBarVolumizer) { 281 if (vol != null && vol != volumizer) vol.stopSample() 314 SeekBarVolumizer vol = mSeekBarVolumizer[i]; local 334 SeekBarVolumizer vol = mSeekBarVolumizer[i]; local [all...] |
/frameworks/av/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...] |
/external/chromium_org/chrome/browser/resources/chromeos/ |
keyboard_overlay_data.js | 372 'label': 'vol. down' 375 'label': 'vol. up' 688 'label': 'vol. down' 691 'label': 'vol. up' 965 'label': 'vol. down' 968 'label': 'vol. up' 1273 'label': 'vol. down' 1276 'label': 'vol. up' 1553 'label': 'vol. down' 1556 'label': 'vol. up [all...] |
/frameworks/av/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/eigen/unsupported/Eigen/src/BVH/ |
BVAlgorithms.h | 50 bool intersectVolume(const Volume1 &vol) { return intersector.intersectVolumeObject(vol, stored); } 62 bool intersectVolume(const Volume2 &vol) { return intersector.intersectObjectVolume(stored, vol); } 187 Scalar minimumOnVolume(const Volume1 &vol) { return minimizer.minimumOnVolumeObject(vol, stored); } 200 Scalar minimumOnVolume(const Volume2 &vol) { return minimizer.minimumOnObjectVolume(stored, vol); }
|
/external/chromium_org/chrome/browser/extensions/api/music_manager_private/ |
device_id_mac.cc | 47 struct statfs* vol = &mounted_volumes[i]; local 48 if (std::string(vol->f_mntonname) == kRootDirectory) { 49 return std::string(vol->f_mntfromname);
|
/frameworks/base/core/java/android/speech/tts/ |
BlockingAudioTrack.java | 325 final float vol = clip(volume, 0.0f, 1.0f); local 328 float volLeft = vol; 329 float volRight = vol;
|
/external/jmonkeyengine/engine/src/core/com/jme3/shadow/ |
ShadowUtil.java | 176 BoundingVolume vol = list.get(i).getWorldBound();
local 177 BoundingVolume newVol = vol.transform(transform);
196 BoundingVolume vol = list.get(i).getWorldBound();
local 197 store = vol.clone().transform(mat, null);
214 BoundingVolume vol = bv.get(i);
local 215 bbox.mergeLocal(vol);
|
/external/qemu/distrib/sdl-1.2.15/src/audio/symbian/ |
streamplayer.cpp | 177 const TInt vol = static_cast<TReal>(newvolume); local 178 iStream->SetVolume(vol);
|
/packages/apps/DeskClock/src/com/android/deskclock/alarms/ |
AlarmActivity.java | 159 final String vol = local 163 mVolumeBehavior = Integer.parseInt(vol);
|