Searched defs:fc (Results 1 - 3 of 3) sorted by relevance

/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/base/services/java/com/android/server/
H A DAppWidgetServiceImpl.java739 FilterComparison fc = new FilterComparison(intent);
740 Pair<Integer, FilterComparison> key = Pair.create(appWidgetId, fc);
768 incrementAppWidgetServiceRefCount(appWidgetId, fc);
858 private void incrementAppWidgetServiceRefCount(int appWidgetId, FilterComparison fc) { argument
860 if (mRemoteViewsServicesAppWidgets.containsKey(fc)) {
861 appWidgetIds = mRemoteViewsServicesAppWidgets.get(fc);
864 mRemoteViewsServicesAppWidgets.put(fc, appWidgetIds);

Completed in 73 milliseconds