Searched defs:freq (Results 1 - 15 of 15) sorted by relevance

/frameworks/av/media/libstagefright/codecs/mp3dec/src/
H A Dpvmp3_reorder.cpp131 int32 freq; local
153 for (freq = 0; freq < 3*sfb_lines; freq += 3)
159 Scratch_mem[freq ] = tmp1;
160 Scratch_mem[freq+1] = tmp2;
161 Scratch_mem[freq+2] = tmp3;
174 for (freq = 0; freq < 3*sfb_lines; freq
[all...]
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/
H A DEnergyProbe.java56 public int capture(int freq) throws InterruptedException { argument
60 if (freq > mMaxFrequency) {
69 if (freq == mMaxFrequency) {
72 int bin = 2 * (freq * CAPTURE_SIZE / mMaxFrequency / 2);
/frameworks/av/media/libeffects/testlibs/
H A DAudioEqualizer.h39 uint32_t freq; member in struct:android::AudioEqualizer::BandConfig
H A DAudioEqualizer.cpp210 setFrequency(band, bandCfg.freq);
266 uint32_t freq = mpPeakingFilters[i].getFrequency(); local
267 if (freq >= targetFreq) {
268 high = freq;
272 low = freq;
/frameworks/native/services/sensorservice/
H A DSensorFusion.cpp68 const float freq = 1 / dT; local
69 if (freq >= 100 && freq<1000) { // filter values obviously wrong
71 mEstimatedGyroRate = freq + (mEstimatedGyroRate - freq)*alpha;
/frameworks/base/libs/common_time/
H A Dcommon_clock_service.cpp60 status_t CommonClockService::getCommonFreq(uint64_t* freq) { argument
61 *freq = mTimeServer.getCommonClock().getCommonFreq();
70 status_t CommonClockService::getLocalFreq(uint64_t* freq) { argument
71 *freq = mTimeServer.getLocalClock().getLocalFreq();
/frameworks/base/media/tests/audiotests/
H A Dshared_mem_test.cpp81 long freq = 1237; local
84 f0 = pow(2., 32.) * freq / (float)rate;
/frameworks/av/media/common_time/
H A DICommonClock.cpp115 virtual status_t getCommonFreq(uint64_t* freq) { argument
122 *freq = reply.readInt64();
141 virtual status_t getLocalFreq(uint64_t* freq) { argument
148 *freq = reply.readInt64();
292 uint64_t freq; local
293 status_t status = getCommonFreq(&freq);
296 reply->writeInt64(freq);
314 uint64_t freq; local
315 status_t status = getLocalFreq(&freq);
318 reply->writeInt64(freq);
[all...]
/frameworks/av/services/audioflinger/tests/
H A Dtest_utils.h188 size_t channels, double sampleRate, double freq)
194 double y = sin(2. * M_PI * freq * t);
258 double freq, double sampleRate, double time)
261 createSine<T>(mAddr, mNumFrames, mChannels, mSampleRate, freq);
187 createSine(void *vbuffer, size_t frames, size_t channels, double sampleRate, double freq) argument
257 setSine(size_t channels, double freq, double sampleRate, double time) argument
/frameworks/base/media/tests/EffectsTest/src/com/android/effectstest/
H A DEqualizerTest.java230 private void displayFreq(int viewId, int freq) { argument
232 String text = Integer.toString(freq/1000)+" Hz";
/frameworks/base/wifi/java/android/net/wifi/
H A DScanResult.java184 * TODO: makes real freq boundaries
186 public static boolean is24GHz(int freq) { argument
187 return freq > 2400 && freq < 2500;
199 * TODO: makes real freq boundaries
201 public static boolean is5GHz(int freq) { argument
202 return freq > 4900 && freq < 5900;
/frameworks/opt/calendar/tests/src/com/android/calendarcommon2/
H A DEventRecurrenceTest.java39 /* int freq */ EventRecurrence.SECONDLY,
60 /* int freq */ EventRecurrence.MINUTELY,
81 /* int freq */ EventRecurrence.HOURLY,
102 /* int freq */ EventRecurrence.DAILY,
123 /* int freq */ EventRecurrence.WEEKLY,
144 /* int freq */ EventRecurrence.MONTHLY,
165 /* int freq */ EventRecurrence.YEARLY,
187 /* int freq */ EventRecurrence.DAILY,
209 /* int freq */ EventRecurrence.DAILY,
231 /* int freq */ EventRecurrenc
718 verifyRecurType(String recur, int freq, String until, int count, int interval, int[] bysecond, int[] byminute, int[] byhour, int[] byday, int[] bydayNum, int[] bymonthday, int[] byyearday, int[] byweekno, int[] bymonth, int[] bysetpos, int wkst) argument
[all...]
/frameworks/opt/calendar/src/com/android/calendarcommon2/
H A DRecurrenceProcessor.java198 int freq = r.freq;
200 if (EventRecurrence.MONTHLY >= freq) {
210 if (EventRecurrence.WEEKLY >= freq) {
222 if (EventRecurrence.DAILY >= freq) {
255 if (EventRecurrence.HOURLY >= freq) {
264 if (EventRecurrence.MINUTELY >= freq) {
273 if (EventRecurrence.SECONDLY >= freq) {
286 if (freq == EventRecurrence.MONTHLY && r.bydayCount > 0) {
398 int generateByList(int count, int freq, in argument
411 useBYX(int freq, int freqConstant, int count) argument
[all...]
H A DEventRecurrence.java51 public int freq; // SECONDLY, MINUTELY, etc. field in class:EventRecurrence
326 switch (this.freq)
397 if (this.freq != WEEKLY) {
430 if (this.freq != MONTHLY) {
480 freq == er.freq &&
515 freq = count = interval = bysecondCount = byminuteCount = byhourCount =
530 * recur = "FREQ"=freq *(
590 /* TODO: replace with "if (freq != 0) throw" if nothing requires this */
727 Integer freq
[all...]
/frameworks/av/media/libstagefright/codecs/aacenc/src/
H A Dtns.c94 static Word16 FreqToBandWithRounding(Word32 freq, /*!< frequency in Hertz */ argument
102 /* assert(freq >= 0); */
104 lineNumber = (extract_l(fixmul((bandStartOffset[numOfBands] << 2),Div_32(freq << shift,fs << shift))) + 1) >> 1;
106 /* freq > fs/2 */

Completed in 353 milliseconds