HomeSort by relevance Sort by last modified time
    Searched defs:min (Results 201 - 225 of 2572) sorted by null

1 2 3 4 5 6 7 891011>>

  /device/google/cuttlefish_common/guest/hals/camera/
CameraConfiguration.h 20 #undef min macro
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
inftrees.c 42 unsigned min, max; /* minimum and maximum code lengths */ local
126 for (min = 1; min < max; min++)
127 if (count[min] != 0) break;
128 if (root < min) root = min;
202 len = min; /* starting code length */
235 min = fill; /* save offset to next table */
266 next += min; /* here min is 1 << curr */
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
inftrees.c 42 unsigned min, max; /* minimum and maximum code lengths */ local
126 for (min = 1; min <= MAXBITS; min++)
127 if (count[min] != 0) break;
128 if (root < min) root = min;
203 len = min; /* starting code length */
235 min = fill; /* save offset to next table */
266 next += min; /* here min is 1 << curr */
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/ZLib/
inftrees.c 42 unsigned min, max; /* minimum and maximum code lengths */ local
126 for (min = 1; min < max; min++)
127 if (count[min] != 0) break;
128 if (root < min) root = min;
200 len = min; /* starting code length */
233 min = fill; /* save offset to next table */
264 next += min; /* here min is 1 << curr *
    [all...]
  /external/adhd/cras/src/dsp/
drc_math.h 50 #ifndef min
51 #define min(a, b) ({ __typeof__(a) _a = (a); \ macro
94 i = max(min(i, 100), -100);
  /external/adhd/cras/src/server/
cras_utf8.c 20 uint8_t min; member in struct:u8range
117 if (!range || range->min == 0) {
142 while (seq->ranges->min != 0) {
143 if (byte >= seq->ranges->min &&
151 if (seq->ranges->min == 0) {
162 if (byte >= range->min && byte <= range->max) {
172 if (range && range->min != 0) {
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
DFA.cs 63 protected char[] min; field in class:Antlr.Runtime.DFA
119 if (c >= min[s] && c <= max[s]) {
120 int snext = transition[s][c - min[s]]; // move to next state
159 Console.Error.WriteLine("min[" + s + "]=" + min[s]);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
DFA.cs 58 protected char[] min; field in class:Antlr.Runtime.DFA
141 if ( c >= min[s] && c <= max[s] )
143 int snext = transition[s][c - min[s]]; // move to next state
187 Console.Error.WriteLine( "min[" + s + "]=" + min[s] );
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/rank/
Min.java 40 public class Min extends AbstractStorelessUnivariateStatistic implements Serializable {
52 * Create a Min instance
54 public Min() {
60 * Copy constructor, creates a new {@code Min} identical
63 * @param original the {@code Min} instance to copy
65 public Min(Min original) {
128 double min = Double.NaN; local
130 min = values[begin];
133 min = (min < values[i]) ? min : values[i]
    [all...]
  /external/blktrace/
stats.h 29 __u64 min; member in struct:minmax
38 mm->min = -1ULL;
49 if (value < mm->min)
50 mm->min = value;
60 if (src->min < dst->min)
61 dst->min = src->min;
71 mm->min = cpu_to_be64(mm->min);
    [all...]
  /external/boringssl/src/crypto/asn1/
a_utctm.c 70 static const int min[8] = { 0, 1, 1, 0, 0, 0, 0, 0 }; local
102 if ((n < min[i]) || (n > max[i]))
142 if ((n < min[i]) || (n > max[i]))
  /external/boringssl/src/crypto/fipsmodule/bn/
add.c 104 int max, min, dif; local
114 min = b->top;
115 dif = max - min;
127 carry = bn_add_words(rp, ap, bp, min);
128 rp += min;
129 ap += min;
130 bp += min;
250 int max, min, dif; local
255 min = b->top;
256 dif = max - min;
    [all...]
  /external/brotli/research/
draw_diff.cc 46 int min = +1234; local
50 if (min > diff[i][j]) min = diff[i][j];
51 int img_min = std::min(255 - image1[i][j], 255 - image2[i][j]);
56 int abs_max = -min;
64 int min_val = std::min(255 - image1[i][j], 255 - image2[i][j]);
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_test_utils.h 21 // MSVS headers define max/min as macros, so std::max/min gets crazy.
23 # undef min macro
  /external/deqp/framework/delibs/decpp/
deDefs.hpp 39 template<typename T> inline T min (T x, T y) { return x <= y ? x : y; } function in namespace:de
  /external/deqp/modules/gles2/functional/
es2fImplementationLimitTests.cpp 51 inline bool compare (const T& min, const T& reported) { return min <= reported; }
65 float min; member in struct:deqp::gles2::Functional::LimitQuery::FloatRange
67 FloatRange (float min_, float max_) : min(min_), max(max_) {}
70 std::ostream& operator<< (std::ostream& str, const FloatRange& range) { return str << range.min << ", " << range.max; }
122 bool compare<Boolean> (const Boolean& min, const Boolean& reported)
124 return !min.value || (min.value && reported.value);
128 bool compare<NegInt> (const NegInt& min, const NegInt& reported)
131 return reported.value <= min.value
    [all...]
  /external/droiddriver/src/io/appium/droiddriver/base/
DefaultPoller.java 95 SystemClock.sleep(Math.min(intervalMillis, remainingMillis));
  /external/e2fsprogs/e2fsck/
region.c 30 region_addr_t min; member in struct:region_struct
35 region_t region_create(region_addr_t min, region_addr_t max)
43 region->min = min;
66 if ((start < region->min) || (end > region->max))
162 fprintf(f, "Printing region (min=%llu. max=%llu)\n\t", region->min,
  /external/e2fsprogs/lib/ext2fs/
res_gdt.c 30 unsigned int *min = three; local
35 if (*min == 1) {
36 *min += 1;
40 if (*min == 2) {
41 *min += 1;
48 ret = *min;
49 *min += 1;
53 if (*five < *min) {
54 min = five;
57 if (*seven < *min) {
    [all...]
  /external/fec/
decode_rs.c 13 #define min(a,b) ((a) < (b) ? (a) : (b)) macro
240 for (i = min(deg_lambda,NROOTS-1) & ~1; i >= 0; i -=2) {
  /external/gemmlowp/public/
output_stages.h 162 // This output stage clamps value between the specified min and max bounds.
166 std::int32_t min; member in struct:gemmlowp::OutputStageClamp
  /external/guava/guava/src/com/google/common/primitives/
UnsignedBytes.java 134 public static byte min(byte... array) { method in class:UnsignedBytes
136 int min = toInt(array[0]); local
139 if (next < min) {
140 min = next;
143 return (byte) min;
292 int minLength = Math.min(left.length, right.length);
UnsignedInts.java 86 public static int min(int... array) { method in class:UnsignedInts
88 int min = flip(array[0]); local
91 if (next < min) {
92 min = next;
95 return flip(min);
162 int minLength = Math.min(left.length, right.length);
  /external/harfbuzz_ng/src/
hb-dsalgs.hh 39 int min = 0, max = (int) nmemb - 1; local
40 while (min <= max)
42 int mid = (min + max) / 2;
48 min = mid + 1;
  /external/icu/icu4c/source/i18n/
wintzimpl.cpp 66 int32_t hour, min, sec, mil; local
78 min = mil/60000;
84 standardDate.wMinute = static_cast<WORD>(min);
99 min = mil/60000;
105 daylightDate.wMinute = static_cast<WORD>(min);

Completed in 2454 milliseconds

1 2 3 4 5 6 7 891011>>