Searched defs:max (Results 276 - 300 of 1129) sorted by relevance

<<11121314151617181920>>

/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.cpp20 #ifdef max
21 #undef max macro
145 // check max
146 VERIFY_IS_APPROX( m1.cwise().max(m2), m2.cwise().max(m1) );
147 VERIFY_IS_APPROX( m1.cwise().max(m1-mones), m1 );
148 VERIFY_IS_APPROX( m1.cwise().max(m1+mones), m1+mones );
161 VERIFY( (m1.cwise().max(m2).cwise() >= m2).all() );
163 VERIFY( (m1.cwise().max(m2).cwise() > (m1-mones)).all() );
/external/fio/engines/
H A Dguasi.c83 unsigned int max, 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, struct timespec *t) argument
H A Dsolarisaio.c76 unsigned int max, struct timespec *t)
75 fio_solarisaio_getevents(struct thread_data *td, unsigned int min, unsigned int max, 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/guava/guava/src/com/google/common/primitives/
H A DUnsignedInts.java102 public static int max(int... array) { method in class:UnsignedInts
104 int max = flip(array[0]);
107 if (next > max) {
108 max = next;
111 return flip(max);
H A DUnsignedLongs.java103 public static long max(long... array) { method in class:UnsignedLongs
105 long max = flip(array[0]);
108 if (next > max) {
109 max = next;
112 return flip(max);
/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);
/external/icu/icu4c/source/test/perf/charperf/
H A Dcharperf.h36 CharPerfFunction(CharPerfFn func, UChar32 min, UChar32 max) argument
40 MAX_ = max;
66 StdLibCharPerfFunction(StdLibCharPerfFn func, wchar_t min, wchar_t max) argument
70 MAX_ = max;
/external/icu/icu4c/source/tools/toolutil/
H A Ddenseranges.cpp28 LargestGaps(int32_t max) : maxLength(max<=kCapacity ? max : kCapacity), length(0) {} argument
/external/iptables/extensions/
H A Dlibip6t_frag.c93 print_ids(const char *name, uint32_t min, uint32_t max, argument
98 if (min != 0 || max != 0xFFFFFFFF || invert) {
100 if (min == max)
103 printf("s:%s%u:%u", inv, min, max);
H A Dlibip6t_mh.c122 "Invalid MH type range (min > max)");
157 static void print_types(uint8_t min, uint8_t max, int invert, int numeric) argument
161 if (min != 0 || max != 0xFF || invert) {
163 if (min == max) {
170 print_type(max, numeric);
/external/junit/src/org/junit/experimental/max/
H A DMaxHistory.java1 package org.junit.experimental.max;
/external/libnl/include/
H A Dnetlink-local.h129 #define max(x,y) ({ \ macro
/external/libvorbis/vq/
H A Ddistribution.c37 float max; local
79 max=min=_float32_unpack(c->q_min);
84 if(val>max)max=val;
88 printf("Maximum scalar value: %f\n",max);
169 sprintf(buf,"getting min/max (%.2f::%.2f). lines...",min,max);
174 min=max=code;
182 if(code>max)max
[all...]
H A Dhuffbuild.c25 static int getval(FILE *in,int begin,int n,int group,int max){ argument
44 return(getval(in,begin,n,group,max));
46 val = val*max+(int)v;
H A Dvqgen.h42 float *max; member in struct:vqgen
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/include/linux/
H A Dkernel.h33 #ifndef max
34 #define max(x, y) ({ \ macro
/external/lldb/include/lldb/Interpreter/
H A DArgs.h372 const uint64_t max = ((uint64_t)1 << (uint64_t)(total_byte_size * 8)) - 1; local
373 return uval64 <= max;
385 const int64_t max = ((int64_t)1 << (uint64_t)(total_byte_size * 8 - 1)) - 1; local
386 const int64_t min = ~(max);
387 return min <= sval64 && sval64 <= max;

Completed in 1145 milliseconds

<<11121314151617181920>>