Searched defs:max (Results 226 - 250 of 1064) sorted by relevance

1234567891011>>

/external/boringssl/src/ssl/
H A Ds3_both.c316 * maximum acceptable body length |max|. The first four bytes (msg_type and
320 long max, enum ssl_hash_message_t hash_message, int *ok) {
386 if (l > (unsigned long)max) {
319 ssl3_get_message(SSL *ssl, int header_state, int body_state, int msg_type, long max, enum ssl_hash_message_t hash_message, int *ok) argument
/external/clang/test/Analysis/
H A Dadditive-folding.cpp145 int max = INT_MAX; local
149 clang_analyzer_eval(a == max && b != min); // expected-warning{{FALSE}}
153 int max = INT_MAX; local
156 clang_analyzer_eval((a + 2) <= (max + 1LL)); // expected-warning{{TRUE}}
158 clang_analyzer_eval((a + 2LL) <= max); // expected-warning{{UNKNOWN}}
162 int max = INT_MAX; local
165 clang_analyzer_eval((a + 2) < (max + 1LL)); // expected-warning{{TRUE}}
171 int max = INT_MAX; local
173 clang_analyzer_eval((a + 2) != (max + 1LL)); // expected-warning{{TRUE}}
174 clang_analyzer_eval((a + 2LL) == (max
[all...]
/external/clang/test/SemaCXX/
H A Di-c-e-cxx.cpp43 unsigned max = 80 / x; local
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_defs.h119 T max(T a, T b) { function in namespace:__tsan
/external/deqp/framework/delibs/decpp/
H A DdeRandom.hpp48 float getFloat (float min, float max);
49 double getDouble (double min, double max);
50 int getInt (int min, int max);
79 inline float Random::getFloat (float min, float max) argument
81 DE_ASSERT(min <= max);
82 return min + (max-min)*getFloat();
85 inline double Random::getDouble (double min, double max) argument
87 DE_ASSERT(min <= max);
88 return min + (max-min)*getDouble();
91 inline int Random::getInt (int min, int max) argument
[all...]
/external/deqp/modules/gles2/functional/
H A Des2fImplementationLimitTests.cpp66 float max; 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; }
137 return reported.min <= min.min && min.max <= reported.max;
/external/deqp/modules/gles31/functional/
H A Des31fPrimitiveBoundingBoxTests.cpp63 tcu::Vec4 max; member in struct:deqp::gles31::Functional::__anon4432::BoundingBox
67 * concatenating 4-component min and max vectors.
79 return max[ndx-4];
90 tcu::Vec3 max; member in struct:deqp::gles31::Functional::__anon4432::ProjectedBBox
95 const float wMin = de::max(0.0f, bbox.min.w()); // clamp to w=0 as extension requires
96 const float wMax = de::max(0.0f, bbox.max.w());
101 retVal.max = tcu::max(bbox.max
[all...]
/external/e2fsprogs/e2fsck/
H A Dprofile_helpers.c45 int max; member in struct:profile_string_list
54 list->max = 10;
55 list->list = malloc(list->max * sizeof(char *));
81 list->num = list->max = 0;
93 if (list->num+1 >= list->max) {
94 newmax = list->max + 10;
98 list->max = newmax;
H A Dregion.c30 region_addr_t max; member in struct:region_struct
34 region_t region_create(region_addr_t min, region_addr_t max) argument
43 region->max = max;
65 if ((start < region->min) || (end > region->max))
161 fprintf(f, "Printing region (min=%d. max=%d)\n\t", region->min,
162 region->max);
/external/e2fsprogs/lib/ext2fs/
H A Dext2fsP.h93 __u64 max; member in struct:ext2fs_numeric_progress_struct
100 const char *label, __u64 max);
/external/eigen/Eigen/src/Eigen2Support/Geometry/
H A DAlignedBox.h61 m_min.setConstant( (std::numeric_limits<Scalar>::max)());
62 m_max.setConstant(-(std::numeric_limits<Scalar>::max)());
70 inline const VectorType& (max)() const { return m_max; } function in class:Eigen::AlignedBox
72 inline VectorType& (max)() { return m_max; } function in class:Eigen::AlignedBox
80 { return (m_min.cwise()<=(b.min)()).all() && ((b.max)().cwise()<=m_max).all(); }
84 { m_min = (m_min.cwise().min)(p); m_max = (m_max.cwise().max)(p); return *this; }
88 { m_min = (m_min.cwise().min)(b.m_min); m_max = (m_max.cwise().max)(b.m_max); return *this; }
92 { m_min = (m_min.cwise().max)(b.m_min); m_max = (m_max.cwise().min)(b.m_max); return *this; }
129 m_max = (other.max)().template cast<Scalar>();
/external/eigen/test/
H A Dcwiseop.cpp22 #ifdef max
23 #undef max macro
147 // check max
148 VERIFY_IS_APPROX( m1.cwise().max(m2), m2.cwise().max(m1) );
149 VERIFY_IS_APPROX( m1.cwise().max(m1-mones), m1 );
150 VERIFY_IS_APPROX( m1.cwise().max(m1+mones), m1+mones );
163 VERIFY( (m1.cwise().max(m2).cwise() >= m2).all() );
165 VERIFY( (m1.cwise().max(m2).cwise() > (m1-mones)).all() );
/external/fio/engines/
H A Dglusterfs_async.c23 unsigned int max, const struct timespec *t)
44 if (events >= max)
22 fio_gf_getevents(struct thread_data *td, unsigned int min, unsigned int max, const struct timespec *t) argument
H A Dguasi.c83 unsigned int max, const struct timespec *t)
89 GDBG_PRINT(("fio_guasi_getevents(%d, %d)\n", min, max));
92 if (max > ld->max_reqs)
93 max = ld->max_reqs;
101 max - n, timeo);
82 fio_guasi_getevents(struct thread_data *td, unsigned int min, unsigned int max, const struct timespec *t) argument
H A Dsolarisaio.c76 unsigned int max, const struct timespec *t)
75 fio_solarisaio_getevents(struct thread_data *td, unsigned int min, unsigned int max, const struct timespec *t) argument
/external/fio/
H A Dioengines.c222 int td_io_getevents(struct thread_data *td, unsigned int min, unsigned int max, argument
242 if (max > td->cur_depth)
243 max = td->cur_depth;
244 if (min > max)
245 max = min;
248 if (max && td->io_ops->getevents)
249 r = td->io_ops->getevents(td, min, max, t);
/external/freetype/src/sfnt/
H A Dttkern.c236 FT_UInt max = num_pairs; local
239 while ( min < max )
241 FT_UInt mid = ( min + max ) >> 1;
256 max = mid;
/external/gemmlowp/internal/
H A Doutput_neon.h224 const int32x4_t max = vdupq_n_s32(output_stage.max); local
225 return vminq_s32(vmaxq_s32(input, min), max);
/external/guava/guava/src/com/google/common/primitives/
H A DUnsignedBytes.java154 public static byte max(byte... array) { method in class:UnsignedBytes
156 int max = toInt(array[0]);
159 if (next > max) {
160 max = next;
163 return (byte) max;
H A DUnsignedInts.java106 public static int max(int... array) { method in class:UnsignedInts
108 int max = flip(array[0]);
111 if (next > max) {
112 max = next;
115 return flip(max);
H A DUnsignedLongs.java107 public static long max(long... array) { method in class:UnsignedLongs
109 long max = flip(array[0]);
112 if (next > max) {
113 max = next;
116 return flip(max);
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/
H A DUnicodeMapTest.java162 private SortedMap<String, Integer> fillRandomMap(Random rand, int max, SortedMap<String, Integer> test) { argument
164 max = rand.nextInt(max);
165 for (int i = 0; i < max; ++i) {
/external/icu/icu4c/source/layout/
H A DArabicLayoutEngine.cpp70 le_int32 max, le_bool rightToLeft, LEUnicode *&outChars,
77 if (chars == NULL || offset < 0 || count < 0 || max < 0 || offset >= max || offset + count > max) {
102 ArabicShaping::shape(chars, offset, count, max, rightToLeft, glyphStorage);
69 characterProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft, LEUnicode *&outChars, LEGlyphStorage &glyphStorage, LEErrorCode &success) argument
H A Dloengine.cpp43 le_int32 max,
56 return le->layoutChars(chars, offset, count, max, rightToLeft, x, y, *success);
39 le_layoutChars(le_engine *engine, const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft, float x, float y, LEErrorCode *success) argument
/external/icu/icu4c/source/test/intltest/
H A Dtsputil.cpp182 PUtilTest::maxMinTest(double a, double b, double exp, UBool max) argument
186 if(max)
195 if(max)
196 errln(UnicodeString(" max(") + a + ", " + b + ") is " + result + ", expected " + exp);
201 if(max)
202 errln(UnicodeString("FAIL: max(") + a + ", " + b + ") is " + result + ", expected " + exp);
207 if(max)
208 logln(UnicodeString("OK: max(") + a + ", " + b + ") is " + result);

Completed in 775 milliseconds

1234567891011>>