Searched defs:min (Results 51 - 75 of 821) sorted by last modified time

1234567891011>>

/external/tcpdump/
H A Dprint-chdlc.c149 u_int sec,min,hrs,days; local
186 min = sec / 60; sec -= min * 60;
187 hrs = min / 60; min -= hrs * 60;
189 printf(", link uptime=%ud%uh%um%us",days,hrs,min,sec);
H A Dprint-icmp.c107 #define ICMP_ADVLENMIN (8 + sizeof (struct ip) + 8) /* min */
321 u_int msec,sec,min,hrs; local
327 min = sec / 60; sec -= min * 60;
328 hrs = min / 60; min -= hrs * 60;
329 snprintf(buf, sizeof(buf), "%02u:%02u:%02u.%03u",hrs,min,sec,msec);
/external/tinyalsa/
H A Dpcm.c170 i->min = val;
178 return i->min;
204 i->min = val;
234 i->min = 0;
776 unsigned int min, max; local
790 min = pcm_params_get_min(params, PCM_PARAM_RATE);
792 STRLOG(string, offset, size, " Rate:\tmin=%uHz\tmax=%uHz\n", min, max);
793 min = pcm_params_get_min(params, PCM_PARAM_CHANNELS);
795 STRLOG(string, offset, size, " Channels:\tmin=%u\t\tmax=%u\n", min, max);
796 min
[all...]
H A Dtinymix.c129 int min, max; local
170 min = mixer_ctl_get_range_min(ctl);
172 printf(" (range %d->%d)", min, max);
H A Dtinypcminfo.c133 unsigned int min; local
183 min = pcm_params_get_min(params, PCM_PARAM_RATE);
185 printf(" Rate:\tmin=%uHz\tmax=%uHz\n", min, max);
186 min = pcm_params_get_min(params, PCM_PARAM_CHANNELS);
188 printf(" Channels:\tmin=%u\t\tmax=%u\n", min, max);
189 min = pcm_params_get_min(params, PCM_PARAM_SAMPLE_BITS);
191 printf(" Sample bits:\tmin=%u\t\tmax=%u\n", min, max);
192 min = pcm_params_get_min(params, PCM_PARAM_PERIOD_SIZE);
194 printf(" Period size:\tmin=%u\t\tmax=%u\n", min, max);
195 min
[all...]
H A Dtinyplay.c166 unsigned int min; local
170 min = pcm_params_get_min(params, param);
171 if (value < min) {
173 param_unit, min, param_unit);
/external/stlport/stlport/stl/
H A D_algobase.h127 // min and max
131 //In not ANSI mode Borland import min/max in global namespace which conflict
132 //with STLport min/max when user does a 'using namespace std' in its code
133 //(see test/unit/alg_test.cpp). To avoid this clash we simply import Borland min/max
135 using _STLP_VENDOR_STD::min;
139 inline const _Tp& (min)(const _Tp& __a, const _Tp& __b) { return __b < __a ? __b : __a; }
146 inline unsigned long (min) (unsigned long __a, unsigned long __b) { return __b < __a ? __b : __a; } function
152 inline const _Tp& (min)(const _Tp& __a, const _Tp& __b, _Compare __comp) { function
162 inline const _Tp (min)(const _Tp __a, const _Tp __b, _Compare __comp) { function
596 const int __result = memcmp(__first1, __first2, (min) (__len
[all...]
H A D_valarray.h337 value_type (min) () const { function in class:valarray
/external/stlport/stlport/stl/config/
H A D_como.h99 inline int min(int a, int b) { return a>b ? b : a; } function in namespace:std
H A D_watcom.h82 // Get rid of Watcom's min and max macros
83 #undef min macro
/external/svox/pico/lib/
H A Dpicotok.c642 static void tok_checkLimits (picodata_ProcessingUnit this, picoos_uint32 * value, picoos_uint32 min, picoos_uint32 max, picoos_uchar valueType[]) argument
644 if ((((*value) < min) || ((*value) > max))) {
646 if (((*value) < min)) {
647 (*value) = min;
658 static void tok_checkRealLimits (picodata_ProcessingUnit this, picoos_single * value, picoos_single min, picoos_single max, picoos_uchar valueType[])
660 if ((((*value) < min) || ((*value) > max))) {
662 if (((*value) < min)) {
663 (*value) = min;
/external/sqlite/dist/orig/
H A Dsqlite3.c1849 #define SQLITE_CONFIG_HEAP 8 /* void*, int nByte, int min */
2443 ** ^If M is the size of the prior allocation, then min(N,M) bytes
11607 #define WHERE_ORDERBY_MIN 0x0001 /* ORDER BY processing for min() func */
14670 ** min minimum allowed value of the integer
14682 int min; local
14690 min = va_arg(ap, int);
14702 if( val<min || val>max || (nextC!=0 && nextC!=*zDate) ){
[all...]
/external/sqlite/dist/
H A Dsqlite3.c1849 #define SQLITE_CONFIG_HEAP 8 /* void*, int nByte, int min */
2443 ** ^If M is the size of the prior allocation, then min(N,M) bytes
11607 #define WHERE_ORDERBY_MIN 0x0001 /* ORDER BY processing for min() func */
14670 ** min minimum allowed value of the integer
14682 int min; local
14690 min = va_arg(ap, int);
14702 if( val<min || val>max || (nextC!=0 && nextC!=*zDate) ){
[all...]
/external/sonivox/arm-hybrid-22k/lib_src/
H A Deas_fmsynth.c50 * with care. For example, min(x++,y++) will cause either x or y to be
53 #define min(a,b) ((a) < (b) ? (a) : (b)) macro
233 temp = min(temp, 32767);
461 temp = min(temp, 0);
/external/skia/samplecode/
H A DSampleBitmapRect.cpp57 static void bounce(SkScalar* value, SkScalar* delta, SkScalar min, SkScalar max) { argument
59 if (*value < min) {
60 *value = min;
H A DSampleClip.cpp56 static SkScalar randRange(SkRandom& rand, SkScalar min, SkScalar max) { argument
57 SkASSERT(min <= max);
58 return min + SkScalarMul(rand.nextUScalar1(), max - min);
H A DSampleCull.cpp101 static SkScalar nextScalarRange(SkRandom& rand, SkScalar min, SkScalar max) { argument
102 return min + SkScalarMul(rand.nextUScalar1(), max - min);
/external/skia/src/animator/
H A DSkDisplayRandom.h17 #ifdef min
18 #undef min macro
35 SkScalar min; member in class:SkDisplayRandom
H A DSkDrawColor.cpp28 SkScalar min = SkMinScalar(SkMinScalar(red, green), blue); local
32 SkScalar delta = value - min;
H A DSkMemberInfo.cpp167 static inline bool is_between(int c, int min, int max) argument
169 return (unsigned)(c - min) <= (unsigned)(max - min);
H A DSkParseSVGPath.cpp55 static inline bool is_between(int c, int min, int max) argument
57 return (unsigned)(c - min) <= (unsigned)(max - min);
H A DSkScript.cpp158 static inline bool is_between(int c, int min, int max) argument
160 return (unsigned)(c - min) <= (unsigned)(max - min);
H A DSkScriptTokenizer.cpp100 static inline bool is_between(int c, int min, int max) argument
102 return (unsigned)(c - min) <= (unsigned)(max - min);
/external/skia/src/core/
H A DSkColor.cpp37 unsigned min = SkMin32(r, SkMin32(g, b)); local
39 unsigned delta = max - min;
H A DSkDeviceProfile.cpp17 static float pin(float value, float min, float max) { argument
18 if (value < min) {
19 value = min;

Completed in 628 milliseconds

1234567891011>>