Searched defs:thresholds (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/core/java/android/net/
H A DNetworkAgent.java194 * Sent by ConnectivityService to inform this network transport of signal strength thresholds
197 * obj = int[] describing signal strength thresholds.
313 ArrayList<Integer> thresholds =
314 ((Bundle) msg.obj).getIntegerArrayList("thresholds");
315 // TODO: Change signal strength thresholds API to use an ArrayList<Integer>
317 int[] intThresholds = new int[(thresholds != null) ? thresholds.size() : 0];
319 intThresholds[i] = thresholds.get(i);
492 * Called by ConnectivityService to inform this network transport of signal strength thresholds
495 protected void setSignalStrengthThresholds(int[] thresholds) { argument
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_deblocking.c173 static void FilterLuma(u8 *data, bS_t *bS, edgeThreshold_t *thresholds,
176 static void FilterChroma(u8 *cb, u8 *cr, bS_t *bS, edgeThreshold_t *thresholds,
179 static void FilterVerLumaEdge( u8 *data, u32 bS, edgeThreshold_t *thresholds,
181 static void FilterHorLumaEdge( u8 *data, u32 bS, edgeThreshold_t *thresholds,
183 static void FilterHorLuma( u8 *data, u32 bS, edgeThreshold_t *thresholds,
186 static void FilterVerChromaEdge( u8 *data, u32 bS, edgeThreshold_t *thresholds,
188 static void FilterHorChromaEdge( u8 *data, u32 bS, edgeThreshold_t *thresholds,
190 static void FilterHorChroma( u8 *data, u32 bS, edgeThreshold_t *thresholds,
194 edgeThreshold_t *thresholds,
199 edgeThreshold_t *thresholds,
587 edgeThreshold_t thresholds[3]; local
649 FilterVerLumaEdge( u8 *data, u32 bS, edgeThreshold_t *thresholds, u32 imageWidth) argument
760 FilterHorLumaEdge( u8 *data, u32 bS, edgeThreshold_t *thresholds, i32 imageWidth) argument
829 FilterHorLuma( u8 *data, u32 bS, edgeThreshold_t *thresholds, i32 imageWidth) argument
942 FilterVerChromaEdge( u8 *data, u32 bS, edgeThreshold_t *thresholds, u32 width) argument
1017 FilterHorChromaEdge( u8 *data, u32 bS, edgeThreshold_t *thresholds, i32 width) argument
1065 FilterHorChroma( u8 *data, u32 bS, edgeThreshold_t *thresholds, i32 width) argument
1381 GetLumaEdgeThresholds( edgeThreshold_t *thresholds, mbStorage_t *mb, u32 filteringFlags) argument
1460 GetChromaEdgeThresholds( edgeThreshold_t *thresholds, mbStorage_t *mb, u32 filteringFlags, i32 chromaQpIndexOffset) argument
1542 FilterLuma( u8 *data, bS_t *bS, edgeThreshold_t *thresholds, u32 width) argument
1624 FilterChroma( u8 *dataCb, u8 *dataCr, bS_t *bS, edgeThreshold_t *thresholds, u32 width) argument
[all...]
/frameworks/av/media/libstagefright/codecs/aacenc/src/
H A Dtns.c891 * description: Change thresholds according to tns
897 Word32 *thresholds) /*!< thresholds (modified) */
902 /* thresholds[i] * 0.25 */
903 thresholds[i] = (thresholds[i] >> 2);
894 ApplyTnsMultTableToRatios(Word16 startCb, Word16 stopCb, TNS_SUBBLOCK_INFO subInfo, Word32 *thresholds) argument
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityRecord.java571 * The activity will report to us vertical and horizontal thresholds after which a relaunch is
572 * required. These thresholds are collected from the application resource qualifiers. For
578 private static boolean crossesSizeThreshold(int[] thresholds, int firstDp, argument
580 if (thresholds == null) {
583 for (int i = thresholds.length - 1; i >= 0; i--) {
584 final int threshold = thresholds[i];
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiStateMachine.java270 // the rssi thresholds and raised event to host. This would be eggregious if this
275 Log.d(TAG, "Re-program RSSI thresholds for " + smToString(reason) +
2665 sb.append(" thresholds=");
5409 protected void setSignalStrengthThresholds(int[] thresholds) { argument
5410 // 0. If there are no thresholds, or if the thresholds are invalid, stop RSSI monitoring.
5412 // MAX_VALUE at the start/end of the thresholds array if necessary.
5420 log("Received signal strength thresholds: " + Arrays.toString(thresholds));
5421 if (thresholds
[all...]

Completed in 158 milliseconds