Searched refs:min (Results 251 - 275 of 1926) sorted by relevance

<<11121314151617181920>>

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/io/
H A DMemoryDataStore.java65 int readLength = Math.min(b.length, buf.length - position);
78 int readLength = Math.min(len, buf.length - position);
91 int skipLength = (int)Math.min(n, buf.length - position);
/external/svox/pico/lib/
H A Dpicodbg.h224 #define PICODBG_ASSERT_RANGE(val, min, max) \
225 PICODBG_ASSERT(((val) >= (min)) && ((val) <= (max)))
290 #define PICODBG_ASSERT_RANGE(val, min, 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
67 else if(*current < *min)
68 min = current;
75 find_extremes(RandomAccessIter current, RandomAccessIter last, RandomAccessIter & max, RandomAccessIter & min, compare comp) argument
77 min = max = current;
81 else if(comp(*current, *min))
82 min = current;
130 RandomAccessIter max, min; 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/deqp/modules/gles3/functional/
H A Des3fImplementationLimitTests.cpp60 inline bool compare (const T& min, const T& reported) { return min <= reported; } argument
74 float min; member in struct:deqp::gles3::Functional::LimitQuery::FloatRange
76 FloatRange (float min_, float max_) : min(min_), max(max_) {}
79 std::ostream& operator<< (std::ostream& str, const FloatRange& range) { return str << range.min << ", " << range.max; }
161 bool compare<Boolean> (const Boolean& min, const Boolean& reported) argument
163 return !min.value || (min.value && reported.value);
167 bool compare<NegInt> (const NegInt& min, const NegInt& reported) argument
170 return reported.value <= min
174 compare(const FloatRange& min, const FloatRange& reported) argument
180 compare(const AlignmentInt& min, const AlignmentInt& reported) argument
[all...]
/external/eigen/Eigen/src/Core/products/
H A DTriangularMatrixMatrix.h115 Index diagSize = (std::min)(_rows,_depth);
124 Index mc = (std::min)(rows,blocking.mc()); // cache block size along the M direction
149 Index actual_kc = (std::min)(IsLower ? k2 : depth-k2, kc);
172 Index actualPanelWidth = std::min<Index>(actual_kc-k1, SmallPanelWidth);
207 Index end = IsLower ? rows : (std::min)(actual_k2,rows);
210 const Index actual_mc = (std::min)(i2+mc,end)-i2;
256 Index diagSize = (std::min)(_cols,_depth);
265 Index mc = (std::min)(rows,blocking.mc()); // cache block size along the M direction
291 Index actual_kc = (std::min)(IsLower ? depth-k2 : k2, kc);
302 Index rs = IsLower ? (std::min)(col
[all...]
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3cyclicdfa.h79 const ANTLR3_INT32 * const min; member in struct:ANTLR3_CYCLIC_DFA_struct
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DDFA.cs63 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/
H A DDFA.cs58 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/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DDFA.java44 protected char[] min; field in class:DFA
98 if (c>=min[s] && c<=max[s]) {
99 int snext = transition[s][c-min[s]]; // move to next state
135 System.err.println("min["+s+"]="+min[s]);
/external/antlr/antlr-3.4/runtime/Ruby/test/unit/
H A Dtest-dfa.rb27 dfa.min.should == DFASubclass::MIN
/external/ceres-solver/internal/ceres/
H A Dsummary_utils.cc45 summary->final_cost = min(iteration_summary.cost, summary->final_cost);
/external/clang/test/Modules/
H A Dcxx-irgen.cpp35 int c = min(1, 2);
/external/conscrypt/src/main/java/org/conscrypt/
H A DOpenSSLBIOSink.java46 int maxLength = Math.min(available(), (int) byteCount);
/external/easymock/src/org/easymock/
H A DIExpectationSetters.java120 * Expect the last invocation between <code>min</code> and
123 * @param min
129 IExpectationSetters<T> times(int min, int max); argument
/external/eigen/Eigen/src/plugins/
H A DArrayCwiseBinaryOps.h23 /** \returns an expression of the coefficient-wise min of \c *this and \a other
30 EIGEN_MAKE_CWISE_BINARY_OP(min,internal::scalar_min_op)
32 /** \returns an expression of the coefficient-wise min of \c *this and scalar \a other
39 min function
41 (min)
45 return (min)(Derived::PlainObject::Constant(rows(), cols(), other));
53 * \sa min()
59 * \sa min()
/external/eigen/unsupported/Eigen/src/LevenbergMarquardt/
H A DLMpar.h50 const Scalar dwarf = (std::numeric_limits<Scalar>::min)();
99 paru = dwarf / (std::min)(m_delta,Scalar(0.1));
104 par = (std::min)(par,paru);
147 paru = (std::min)(paru,par);
/external/fio/
H A Dghelpers.h9 GtkWidget *create_spinbutton(GtkWidget *hbox, double min, double max, double defval);
H A Dstat.h238 extern int calc_lat(struct io_stat *is, unsigned long *min, unsigned long *max, double *mean, double *dev);
245 static inline int usec_to_msec(unsigned long *min, unsigned long *max, argument
248 if (*min > 1000 && *max > 1000 && *mean > 1000.0 && *dev > 1000.0) {
249 *min /= 1000;
/external/fonttools/Lib/fontTools/misc/
H A DfixedTools.py36 length = min(len(lo), len(hi))
/external/fonttools/Tools/fontTools/misc/
H A DfixedTools.py36 length = min(len(lo), len(hi))
/external/guava/guava-gwt/test-super/com/google/common/primitives/super/com/google/common/primitives/
H A DSignedBytesTest.java111 SignedBytes.min();
118 assertEquals(LEAST, SignedBytes.min(LEAST));
119 assertEquals(GREATEST, SignedBytes.min(GREATEST));
120 assertEquals((byte) -128, SignedBytes.min(
/external/guava/guava-tests/test/com/google/common/primitives/
H A DSignedBytesTest.java114 SignedBytes.min();
121 assertEquals(LEAST, SignedBytes.min(LEAST));
122 assertEquals(GREATEST, SignedBytes.min(GREATEST));
123 assertEquals((byte) -128, SignedBytes.min(
/external/icu/icu4c/source/test/intltest/
H A Dcaltztst.cpp181 CalendarTimeZoneTest::date(int32_t y, int32_t m, int32_t d, int32_t hr, int32_t min, int32_t sec) argument
186 cal->set(1900 + y, m, d, hr, min, sec); // Add 1900 to follow java.util.Date protocol
200 CalendarTimeZoneTest::utcDate(int32_t y, int32_t m, int32_t d, int32_t hr, int32_t min, int32_t sec)
205 Date dt = date(y, m, d, hr, min, sec) +
219 CalendarTimeZoneTest::dateToFields(UDate date, int32_t& y, int32_t& m, int32_t& d, int32_t& hr, int32_t& min, int32_t& sec) argument
229 min = cal->get(UCAL_MINUTE, status);
H A Dtzrulets.h49 int32_t hour=0, int32_t min=0, int32_t sec=0, int32_t msec=0);
/external/icu/icu4c/source/test/perf/charperf/
H A Dcharperf.h36 CharPerfFunction(CharPerfFn func, UChar32 min, UChar32 max) argument
39 MIN_ = min;
66 StdLibCharPerfFunction(StdLibCharPerfFn func, wchar_t min, wchar_t max) argument
69 MIN_ = min;

Completed in 701 milliseconds

<<11121314151617181920>>