Searched refs:min (Results 151 - 175 of 1926) sorted by relevance

1234567891011>>

/external/llvm/include/llvm/ADT/
H A Dedit_distance.h77 Current[x] = std::min(
79 std::min(Current[x-1], Previous[x])+1);
83 else Current[x] = std::min(Current[x-1], Previous[x]) + 1;
85 BestThisRow = std::min(BestThisRow, Current[x]);
/external/lzma/CPP/Windows/
H A DTime.h16 unsigned hour, unsigned min, unsigned sec, UInt64 &resSeconds);
/external/regex-re2/re2/
H A Dsimplify.cc122 // Simplifies the expression re{min,max} in terms of *, +, and ?.
125 static Regexp* SimplifyRepeat(Regexp* re, int min, int max,
307 // Simplifies the expression re{min,max} in terms of *, +, and ?.
313 Regexp* SimplifyWalker::SimplifyRepeat(Regexp* re, int min, int max, argument
318 if (min == 0)
322 if (min == 1)
327 nre->AllocSub(min);
328 VLOG(1) << "Simplify " << min;
330 for (int i = 0; i < min-1; i++)
332 nre_subs[min
[all...]
/external/v8/test/webkit/
H A Ddfg-min-max.js25 "This tests that Math.min and Math.max for doubles works correctly in the DFG JIT."
29 return Math.min(a, b);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/generators/
H A DDHKeyGeneratorHelper.java38 BigInteger min = TWO;
42 min = ONE.shiftLeft(m - 1);
55 BigInteger x = BigIntegers.createRandomInRange(min, max, random);
/external/easymock/src/org/easymock/internal/
H A DResults.java72 int min = 0, max = 0;
75 min += interval.getMinimum();
83 return new Range(min, max);
/external/fio/lib/
H A Dlinux-dev-lookup.c11 unsigned int min)
36 maj, min);
57 if (maj == major(st.st_rdev) && min == minor(st.st_rdev)) {
10 blktrace_lookup_device(const char *redirect, char *path, unsigned int maj, unsigned int min) argument
/external/fonttools/Lib/fontTools/misc/
H A DarrayTools.py19 return min(xs), min(ys), max(xs), max(ys)
33 def updateBounds(bounds, p, min=min, max=max):
37 return min(xMin, x), min(yMin, y), max(xMax, x), max(yMax, y)
69 return min(xMin, xMax), min(yMin, yMax), max(xMin, xMax), max(yMin, yMax)
94 min(xMax1, xMax2), min(yMax
[all...]
/external/fonttools/Tools/fontTools/misc/
H A DarrayTools.py19 return min(xs), min(ys), max(xs), max(ys)
33 def updateBounds(bounds, p, min=min, max=max):
37 return min(xMin, x), min(yMin, y), max(xMax, x), max(yMax, y)
69 return min(xMin, xMax), min(yMin, yMax), max(xMin, xMax), max(yMin, yMax)
94 min(xMax1, xMax2), min(yMax
[all...]
/external/libcxx/test/std/algorithms/alg.sorting/alg.min.max/
H A Dmin_comp.pass.cpp15 // min(const T& a, const T& b, Compare comp);
25 assert(&std::min(a, b, c) == &x);
52 static_assert(std::min(x, y, std::greater<int>()) == x, "" );
53 static_assert(std::min(y, x, std::greater<int>()) == x, "" );
/external/libhevc/common/
H A Dihevc_macros.h40 #define CLIP3(x, min, max) (((x) > (max)) ? (max) :(((x) < (min))? (min):(x)))
/external/lzma/xz-embedded/
H A Dxz_config.h50 #ifndef min
51 # define min(x, y) ((x) < (y) ? (x) : (y)) macro
53 #define min_t(type, x, y) min(x, y)
/external/sfntly/cpp/src/sfntly/data/
H A Dfont_data.cc26 return std::min<int32_t>(array_->Size() - bound_offset_, bound_length_);
47 return std::min<int32_t>(array_->Length() - bound_offset_, bound_length_);
79 return std::min<int32_t>(length, bound_length_ - offset);
/external/skia/include/effects/
H A DSkTableMaskFilter.h27 /** Utility that creates a clipping table: clamps values below min to 0
30 static void MakeClipTable(uint8_t table[256], uint8_t min, uint8_t max);
42 static SkTableMaskFilter* CreateClip(uint8_t min, uint8_t max) { argument
44 MakeClipTable(table, min, max);
/external/skia/src/core/
H A DSkDeviceProfile.cpp17 static float pin(float value, float min, float max) { argument
18 if (value < min) {
19 value = min;
/external/freetype/src/psnames/
H A Dpsmodule.c401 PS_UniMap *min, *max, *mid, *result = NULL; local
406 min = table->maps;
407 max = min + table->num_maps - 1;
409 while ( min <= max )
414 mid = min + ( ( max - min ) >> 1 );
427 if ( min == max )
431 min = mid + 1;
452 FT_UInt min = 0; local
459 while ( min < ma
[all...]
/external/pdfium/third_party/freetype/src/psnames/
H A Dpsmodule.c401 PS_UniMap *min, *max, *mid, *result = NULL; local
406 min = table->maps;
407 max = min + table->num_maps - 1;
409 while ( min <= max )
414 mid = min + ( ( max - min ) >> 1 );
427 if ( min == max )
431 min = mid + 1;
452 FT_UInt min = 0; local
459 while ( min < ma
[all...]
/external/openssh/openbsd-compat/
H A Dbsd-snprintf.c185 char *value, int flags, int min, int max);
187 intmax_t value, int base, int min, int max, int flags);
189 LDOUBLE fvalue, int min, int max, int flags);
198 int min; local
209 currlen = flags = cflags = min = 0;
254 min = 10*min + char_to_int (ch);
257 min = va_arg (args, int);
334 value, 10, min, max, flags) == -1)
354 8, min, ma
514 fmtstr(char *buffer, size_t *currlen, size_t maxlen, char *value, int flags, int min, int max) argument
555 fmtint(char *buffer, size_t *currlen, size_t maxlen, intmax_t value, int base, int min, int max, int flags) argument
715 fmtfp(char *buffer, size_t *currlen, size_t maxlen, LDOUBLE fvalue, int min, int max, int flags) argument
[all...]
/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Ddfa.py49 eot, eof, min, max, accept, special, transition
57 self.min = min
95 #print "range = %d..%d" % (self.min[s], self.max[s])
97 if c >= self.min[s] and c <= self.max[s]:
99 snext = self.transition[s][c-self.min[s]]
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/
H A DStatisticalSummaryValues.java48 private final double min; field in class:StatisticalSummaryValues
60 * @param min the minimum value
64 double max, double min, double sum) {
70 this.min = min;
89 * @return Returns the min.
92 return min;
176 outBuffer.append("min: ").append(getMin()).append(endl);
63 StatisticalSummaryValues(double mean, double variance, long n, double max, double min, double sum) argument
/external/iptables/extensions/
H A Dlibip6t_ah.c54 print_spis(const char *name, uint32_t min, uint32_t max, argument
59 if (min != 0 || max != 0xFFFFFFFF || invert) {
60 if (min == max)
61 printf("%s:%s%u", name, inv, min);
63 printf("%ss:%s%u:%u", name, inv, min, max);
/external/libxml2/include/libxml/
H A Dxmlautomata.h81 int min,
90 int min,
98 int min,
107 int min,
131 int min,
/external/boringssl/src/crypto/bn/
H A Dadd.c103 int max, min, dif; local
113 min = b->top;
114 dif = max - min;
126 carry = bn_add_words(rp, ap, bp, min);
127 rp += min;
128 ap += min;
129 bp += min;
260 int max, min, dif; local
265 min = b->top;
266 dif = max - min;
[all...]
/external/freetype/src/base/
H A Dftbbox.c144 /* min :: The address of the current minimum. */
152 FT_Pos* min,
164 if ( y2 < *min )
165 *min = y2;
245 /* min :: The address of the current minimum. */
347 FT_Pos* min,
359 if ( p2 < *min || p3 < *min )
360 *min -= cubic_peak( *min
149 BBox_Conic_Check( FT_Pos y1, FT_Pos y2, FT_Pos y3, FT_Pos* min, FT_Pos* max ) argument
343 BBox_Cubic_Check( FT_Pos p1, FT_Pos p2, FT_Pos p3, FT_Pos p4, FT_Pos* min, FT_Pos* max ) argument
[all...]
/external/pdfium/third_party/freetype/src/base/
H A Dftbbox.c144 /* min :: The address of the current minimum. */
152 FT_Pos* min,
164 if ( y2 < *min )
165 *min = y2;
245 /* min :: The address of the current minimum. */
344 FT_Pos* min,
356 if ( p2 < *min || p3 < *min )
357 *min -= cubic_peak( *min
149 BBox_Conic_Check( FT_Pos y1, FT_Pos y2, FT_Pos y3, FT_Pos* min, FT_Pos* max ) argument
340 BBox_Cubic_Check( FT_Pos p1, FT_Pos p2, FT_Pos p3, FT_Pos p4, FT_Pos* min, FT_Pos* max ) argument
[all...]

Completed in 807 milliseconds

1234567891011>>