Searched defs:frequency (Results 1 - 7 of 7) sorted by path

/frameworks/av/media/libmedia/
H A DToneGenerator.cpp1344 unsigned int frequency = mpToneDesc->segments[segmentIdx].waveFreq[freqIdx]; local
1345 while (frequency) {
1346 // Instantiate a wave generator if ot already done for this frequency
1347 if (mWaveGens.indexOfKey(frequency) == NAME_NOT_FOUND) {
1350 frequency,
1352 mWaveGens.add(frequency, lpWaveGen);
1354 frequency = mpNewToneDesc->segments[segmentIdx].waveFreq[++freqIdx];
1466 // frequency: Frequency of the sine wave to generate in Hz
1474 unsigned short frequency, float volume) {
1476 double F_div_Fs; // frequency / samplingRat
1473 WaveGenerator(unsigned short samplingRate, unsigned short frequency, float volume) argument
[all...]
/frameworks/base/core/java/android/provider/
H A DUserDictionary.java30 * frequency information and locale information.
75 * The frequency column. A value between 1 and 255. Higher values imply higher frequency.
78 public static final String FREQUENCY = "frequency";
112 * Sort by descending order of frequency.
116 /** Adds a word to the dictionary, with the given frequency and the specified
130 int frequency, int localeType) {
144 addWord(context, word, frequency, null, locale);
147 /** Adds a word to the dictionary, with the given frequency and the specified
159 int frequency, Strin
129 addWord(Context context, String word, int frequency, int localeType) argument
158 addWord(Context context, String word, int frequency, String shortcut, Locale locale) argument
[all...]
/frameworks/base/media/java/android/media/audiofx/
H A DEqualizer.java33 * An Equalizer is used to alter the frequency response of a particular music source or of the main
37 * precise control of the gain in each frequency band controlled by the equalizer.
68 * Band center frequency. Parameter ID for OnParameterChangeListener
72 * Band frequency range. Parameter ID for
77 * Band for a given frequency. Parameter ID for OnParameterChangeListener
176 * Gets the number of frequency bands supported by the Equalizer engine.
213 * @param band frequency band that will have the new gain. The numbering of the bands starts
235 * @param band frequency band whose gain is requested. The numbering of the bands starts
256 * Gets the center frequency of the given band.
257 * @param band frequency ban
305 getBand(int frequency) argument
[all...]
/frameworks/base/services/common_time/
H A Dclock_recovery.cpp107 void ClockRecoveryLoop::reset(bool position, bool frequency) { argument
109 reset_l(position, frequency);
306 void ClockRecoveryLoop::reset_l(bool position, bool frequency) {
314 if (frequency) {
/frameworks/base/wifi/java/android/net/wifi/
H A DScanResult.java48 * The frequency in MHz of the channel over which the client is communicating
51 public int frequency; field in class:ScanResult
60 public ScanResult(WifiSsid wifiSsid, String BSSID, String caps, int level, int frequency, argument
67 this.frequency = frequency;
80 frequency = source.frequency;
98 append(", frequency: ").
99 append(frequency).
122 dest.writeInt(frequency);
[all...]
/frameworks/wilhelm/src/itf/
H A DIEqualizer.c289 static SLresult IEqualizer_GetBand(SLEqualizerItf self, SLmilliHertz frequency, SLuint16 *pBand) argument
298 // search for band whose center frequency has the closest ratio to 1.0
303 float floatFreq = (float) frequency;
307 if (!(band->mMin <= frequency && frequency <= band->mMax))
311 float ratio = frequency <= band->mCenter ?
327 android_eq_getParam(thiz->mEqEffect, EQ_PARAM_GET_BAND, frequency, &band);
H A DIVibra.c55 static SLresult IVibra_SetFrequency(SLVibraItf self, SLmilliHertz frequency) argument
62 } else if (!(d->minFrequency <= frequency && frequency <= d->maxFrequency)) {
67 thiz->mFrequency = frequency;
85 SLmilliHertz frequency = thiz->mFrequency; local
87 *pFrequency = frequency;

Completed in 181 milliseconds