Searched refs:freq (Results 1 - 25 of 27) sorted by relevance

12

/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/include/common_time/
H A Dcc_helper.h52 status_t getCommonFreq(uint64_t* freq);
54 status_t getLocalFreq(uint64_t* freq);
H A DICommonClock.h78 virtual status_t getCommonFreq(uint64_t* freq) = 0;
80 virtual status_t getLocalFreq(uint64_t* freq) = 0;
/frameworks/av/media/common_time/
H A Dcc_helper.cpp122 CCHELPER_METHOD(getCommonFreq(uint64_t* freq),
123 getCommonFreq(freq))
126 CCHELPER_METHOD(getLocalFreq(uint64_t* freq),
127 getLocalFreq(freq))
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/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();
H A Dcommon_clock_service.h40 virtual status_t getCommonFreq(uint64_t* freq);
42 virtual status_t getLocalFreq(uint64_t* freq);
/frameworks/wilhelm/src/desktop/
H A DSDL.c48 fmt.freq = 44100;
/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/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/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/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/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/av/services/audioflinger/
H A DAudioResampler.h60 virtual void setLocalTimeFreq(uint64_t freq);
H A DAudioResampler.cpp310 void AudioResampler::setLocalTimeFreq(uint64_t freq) {
311 mLocalTimeFreq = freq;
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/audio/
H A DMediaEqualizerTest.java173 int freq = mEqualizer.getCenterFreq(band);
175 (freqRange[0] <= freq) && (freqRange[1] >= freq));
/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/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/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiNative.java228 return doStringCommand("GET_CAPABILITY freq");
234 else return doBooleanCommand("SCAN TYPE=ONLY freq=" + freqList);
237 else return doBooleanCommand("SCAN freq=" + freqList);
350 * freq=2412
370 * freq=2462
836 int freq = (oc <= 14 ? 2407 : 5000) + oc * 5;
838 + (freq - 5) + "," + (freq + 5) + "-6000");
852 [persistent] [join|auth] [go_intent=<0..15>] [freq=<in MHz>] */
H A DWifiStateMachine.java1452 * "freq=...\n" (in Mhz)
1512 int freq = 0;
1535 wifiSsid, bssid, "", level, freq, tsf, dist, distSd));
1539 freq = 0;
1558 freq = Integer.parseInt(splitData[n].substring(FREQ_STR.length()));
1561 freq = 0;
2687 sb.append(" freq=").append(mWifiInfo.getFrequency());
2720 sb.append(" freq=").append(mWifiInfo.getFrequency());
2792 sb.append(" freq=").append(result.frequency);
3280 private static final String FREQ_STR = "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 1318 milliseconds

12