Searched defs:min (Results 201 - 225 of 821) sorted by relevance

1234567891011>>

/external/guava/guava/src/com/google/common/primitives/
H A DUnsignedLongs.java83 public static long min(long... array) { method in class:UnsignedLongs
85 long min = flip(array[0]);
88 if (next < min) {
89 min = next;
92 return flip(min);
160 int minLength = Math.min(left.length, right.length);
/external/icu/icu4c/source/i18n/
H A Dwintzimpl.cpp62 int32_t hour, min, sec, mil; local
74 min = mil/60000;
80 standardDate.wMinute = min;
95 min = mil/60000;
101 daylightDate.wMinute = 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);
/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;
/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)
101 printf(":%s%u", inv, min);
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) {
165 print_type(min, numeric);
168 print_type(min, numeric);
/external/libnl/include/
H A Dnetlink-local.h123 #define min(x,y) ({ \ macro
/external/libvorbis/vq/
H A Ddistribution.c36 float min; local
79 max=min=_float32_unpack(c->q_min);
83 float val=c->quantlist[i]*delta+min;
87 printf("Minimum scalar value: %f\n",min);
145 printf("%+08f (%8ld) |",c->quantlist[ptr]*delta+min,countarray[ptr]);
169 sprintf(buf,"getting min/max (%.2f::%.2f). lines...",min,max);
174 min=max=code;
181 if(code<min)min
[all...]
H A Dvqgen.h51 long min; /* packed 24 bit float */ member in struct:__anon24764
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/include/linux/
H A Dkernel.h41 #ifndef min
42 #define min(x, y) ({ \ macro
/external/lldb/include/lldb/Interpreter/
H A DArgs.h386 const int64_t min = ~(max); local
387 return min <= sval64 && sval64 <= max;
/external/llvm/include/llvm/ADT/
H A DStringRef.h54 // Workaround PR5482: nearly all gcc 4.x miscompile StringRef and std::min()
55 // Changing the arg of min to be an integer, instead of a reference to an
57 static size_t min(size_t a, size_t b) { return a < b ? a : b; } function in class:llvm::StringRef
149 if (int Res = compareMemory(Data, RHS.Data, min(Length, RHS.Length)))
240 for (size_t i = min(From, Length), e = Length; i != e; ++i)
257 From = min(From, Length);
399 Start = min(Start, Length);
400 return StringRef(Data + Start, min(N, Length - Start));
428 Start = min(Start, Length);
429 End = min(ma
[all...]
/external/lzma/CPP/Windows/
H A DTime.cpp58 unsigned year, mon, day, hour, min, sec;
67 min = (unsigned)(v64 % 60);
113 dosTime = (year << 25) | (mon << 21) | (day << 16) | (hour << 11) | (min << 5) | (sec >> 1);
144 unsigned hour, unsigned min, unsigned sec, UInt64 &resSeconds)
148 day < 1 || day > 31 || hour > 23 || min > 59 || sec > 59)
159 resSeconds = ((UInt64)(numDays * 24 + hour) * 60 + min) * 60 + sec;
143 GetSecondsSince1601(unsigned year, unsigned month, unsigned day, unsigned hour, unsigned min, unsigned sec, UInt64 &resSeconds) argument
/external/mesa3d/src/gallium/drivers/r300/
H A Dr300_state_inlines.h263 static INLINE uint32_t r300_translate_tex_filters(int min, int mag, int mip, argument
268 switch (min) {
277 fprintf(stderr, "r300: Unknown texture filter %d\n", min);
/external/mesa3d/src/mesa/drivers/dri/r200/
H A Dr200_tex.c326 GLfloat bias, min; local
336 min = driQueryOptionb (&rmesa->radeon.optionCache, "no_neg_lod_bias") ?
338 bias = CLAMP( bias, min, 16.0 );
/external/mesa3d/src/mesa/drivers/dri/radeon/
H A Dradeon_tex.c284 GLfloat bias, min; local
292 min = driQueryOptionb (&rmesa->radeon.optionCache, "no_neg_lod_bias") ?
294 bias = CLAMP( *param, min, 4.0 );
/external/mesa3d/src/mesa/main/
H A Dapi_validate.c175 GLuint min, max; local
191 vbo_get_minmax_indices(ctx, &prim, &ib, &min, &max, 1);
193 if ((int)(min + basevertex) < 0 ||
/external/opencv/cvaux/src/
H A D_cvvectrack.h52 #undef min macro
55 #define min(a,b) ((a)>(b) ? (a) : (b)) macro
/external/openssl/crypto/evp/
H A Devp_key.c96 int EVP_read_pw_string_min(char *buf, int min, int len, const char *prompt, int verify) argument
105 UI_add_input_string(ui,prompt,0,buf,min,(len>=BUFSIZ)?BUFSIZ-1:len);
108 buff,min,(len>=BUFSIZ)?BUFSIZ-1:len,buf);
/external/openssl/crypto/pkcs12/
H A Dp12_key.c73 #ifndef min
74 #define min(a,b) ((a) < (b) ? (a) : (b)) macro
166 memcpy (out, Ai, min (n, u));
/external/oprofile/module/
H A Doprofile.h36 #undef min macro
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
H A Dfx_zlib_inftrees.c42 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; /* her
[all...]
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/base/
H A Dftbbox.c100 /* min :: The address of the current minimum. */
108 FT_Pos* min,
133 if ( y1 < *min ) *min = y1;
212 /* min :: The address of the current minimum. */
224 FT_Pos* min,
283 while ( q2 < *min || q3 < *min )
312 *min = q1;
317 *min
105 BBox_Conic_Check( FT_Pos y1, FT_Pos y2, FT_Pos y3, FT_Pos* min, FT_Pos* max ) argument
326 test_cubic_extrema( FT_Pos y1, FT_Pos y2, FT_Pos y3, FT_Pos y4, FT_Fixed u, FT_Pos* min, FT_Pos* max ) argument
370 BBox_Cubic_Check( FT_Pos y1, FT_Pos y2, FT_Pos y3, FT_Pos y4, FT_Pos* min, FT_Pos* max ) argument
[all...]
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/sfnt/
H A Dttkern.c235 FT_UInt min = 0; local
239 while ( min < max )
241 FT_UInt mid = ( min + max ) >> 1;
254 min = mid + 1;
/external/ppp/pppd/include/
H A Dpcap-int.h102 #ifndef min
103 #define min(a, b) ((a) > (b) ? (b) : (a)) macro

Completed in 1610 milliseconds

1234567891011>>