Searched refs:max (Results 1 - 25 of 1953) sorted by relevance

1234567891011>>

/macosx-10.10.1/dtrace-147/test/tst/common/aggs/
H A Derr.D_PROTO_LEN.maxnoarg.d31 * max() should not accept a call with no arguments
39 @a[1] = max();
H A Derr.D_PROTO_LEN.maxtoomany.d31 * max() should not more than one argument
39 @a[1] = max(1, 2);
H A Derr.D_AGG_SCALAR.maxnoarg.d32 * max() should not accept a non-scalar value
39 @a[pid] = max(probefunc);
H A Derr.D_AGG_REDEF.redef.d44 @a = max(0);
/macosx-10.10.1/dtrace-147/test/tst/common/clauses/
H A Derr.D_IDENT_UNDEF.aggfun.d39 @a = max(x);
/macosx-10.10.1/ruby-106/ruby/benchmark/
H A Dbm_loop_generator.rb0 max = 600000
4 gen = (1..max).each
10 gen = Generator.new((0..max))
H A Dbm_vm_thread_mutex1.rb6 max = 2000
7 lmax = max * max
21 raise r.to_s if r != max * max
H A Dbm_vm_thread_mutex2.rb6 max = 2000
7 lmax = (max * max)/2
21 raise r.to_s if r != max * max
H A Dbm_vm_thread_mutex3.rb6 max = 2000
7 (1..max).map{
10 while i<max
20 raise r.to_s if r != max * max
H A Dbm_io_file_create.rb5 max = 200_000
8 max.times{
H A Dbm_io_file_read.rb7 max = 200_000
12 max.times{
H A Dbm_io_file_write.rb7 max = 200_000
11 max.times{
H A Dbm_io_select2.rb6 max = Process.getrlimit(Process::RLIMIT_NOFILE)[0]
8 max = 64
10 puts "max fd: #{max} (results not apparent with <= 1024 max fd)"
12 ((max / 2) - 10).times do
H A Dbm_io_select3.rb6 max = Process.getrlimit(Process::RLIMIT_NOFILE)[0]
8 max = 64
10 puts "max fd: #{max} (results not apparent with <= 1024 max fd)"
12 (max - 10).times do
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/virtchannel_transform/
H A Dlimitsize.tcl46 proc ::tcl::transform::limitsize {chan max} {
47 ::chan push $chan [limitsize::implementation new $max]
61 if {$max > 0} {
62 incr max -[string length $data]
63 if {$max < 0} {
64 set max 0
71 return $max
77 set max $themax
81 variable max
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/ecma/Math/
H A D15.8.2.11.js24 ECMA Section: 15.8.2.11 Math.max(x, y)
41 var TITLE = "Math.max(x, y)";
53 array[item++] = new TestCase( SECTION, "Math.max.length", 2, Math.max.length );
55 array[item++] = new TestCase( SECTION, "Math.max()", -Infinity, Math.max() );
56 array[item++] = new TestCase( SECTION, "Math.max(void 0, 1)", Number.NaN, Math.max( void 0, 1 ) );
57 array[item++] = new TestCase( SECTION, "Math.max(void 0, void 0)", Number.NaN, Math.max( voi
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/tclx/tclx/tests/
H A Dmath.test46 Test math-2.1 {max tests} {
47 max 1 2 4 3
50 Test math-2.2 {max tests} {
51 max -68 65537.4 2 5
54 Test math-2.3 {max tests} {
55 max -68.7 2100000000 2 5
58 Test math-2.4 {max tests} {
59 max -68.7 -2
62 Test math-2.4.1 {max tests} {
63 max
[all...]
/macosx-10.10.1/ruby-106/ruby/sample/
H A Dsieve.rb2 max = Integer(ARGV.shift || 100)
4 for i in 2 .. max
8 for i in 2 .. Math.sqrt(max)
10 (i*i).step(max, i) do |j|
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/term/ansi/code/
H A Dmacros.tcl39 set max 0
49 if {$len > $max} {set max $len}
54 append ms [cd::tlc][textutil::repeat::strRepeat [cd::hl] $max][cd::trc]\n
56 append ms [cd::blc][textutil::repeat::strRepeat [cd::hl] $max][cd::brc]
63 set max 0
65 if {[set len [string length $l]] > $max} {set max $len}
67 append fs [cd::tlc][textutil::repeat::strRepeat [cd::hl] $max][cd::trc]\n
69 append fs [cd::vl]${l}[textutil::repeat::strRepeat " " [expr {$max
[all...]
/macosx-10.10.1/curl-83.1.2/curl/lib/
H A Dstrequal.c57 int curl_strnequal(const char *first, const char *second, size_t max) argument
60 return !strncasecmp(first, second, max);
62 return !strncmpi(first, second, max);
64 return !strnicmp(first, second, max);
66 while(*first && *second && max) {
70 max--;
74 if(0 == max)
/macosx-10.10.1/BerkeleyDB-21/db/test_micro/
H A Dreport.awk12 if (max < avg[i])
13 max = avg[i]
28 if (max != avg[i])
29 printf("%.0f%%", ((max - avg[i]) / max) * 100);
/macosx-10.10.1/postfix-255/postfix/src/global/
H A Dmail_conf_raw.c9 /* char *get_mail_conf_raw(name, defval, min, max)
13 /* int max;
15 /* char *get_mail_conf_raw_fn(name, defval, min, max)
19 /* int max;
77 int min, int max)
84 if (max && len > max)
86 (long) len, max, name, strval);
92 int min, int max)
100 check_mail_conf_raw(name, strval, min, max);
76 check_mail_conf_raw(const char *name, const char *strval, int min, int max) argument
91 get_mail_conf_raw(const char *name, const char *defval, int min, int max) argument
108 get_mail_conf_raw_fn(const char *name, stupid_indent_str defval, int min, int max) argument
[all...]
H A Dmail_conf_long.c9 /* int get_mail_conf_long(name, defval, min, max);
13 /* long max;
15 /* int get_mail_conf_long_fn(name, defval, min, max);
19 /* long max;
31 /* int get_mail_conf_long2(name1, name2, defval, min, max);
36 /* long max;
115 static void check_mail_conf_long(const char *name, long longval, long min, long max) argument
119 if (max && longval > max)
120 msg_fatal("invalid %s parameter value %ld > %ld", name, longval, max);
125 get_mail_conf_long(const char *name, long defval, long min, long max) argument
137 get_mail_conf_long2(const char *name1, const char *name2, long defval, long min, long max) argument
155 get_mail_conf_long_fn(const char *name, stupid_indent_long defval, long min, long max) argument
[all...]
H A Dmail_conf_str.c9 /* char *get_mail_conf_str(name, defval, min, max)
13 /* int max;
15 /* char *get_mail_conf_str_fn(name, defval, min, max)
19 /* int max;
31 /* char *get_mail_conf_str2(name, suffix, defval, min, max)
36 /* int max;
96 int min, int max)
103 if (max && len > max)
105 (long) len, max, nam
95 check_mail_conf_str(const char *name, const char *strval, int min, int max) argument
110 get_mail_conf_str(const char *name, const char *defval, int min, int max) argument
125 get_mail_conf_str2(const char *name1, const char *name2, const char *defval, int min, int max) argument
146 get_mail_conf_str_fn(const char *name, stupid_indent_str defval, int min, int max) argument
[all...]
/macosx-10.10.1/ruby-106/ruby/ext/-test-/old_thread_select/
H A Dold_thread_select.c5 static fd_set * array2fdset(fd_set *fds, VALUE ary, int *max) argument
20 if (fd >= *max)
21 *max = fd + 1;
28 static void fdset2array(VALUE dst, fd_set *fds, int max) argument
34 for (i = 0; i < max; i++) {
48 int max = 0; local
54 rp = array2fdset(&rfds, r, &max);
55 wp = array2fdset(&wfds, w, &max);
56 ep = array2fdset(&efds, e, &max);
57 rc = rb_thread_select(max, r
[all...]

Completed in 148 milliseconds

1234567891011>>