Searched refs:freq (Results 1 - 25 of 35) sorted by last modified time

12

/frameworks/wilhelm/include/OMXAL/
H A DOpenMAXAL.h2153 XAuint32 freq
2196 XAuint32 freq,
/frameworks/wilhelm/src/desktop/
H A DSDL.cpp48 fmt.freq = 44100;
/frameworks/rs/perf-test-scripts/
H A Dget-freq94 freq=`getprop $GPU_DIR/max_gpuclk`
96 freq=`getprop /d/clock/override.gbus/rate`
101 echo " Current Frequency: $freq (Hz)"
H A Dset-cpu-freq82 freq=`printf "%d\n" "${frequencies[@]}" | awk -v c=${frequencies[0]} -v t=$targetFreq 'BEGIN{d=$0-t;if(d<0)d=-d;l=d}{d=$0-t;if(d<0)d=-d;if(d<l){l=d;c=$0}}END{print c}'`
83 selectedFreq[$core]=$freq
86 adb shell "echo -n $freq > $DIR/$core/cpufreq/scaling_min_freq"
87 adb shell "echo -n $freq > $DIR/$core/cpufreq/scaling_max_freq"
141 adb shell "echo -n $freq > $DIR/$core/cpufreq/scaling_min_freq"
142 adb shell "echo -n $freq > $DIR/$core/cpufreq/scaling_max_freq"
H A Dset-gpu-freq66 freq=`printf "%d\n" "${frequencies[@]}" | awk -v closest=${frequencies[0]} -v target=$targetFreq 'BEGIN{diff=$0-target;if(diff<0)diff=-diff;lowest=diff};{diff=$0-target;if(diff<0)diff=-diff;if(diff<lowest){lowest=diff;closest=$0}};END{print closest}'`
67 echo Selected: $freq
83 setprop $DIR/max_gpuclk $freq
84 setprop $DIR/gpuclk $freq
86 setprop /d/clock/override.gbus/rate $freq
89 echo "GPU Frequency set to $freq"
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiConnectivityManager.java759 for (Integer freq : freqs) {
760 settings.channels[index++] = new WifiScanner.ChannelSpec(freq);
H A DWifiNetworkHistory.java333 int freq = 0;
487 freq = 0;
496 freq = Integer.parseInt(value);
515 caps, rssi, freq, (long) 0, seen);
H A DWifiStateMachine.java1558 for (Integer freq : freqs) {
1559 settings.channels[index++] = new WifiScanner.ChannelSpec(freq);
2277 for(int freq : lastScanFreqs) {
2278 sb.append(freq).append(",");
2424 sb.append(" freq=").append(mWifiInfo.getFrequency());
2495 sb.append(" freq=").append(result.frequency);
2901 " linkspeed=" + newLinkSpeed + " freq=" + newFrequency);
6215 + " freq=" + mWifiInfo.getFrequency()
6225 + " freq=" + mWifiInfo.getFrequency()
H A DWificondControl.java385 for (Integer freq : freqs) {
387 channel.frequency = freq;
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
H A DNetworkDetail.java122 List<String> anqpLines, int freq) {
260 mPrimaryFreq = freq;
121 NetworkDetail(String bssid, ScanResult.InformationElement[] infoElements, List<String> anqpLines, int freq) argument
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/p2p/
H A DSupplicantP2pIfaceHal.java1192 int freq = (operatingChannel <= 14 ? 2407 : 5000) + operatingChannel * 5;
1195 range1.max = freq - 5;
1197 range2.min = freq + 5;
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
H A DScanResults.java106 int freq = freqs[i];
118 NetworkDetail nd = new NetworkDetail(bssid, ie, anqpLines, freq);
120 bssid, "", rssi, freq,
H A DScanTestUtil.java214 public static ScanResult createScanResult(int freq) { argument
216 -1, null, "", 0, freq, 0);
H A DWifiVendorHalTest.java527 ArrayList<Integer> freq = new ArrayList<>();
528 freq.add(2405);
530 setupValidFrequenciesForBand(freq);
544 ArrayList<Integer> freq = new ArrayList<>();
545 freq.add(2405);
547 setupValidFrequenciesForBand(freq);
/frameworks/opt/calendar/src/com/android/calendarcommon2/
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...]
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...]
/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/native/services/sensorservice/
H A DSensorFusion.cpp80 const float freq = 1 / dT; local
81 if (freq >= 100 && freq<1000) { // filter values obviously wrong
83 mEstimatedGyroRate = freq + (mEstimatedGyroRate - freq)*alpha;
/frameworks/base/wifi/java/android/net/wifi/
H A DScanResult.java361 * TODO: makes real freq boundaries
363 public static boolean is24GHz(int freq) { argument
364 return freq > 2400 && freq < 2500;
376 * TODO: makes real freq boundaries
378 public static boolean is5GHz(int freq) { argument
379 return freq > 4900 && freq < 5900;
/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/base/libs/hwui/tests/scripts/
H A Dprep_buller.sh48 freq=0
52 freq=300000000
55 freq=305000000
57 echo "performance mode, $freq Hz"
59 adb shell "echo $freq > /sys/class/kgsl/kgsl-3d0/devfreq/min_freq"
60 adb shell "echo $freq > /sys/class/kgsl/kgsl-3d0/devfreq/max_freq"
/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/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/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));

Completed in 377 milliseconds

12