Searched refs:fc (Results 1 - 8 of 8) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DRemoteViewsService.java216 Intent.FilterComparison fc = new Intent.FilterComparison(intent);
217 if (RemoteViewsService.sRemoteViewFactories.containsKey(fc)) {
218 RemoteViewsFactory factory = RemoteViewsService.sRemoteViewFactories.get(fc);
225 RemoteViewsService.sRemoteViewFactories.remove(fc);
237 Intent.FilterComparison fc = new Intent.FilterComparison(intent);
240 if (!sRemoteViewFactories.containsKey(fc)) {
242 sRemoteViewFactories.put(fc, factory);
246 factory = sRemoteViewFactories.get(fc);
/frameworks/av/media/libeffects/lvm/lib/Eq/src/
H A DLVEQNB_Control.c134 /* Double precision if (fc <= fs/110) */
135 /* Double precision if (fs/110 < fc < fs/85) & (Q>3) */
147 LVM_UINT32 fc; /* Filter centre frequency */ local
158 fc = (LVM_UINT32)pParams->pBandDefinition[i].Frequency; /* Get the band centre frequency */
166 if ((fc << 15) <= (LOW_FREQ * fs))
169 * fc <= fs/110
173 else if (((fc << 15) <= (HIGH_FREQ * fs)) && (QFactor > 300))
176 * (fs/110 < fc < fs/85) & (Q>3)
185 if (fc > (fs >> 1))
/frameworks/av/media/libeffects/lvm/lib/SpectrumAnalyzer/src/
H A DLVPSA_Control.c262 /* Double precision if (fc <= fs/110) */
263 /* Double precision if (fs/110 < fc < fs/85) & (Q>3) */
274 LVM_UINT32 fc; /* Filter centre frequency */ local
282 fc = (LVM_UINT32)pInst->pFiltersParams[ii].CenterFrequency; /* Get the band centre frequency */
290 if ((LOW_FREQ * fs) >= (fc << 15))
293 * fc <= fs/110
299 if (((LOW_FREQ * fs) < (fc << 15)) && ((fc << 15) < (HIGH_FREQ * fs)) && (QFactor > 300))
302 * (fs/110 < fc < fs/85) & (Q>3)
574 /* 2. The double precision coefficients are only used when fc i
[all...]
/frameworks/av/media/libmedia/
H A DAudioTrack.cpp1531 uint32_t fc = this->frameCount; local
1532 if (u >= fc) {
1534 if (u - fc >= userBase ) {
1535 userBase += fc;
1537 } else if (u >= userBase + fc) {
1539 userBase += fc;
1590 uint32_t fc = this->frameCount; local
1591 if (s >= fc) {
1593 if (s - fc >= serverBase ) {
1594 serverBase += fc;
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DDataConnection.java150 for (FailCause fc : values()) {
151 sErrorCodeToFailCauseMap.put(fc.getErrorCode(), fc);
183 FailCause fc = sErrorCodeToFailCauseMap.get(errorCode);
184 if (fc == null) {
185 fc = UNKNOWN;
187 return fc;
/frameworks/base/services/java/com/android/server/
H A DAlarmManagerService.java928 Intent.FilterComparison fc = new Intent.FilterComparison(intent);
929 FilterStats fs = bs.filterStats.get(fc);
932 bs.filterStats.put(fc, fs);
H A DAppWidgetServiceImpl.java686 FilterComparison fc = new FilterComparison(intent);
687 Pair<Integer, FilterComparison> key = Pair.create(appWidgetId, fc);
710 incrementAppWidgetServiceRefCount(appWidgetId, fc);
798 private void incrementAppWidgetServiceRefCount(int appWidgetId, FilterComparison fc) { argument
800 if (mRemoteViewsServicesAppWidgets.containsKey(fc)) {
801 appWidgetIds = mRemoteViewsServicesAppWidgets.get(fc);
804 mRemoteViewsServicesAppWidgets.put(fc, appWidgetIds);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCDMAPhone.java1340 String fc = (String)sch[2];
1341 if (dialStr.regionMatches(0,fc,0,fcLen)) {

Completed in 539 milliseconds