/frameworks/av/media/libstagefright/codecs/mp3dec/src/ |
D | pvmp3_reorder.cpp | 131 int32 freq; in pvmp3_reorder() local 153 for (freq = 0; freq < 3*sfb_lines; freq += 3) in pvmp3_reorder() 159 Scratch_mem[freq ] = tmp1; in pvmp3_reorder() 160 Scratch_mem[freq+1] = tmp2; in pvmp3_reorder() 161 Scratch_mem[freq+2] = tmp3; in pvmp3_reorder() 174 for (freq = 0; freq < 3*sfb_lines; freq += 3) in pvmp3_reorder() 180 Scratch_mem[freq ] = tmp1; in pvmp3_reorder() 181 Scratch_mem[freq+1] = tmp2; in pvmp3_reorder() 182 Scratch_mem[freq+2] = tmp3; in pvmp3_reorder()
|
/frameworks/opt/calendar/src/com/android/calendarcommon2/ |
D | RecurrenceProcessor.java | 198 int freq = r.freq; in filter() local 200 if (EventRecurrence.MONTHLY >= freq) { in filter() 210 if (EventRecurrence.WEEKLY >= freq) { in filter() 222 if (EventRecurrence.DAILY >= freq) { in filter() 255 if (EventRecurrence.HOURLY >= freq) { in filter() 264 if (EventRecurrence.MINUTELY >= freq) { in filter() 273 if (EventRecurrence.SECONDLY >= freq) { in filter() 286 if (freq == EventRecurrence.MONTHLY && r.bydayCount > 0) { in filter() 398 int generateByList(int count, int freq, int byFreq) in generateByList() argument 400 if (byFreq >= freq) { in generateByList() [all …]
|
D | EventRecurrence.java | 51 public int freq; // SECONDLY, MINUTELY, etc. field in EventRecurrence 326 switch (this.freq) in toString() 397 if (this.freq != WEEKLY) { in repeatsOnEveryWeekDay() 430 if (this.freq != MONTHLY) { in repeatsMonthlyOnDayCount() 480 freq == er.freq && in equals() 515 freq = count = interval = bysecondCount = byminuteCount = byhourCount = in resetFields() 727 Integer freq = sParseFreqMap.get(value); in parsePart() local 728 if (freq == null) { in parsePart() 731 er.freq = freq; in parsePart()
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/ |
D | EnergyProbe.java | 56 public int capture(int freq) throws InterruptedException { in capture() argument 60 if (freq > mMaxFrequency) { in capture() 69 if (freq == mMaxFrequency) { in capture() 72 int bin = 2 * (freq * CAPTURE_SIZE / mMaxFrequency / 2); in capture()
|
/frameworks/av/media/common_time/ |
D | cc_helper.cpp | 122 CCHELPER_METHOD(getCommonFreq(uint64_t* freq), 123 getCommonFreq(freq)) 126 CCHELPER_METHOD(getLocalFreq(uint64_t* freq), 127 getLocalFreq(freq))
|
D | ICommonClock.cpp | 115 virtual status_t getCommonFreq(uint64_t* freq) { in getCommonFreq() argument 122 *freq = reply.readInt64(); in getCommonFreq() 141 virtual status_t getLocalFreq(uint64_t* freq) { in getLocalFreq() argument 148 *freq = reply.readInt64(); in getLocalFreq() 292 uint64_t freq; in onTransact() local 293 status_t status = getCommonFreq(&freq); in onTransact() 296 reply->writeInt64(freq); in onTransact() 314 uint64_t freq; in onTransact() local 315 status_t status = getLocalFreq(&freq); in onTransact() 318 reply->writeInt64(freq); in onTransact()
|
/frameworks/native/services/sensorservice/ |
D | SensorFusion.cpp | 68 const float freq = 1 / dT; in process() local 69 if (freq >= 100 && freq<1000) { // filter values obviously wrong in process() 71 mEstimatedGyroRate = freq + (mEstimatedGyroRate - freq)*alpha; in process()
|
/frameworks/base/wifi/java/android/net/wifi/ |
D | ScanResult.java | 186 public static boolean is24GHz(int freq) { in is24GHz() argument 187 return freq > 2400 && freq < 2500; in is24GHz() 201 public static boolean is5GHz(int freq) { in is5GHz() argument 202 return freq > 4900 && freq < 5900; in is5GHz()
|
/frameworks/base/libs/common_time/ |
D | common_clock_service.cpp | 60 status_t CommonClockService::getCommonFreq(uint64_t* freq) { in getCommonFreq() argument 61 *freq = mTimeServer.getCommonClock().getCommonFreq(); in getCommonFreq() 70 status_t CommonClockService::getLocalFreq(uint64_t* freq) { in getLocalFreq() argument 71 *freq = mTimeServer.getLocalClock().getLocalFreq(); in getLocalFreq()
|
D | common_clock_service.h | 40 virtual status_t getCommonFreq(uint64_t* freq); 42 virtual status_t getLocalFreq(uint64_t* freq);
|
/frameworks/av/include/common_time/ |
D | cc_helper.h | 52 status_t getCommonFreq(uint64_t* freq); 54 status_t getLocalFreq(uint64_t* freq);
|
D | ICommonClock.h | 78 virtual status_t getCommonFreq(uint64_t* freq) = 0; 80 virtual status_t getLocalFreq(uint64_t* freq) = 0;
|
/frameworks/av/media/libeffects/testlibs/ |
D | AudioEqualizer.cpp | 210 setFrequency(band, bandCfg.freq); in setPreset() 266 uint32_t freq = mpPeakingFilters[i].getFrequency(); in getMostRelevantBand() local 267 if (freq >= targetFreq) { in getMostRelevantBand() 268 high = freq; in getMostRelevantBand() 272 low = freq; in getMostRelevantBand()
|
D | AudioEqualizer.h | 39 uint32_t freq; member
|
/frameworks/av/services/audioflinger/tests/ |
D | test_utils.h | 188 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);
|
/frameworks/base/media/tests/audiotests/ |
D | shared_mem_test.cpp | 81 long freq = 1237; in Test01() local 84 f0 = pow(2., 32.) * freq / (float)rate; in Test01()
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/audio/ |
D | MediaEqualizerTest.java | 173 int freq = mEqualizer.getCenterFreq(band); in test1_1BandFrequency() local 175 (freqRange[0] <= freq) && (freqRange[1] >= freq)); in test1_1BandFrequency()
|
/frameworks/opt/calendar/tests/src/com/android/calendarcommon2/ |
D | EventRecurrenceTest.java | 719 int freq, String until, int count, int interval, in verifyRecurType() argument 726 if (eventRecurrence.freq != freq in verifyRecurType() 735 System.out.println(" freq=" + freq); in verifyRecurType() 767 System.out.println(" freq=" + er.freq); in print()
|
/frameworks/wilhelm/src/desktop/ |
D | SDL.c | 48 fmt.freq = 44100; in SDL_open()
|
/frameworks/av/services/audioflinger/ |
D | AudioResampler.h | 60 virtual void setLocalTimeFreq(uint64_t freq);
|
D | AudioResampler.cpp | 310 void AudioResampler::setLocalTimeFreq(uint64_t freq) { in setLocalTimeFreq() argument 311 mLocalTimeFreq = freq; in setLocalTimeFreq()
|
/frameworks/base/media/tests/EffectsTest/src/com/android/effectstest/ |
D | EqualizerTest.java | 230 private void displayFreq(int viewId, int freq) { in displayFreq() argument 232 String text = Integer.toString(freq/1000)+" Hz"; in displayFreq()
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/ |
D | WifiNative.java | 836 int freq = (oc <= 14 ? 2407 : 5000) + oc * 5; in p2pSetChannel() local 838 + (freq - 5) + "," + (freq + 5) + "-6000"); in p2pSetChannel()
|
D | WifiStateMachine.java | 1512 int freq = 0; in retrieveBatchedScanData() local 1535 wifiSsid, bssid, "", level, freq, tsf, dist, distSd)); in retrieveBatchedScanData() 1539 freq = 0; in retrieveBatchedScanData() 1558 freq = Integer.parseInt(splitData[n].substring(FREQ_STR.length())); in retrieveBatchedScanData() 1561 freq = 0; in retrieveBatchedScanData() 3318 int freq = 0; in setScanResults() local 3380 freq = Integer.parseInt(line.substring(FREQ_STR.length())); in setScanResults() 3382 freq = 0; in setScanResults() 3422 scanResult.frequency = freq; in setScanResults() 3428 wifiSsid, bssid, flags, level, freq, tsf); in setScanResults() [all …]
|
/frameworks/av/media/libstagefright/codecs/aacenc/src/ |
D | tns.c | 94 static Word16 FreqToBandWithRounding(Word32 freq, /*!< frequency in Hertz */ in FreqToBandWithRounding() argument 104 …lineNumber = (extract_l(fixmul((bandStartOffset[numOfBands] << 2),Div_32(freq << shift,fs << shift… in FreqToBandWithRounding()
|