Home
last modified time | relevance | path

Searched refs:thresholds (Results 1 – 7 of 7) sorted by relevance

/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
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,
[all …]
/frameworks/base/core/java/android/net/
DNetworkAgent.java313 ArrayList<Integer> thresholds = in handleMessage() local
317 int[] intThresholds = new int[(thresholds != null) ? thresholds.size() : 0]; in handleMessage()
319 intThresholds[i] = thresholds.get(i); in handleMessage()
495 protected void setSignalStrengthThresholds(int[] thresholds) { in setSignalStrengthThresholds() argument
/frameworks/av/media/libstagefright/codecs/aacenc/inc/
Dtns_func.h72 Word32 *thresholds);
/frameworks/av/media/libstagefright/codecs/aacenc/src/
Dtns.c897 Word32 *thresholds) /*!< thresholds (modified) */ in ApplyTnsMultTableToRatios() argument
903 thresholds[i] = (thresholds[i] >> 2); in ApplyTnsMultTableToRatios()
/frameworks/base/services/core/java/com/android/server/am/
DActivityRecord.java578 private static boolean crossesSizeThreshold(int[] thresholds, int firstDp, in crossesSizeThreshold() argument
580 if (thresholds == null) { in crossesSizeThreshold()
583 for (int i = thresholds.length - 1; i >= 0; i--) { in crossesSizeThreshold()
584 final int threshold = thresholds[i]; in crossesSizeThreshold()
/frameworks/base/services/core/java/com/android/server/
DConnectivityService.java4006 final SortedSet<Integer> thresholds = new TreeSet(); in getSignalStrengthThresholds() local
4011 thresholds.add(nri.request.networkCapabilities.getSignalStrength()); in getSignalStrengthThresholds()
4015 return new ArrayList<Integer>(thresholds); in getSignalStrengthThresholds()
4021 Bundle thresholds = new Bundle(); in updateSignalStrengthThresholds() local
4022 thresholds.putIntegerArrayList("thresholds", thresholdsArray); in updateSignalStrengthThresholds()
4037 0, 0, thresholds); in updateSignalStrengthThresholds()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DWifiStateMachine.java5409 protected void setSignalStrengthThresholds(int[] thresholds) { in setSignalStrengthThresholds() argument
5420 log("Received signal strength thresholds: " + Arrays.toString(thresholds)); in setSignalStrengthThresholds()
5421 if (thresholds.length == 0) { in setSignalStrengthThresholds()
5426 int [] rssiVals = Arrays.copyOf(thresholds, thresholds.length + 2); in setSignalStrengthThresholds()