Searched refs:max (Results 1 - 25 of 4319) sorted by last modified time

1234567891011>>

/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/aztec/ ...
/external/zlib/src/contrib/infback9/
H A Dinftree9.c42 unsigned min, max; /* minimum and maximum code lengths */ local
116 for (max = MAXBITS; max >= 1; max--)
117 if (count[max] != 0) break;
118 if (root > max) root = max;
119 if (max == 0) return -1; /* no codes! */
131 if (left > 0 && (type == CODES || max != 1))
169 all codes of length max,
[all...]
/external/zlib/src/examples/
H A Denough.c15 Fix bug for initial root table size == max - 1
127 len: 1..max - 1 (max == maximum code length in bits)
134 len is less than max, since the code completes immediately when len == max.
138 We build the array with length max-1 lists for the len index, with syms-3
170 local int max; /* maximum allowed bit length for the codes */ variable
179 #define INDEX(i,j,k) (((size_t)((i-1)>>1)*((i-2)>>1)+(j>>1)-1)*(max-1)+k-1)
199 len through max inclusive, coding syms symbols, with left bit patterns of
202 calculation. Uses the globals max an
[all...]
H A Dgun.c210 int max; /* maximum bits per code for this stream */ local
233 max = flags & 0x1f;
234 if (max < 9 || max > 16) {
238 if (max == 9) /* 9 doesn't really mean 9 */
239 max = 10;
268 if (end >= mask && bits < max) {
H A Dgzlog.c42 subsequent stored blocks as needed (16K max each)
611 uint got, max; local
654 max = (((uint)0 - 1) >> 1) + 1; /* in case int smaller than size_t */
656 strm.avail_in = len > max ? max : (uint)len;
/external/zlib/src/
H A Dinftrees.c42 unsigned min, max; /* minimum and maximum code lengths */ local
114 for (max = MAXBITS; max >= 1; max--)
115 if (count[max] != 0) break;
116 if (root > max) root = max;
117 if (max == 0) { /* no symbols to code at all */
126 for (min = 1; min < max; min++)
137 if (left > 0 && (type == CODES || max !
[all...]
/external/webrtc/src/
H A Dcommon_types.h274 // max packet waiting time in the jitter buffer (ms)
281 int max; // maximum member in struct:webrtc::__anon33417
/external/webrtc/src/modules/audio_processing/aec/
H A Daec_core.c1307 stats->max = offsetLevel;
1416 if (dtmp > aec->erl.max) {
1417 aec->erl.max = dtmp;
1446 if (dtmp > aec->aNlp.max) {
1447 aec->aNlp.max = dtmp;
1477 if (dtmp > aec->erle.max) {
1478 aec->erle.max = dtmp;
H A Daec_core.h61 float max; member in struct:__anon33469
H A Decho_cancellation.c735 metrics->erl.max = (short) aecpc->aec->erl.max;
756 metrics->erle.max = (short) aecpc->aec->erle.max;
775 metrics->rerl.max = stmp;
790 metrics->aNlp.max = (short) aecpc->aec->aNlp.max;
/external/webrtc/src/modules/audio_processing/aec/interface/
H A Decho_cancellation.h48 WebRtc_Word16 max; member in struct:__anon33479
/external/webrtc/src/modules/audio_processing/
H A Decho_cancellation_impl.cc262 metrics->residual_echo_return_loss.maximum = my_metrics.rerl.max;
267 metrics->echo_return_loss.maximum = my_metrics.erl.max;
272 metrics->echo_return_loss_enhancement.maximum = my_metrics.erle.max;
277 metrics->a_nlp.maximum = my_metrics.aNlp.max;
/external/webrtc/src/modules/audio_processing/test/testsupport/metrics/
H A Dvideo_metrics.cc22 // Used for calculating min and max values
53 // Calculates average, min and max values for the supplied struct, if non-NULL.
66 // Calculate min/max statistics
73 result->max = iter->value;
H A Dvideo_metrics.h31 min(std::numeric_limits<double>::max()),
32 max(std::numeric_limits<double>::min()),
38 double max; member in struct:webrtc::test::QualityMetricsResult
/external/webrtc/src/modules/audio_processing/test/
H A Dunit_test.cc172 int16_t max = AbsValue(frame._payloadData[0]); local
174 max = MaxValue(max, AbsValue(frame._payloadData[i]));
177 return max;
/external/webrtc/src/system_wrappers/source/spreadsortlib/
H A Dspreadsort.hpp60 find_extremes(RandomAccessIter current, RandomAccessIter last, RandomAccessIter & max, RandomAccessIter & min) argument
62 min = max = current;
63 //Start from the second item, as max and min are initialized to the first
65 if(*max < *current)
66 max = current;
75 find_extremes(RandomAccessIter current, RandomAccessIter last, RandomAccessIter & max, RandomAccessIter & min, compare comp) argument
77 min = max = current;
79 if(comp(*max, *current))
80 max = current;
130 RandomAccessIter max, mi local
245 RandomAccessIter max, min; local
293 RandomAccessIter max, min; local
419 find_extremes(RandomAccessIter current, RandomAccessIter last, div_type & max, div_type & min, right_shift shift) argument
468 find_extremes(RandomAccessIter current, RandomAccessIter last, cast_type & max, cast_type & min) argument
486 div_type max, min; local
535 div_type max, min; local
586 div_type max, min; local
635 div_type max, min; local
685 div_type max, min; local
769 div_type max, min; local
853 div_type max, min; local
[all...]
/external/webrtc/src/system_wrappers/test/TestSort/
H A DTestSort.cpp19 #undef max macro
114 // Uniform [-max()/2, max()/2] for signed
115 // [0, max()] for unsigned
116 return static_cast<Type>(floatRand * std::numeric_limits<Type>::max());
/external/webrtc/test/testsupport/metrics/
H A Dvideo_metrics.cc22 // Used for calculating min and max values
53 // Calculates average, min and max values for the supplied struct, if non-NULL.
66 // Calculate min/max statistics
73 result->max = iter->value;
H A Dvideo_metrics.h31 min(std::numeric_limits<double>::max()),
32 max(std::numeric_limits<double>::min()),
38 double max; member in struct:webrtc::test::QualityMetricsResult
/external/wpa_supplicant_8/hostapd/src/drivers/
H A Ddriver_nl80211.c2960 range[idx].max = freq_range->range[i].end_freq;
2962 range[idx].min, range[idx].max);
2963 if (range[idx].min > range[idx].max) {
/external/wpa_supplicant_8/hostapd/src/tls/
H A Dlibtommath.c223 int olduse, res, min, max; local
230 max = a->used;
234 max = b->used;
239 if (c->alloc < max + 1) {
240 if ((res = mp_grow (c, max + 1)) != MP_OKAY) {
247 c->used = max + 1;
280 if (min != max) {
281 for (; i < max; i++) {
310 int olduse, res, min, max; local
314 max
[all...]
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dcommon.c668 freq[count].max = atoi(pos2);
670 freq[count].max = freq[count].min;
694 if (freq >= list->range[i].min && freq <= list->range[i].max)
722 if (range->min == range->max)
728 range->min, range->max);
H A Dcommon.h520 unsigned int max; member in struct:wpa_freq_range_list::wpa_freq_range
/external/wpa_supplicant_8/src/drivers/
H A Ddriver_nl80211.c2960 range[idx].max = freq_range->range[i].end_freq;
2962 range[idx].min, range[idx].max);
2963 if (range[idx].min > range[idx].max) {
/external/wpa_supplicant_8/src/tls/
H A Dlibtommath.c223 int olduse, res, min, max; local
230 max = a->used;
234 max = b->used;
239 if (c->alloc < max + 1) {
240 if ((res = mp_grow (c, max + 1)) != MP_OKAY) {
247 c->used = max + 1;
280 if (min != max) {
281 for (; i < max; i++) {
310 int olduse, res, min, max; local
314 max
[all...]

Completed in 266 milliseconds

1234567891011>>