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

/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DDcFailCause.java72 for (DcFailCause fc : values()) {
73 sErrorCodeToFailCauseMap.put(fc.getErrorCode(), fc);
116 DcFailCause fc = sErrorCodeToFailCauseMap.get(errorCode);
117 if (fc == null) {
118 fc = UNKNOWN;
120 return fc;
/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/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCDMAPhone.java1589 String fc = sch[2];
1590 if (dialStr.regionMatches(0,fc,0,fcLen)) {
/frameworks/base/services/appwidget/java/com/android/server/appwidget/
H A DAppWidgetServiceImpl.java940 FilterComparison fc = new FilterComparison(intent);
941 Pair<Integer, FilterComparison> key = Pair.create(appWidgetId, fc);
959 Pair<Integer, FilterComparison> serviceId = Pair.create(widget.provider.id.uid, fc);

Completed in 232 milliseconds