Searched refs:max (Results 126 - 150 of 2317) sorted by relevance

1234567891011>>

/macosx-10.10/lukemftp-14/tnftp/libnetbsd/
H A Dsnprintf.c78 char *value, int min, int max, int flags);
80 LLONG value, int base, int min, int max, int flags);
82 LDOUBLE fvalue, int min, int max, int flags);
125 int max; local
133 max = -1;
195 if (max < 0)
196 max = 0;
197 max = 10 * max + char_to_int(ch);
200 max
372 fmtstr(char *buffer, size_t *currlen, size_t maxlen, char *value, int min, int max, int flags) argument
407 fmtint(char *buffer, size_t *currlen, size_t maxlen, LLONG value, int base, int min, int max, int flags) argument
529 fmtfp(char *buffer, size_t *currlen, size_t maxlen, LDOUBLE fvalue, int min, int max, int flags) argument
[all...]
/macosx-10.10/passwordserver_sasl-193/cyrus_sasl/lib/
H A Dsnprintf.c79 char *value, int flags, int min, int max);
81 long value, int base, int min, int max, int flags);
83 long double fvalue, int min, int max, int flags);
124 int max; local
132 max = -1;
204 if (max < 0)
205 max = 0;
206 max = 10*max + char_to_int (ch);
211 max
370 fmtstr(char *buffer, size_t *currlen, size_t maxlen, char *value, int flags, int min, int max) argument
409 fmtint(char *buffer, size_t *currlen, size_t maxlen, long value, int base, int min, int max, int flags) argument
534 fmtfp(char *buffer, size_t *currlen, size_t maxlen, long double fvalue, int min, int max, int flags) argument
[all...]
/macosx-10.10/IOGraphics-485/tools/
H A Dprobe.c19 CGDisplayCount max; local
26 err = CGGetOnlineDisplayList(8, displayIDs, &max);
29 if(max > 8)
30 max = 8;
62 for(i = 0; i < max; i++ )
H A Dsetdparam.c18 CGDisplayCount max; local
24 err = CGGetOnlineDisplayList(8, displayIDs, &max);
27 if(max > 8)
28 max = 8;
37 for(i = 0; i < max; i++, IOObjectRelease(service) )
/macosx-10.10/JavaScriptCore-7600.1.17/profiler/
H A DProfilerOrigin.h46 : m_bytecodeIndex(std::numeric_limits<unsigned>::max())
51 : m_bytecodeIndex(std::numeric_limits<unsigned>::max() - 1)
59 ASSERT(m_bytecodeIndex < std::numeric_limits<unsigned>::max() - 1);
64 bool operator!() const { return m_bytecodeIndex == std::numeric_limits<unsigned>::max(); }
96 return m_bytecodeIndex == std::numeric_limits<unsigned>::max();
/macosx-10.10/tcl-105/tcl_ext/sdx/sdx/lib/app-sdx/
H A Dfetch.tcl73 set max 0
75 if {[string length $name] > $max} {
76 set max [string length $name]
84 incr max
86 puts [format "%-*s %s" $max $name: $value]
/macosx-10.10/OpenSSL098-52/src/crypto/bio/
H A Db_print.c183 int max; local
191 max = -1;
253 if (max < 0)
254 max = 0;
255 max = 10 * max + char_to_int(ch);
258 max = va_arg(args, int);
310 value, 10, min, max, flags);
337 min, max, flags);
345 fvalue, min, max, flag
433 fmtstr( char **sbuffer, char **buffer, size_t *currlen, size_t *maxlen, const char *value, int flags, int min, int max) argument
473 fmtint( char **sbuffer, char **buffer, size_t *currlen, size_t *maxlen, LLONG value, int base, int min, int max, int flags) argument
601 fmtfp( char **sbuffer, char **buffer, size_t *currlen, size_t *maxlen, LDOUBLE fvalue, int min, int max, int flags) argument
[all...]
/macosx-10.10/bc-21/bc/lib/
H A Dtestmul.c128 int min, max, mid; local
157 max = 500;
162 while (min < max) {
163 mid = (min+max)/2;
181 max = mid-1;
205 max = 500;
210 while (min < max) {
211 mid = (min+max)/2;
229 max = mid-1;
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/page/
H A Dgen_peg_mecpu.tcl159 return [2print $asmcode $mecode max [widths $asmcode max]]
163 upvar 1 $mv max
177 if {![info exists max($col)] || ($xlen > $max($col))} {set max($col) $xlen}
193 set max($mc) 0
199 upvar 1 $mv max
249 append line [string repeat " " [expr {$max($col) - $xlen}]]
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/pt/rde_critcl/
H A Dtc.c16 int max; /* Max number of bytes in the cache */ member in struct:RDE_TC_
33 tc->max = RDE_STACK_INITIAL_SIZE;
81 if ((tc->num + len) >= tc->max) {
82 int new = len + (tc->max ? (2 * tc->max) : RDE_STACK_INITIAL_SIZE);
85 tc->max = new;
90 ASSERT_BOUNDS(tc->num,tc->max);
91 ASSERT_BOUNDS(off,tc->max);
92 ASSERT_BOUNDS(off+len-1,tc->max);
/macosx-10.10/tcl-105/tk/tk/library/ttk/
H A Dspinbox.tcl102 # Limit $v to lie between $min and $max
104 proc ttk::spinbox::Limit {v min max} {
106 if {$v > $max} { return $max }
111 # Adjust $v to lie between $min and $max, wrapping if out of bounds.
113 proc ttk::spinbox::Wrap {v min max} {
114 if {$v < $min} { return $max }
115 if {$v > $max} { return $min }
122 proc ttk::spinbox::Adjust {w v min max} {
124 return [Wrap $v $min $max]
[all...]
/macosx-10.10/OpenSSL098-52/src/crypto/bn/
H A Dbn_add.c107 int max,min,dif; local
116 max = a->top;
118 dif = max - min;
120 if (bn_wexpand(r,max+1) == NULL)
123 r->top=max;
168 int max,min,dif; local
178 max = a->top;
180 dif = max - min;
188 if (bn_wexpand(r,max) == NULL) return(0);
237 memcpy(rp,ap,sizeof(*rp)*(max
265 int max; local
[all...]
/macosx-10.10/BerkeleyDB-21/db/test_micro/
H A Dreport62 max=`sort -k 2 -n -t ":" < $tmp | tail -1 | awk -F: '{print $2}'`
80 t=`echo "400 * ($avg/($max + $max/10))" | bc -l`
/macosx-10.10/tcl-105/tcl_ext/incrtcl/incrTcl/itk/generic/
H A Ditk_util.c45 olist->max = 10;
47 (unsigned)(olist->max*sizeof(Tcl_HashEntry*))
67 olist->len = olist->max = 0;
94 if (olist->len >= olist->max) {
95 size = olist->max*sizeof(Tcl_HashEntry*);
101 olist->max *= 2;
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/struct/
H A Dqueue_oo.tcl80 set max [expr {$qat + $count - 1 - [llength $qret]}]
81 set result [concat $qret [lrange $qadd 0 $max]]
83 set qat $max
86 set max [expr {$qat + $count - 1}]
87 set result [lrange $qret $qat $max]
88 set qat $max
/macosx-10.10/Security-57031.1.35/Security/libsecurity_apple_csp/open_ssl/bn/
H A Dbn_sqr.c85 int max,al; local
106 max=(al+al);
107 if (bn_wexpand(rr,max+1) == NULL) goto err;
151 if (bn_wexpand(tmp,max) == NULL) goto err;
156 if (bn_wexpand(tmp,max) == NULL) goto err;
161 rr->top=max;
162 if ((max > 0) && (rr->d[max-1] == 0)) rr->top--;
173 int i,j,max; local
176 max
[all...]
/macosx-10.10/ICU-531.30/icuSources/test/intltest/
H A Dtzregts.h53 UDate findTransitionBinary(const SimpleTimeZone& tz, UDate min, UDate max);
54 UDate findTransitionStepwise(const SimpleTimeZone& tz, UDate min, UDate max);
/macosx-10.10/JavaScriptCore-7600.1.17/dfg/
H A DDFGVariableAccessDataDump.cpp45 unsigned index = std::numeric_limits<unsigned>::max();
53 ASSERT(index != std::numeric_limits<unsigned>::max());
/macosx-10.10/WTF-7600.1.24/wtf/
H A DSaturatedArithmetic.h47 result = std::numeric_limits<int>::max() + (ua >> 31);
61 result = std::numeric_limits<int>::max() + (ua >> 31);
/macosx-10.10/WebCore-7600.1.25/html/
H A DHTMLMeterElement.idl25 [SetterRaisesException] attribute unrestricted double max;
/macosx-10.10/dtrace-147/test/tst/common/aggs/
H A Dtst.multiaggs2.d51 @d = max(i);
/macosx-10.10/dtrace-147/test/tst/common/printa/
H A Dtst.basics.d44 @d = max(1);
/macosx-10.10/ruby-106/ruby/benchmark/
H A Dbm_so_exception.rb57 max = NUM+1
58 while i < max
/macosx-10.10/ruby-106/ruby/test/thread/
H A Dtest_queue.rb43 assert_equal 1, q.max
50 assert_equal(2, q.max)
51 q.max = 1
52 assert_equal(1, q.max)
53 assert_raise(ArgumentError) { q.max = 0 }
54 assert_equal(1, q.max)
55 assert_raise(ArgumentError) { q.max = -1 }
56 assert_equal(1, q.max)
/macosx-10.10/swig-12/Source/Swig/
H A Dgetopt.c79 int max = check_input ? numargs - 1 : numargs; local
81 for (i = 1; i < max; i++) {

Completed in 397 milliseconds

1234567891011>>