Searched refs:max (Results 76 - 100 of 2317) sorted by relevance

1234567891011>>

/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/virtchannel_base/
H A Dvariable.tcl100 set max [string length $content]
101 if {$at >= $max} {
107 if {$last >= $max} {
138 set max [string length $content]
142 end { set newloc [expr {$max + $offset - 1}] }
150 } elseif {$newloc >= $max} {
153 append content [binary format @[expr {$newloc - $max}]]
/macosx-10.10/JavaScriptCore-7600.1.17/dfg/
H A DDFGScoreBoard.h49 m_used.fill(max(), nextMachineLocal);
61 // For every entry in the used list the use count of the virtual register should be zero, or max, due to it being a preserved local.
63 ASSERT(!m_used[i] || m_used[i] == max());
84 m_highWatermark = std::max(m_highWatermark, static_cast<unsigned>(index) + 1);
91 m_highWatermark = std::max(m_highWatermark, static_cast<unsigned>(next) + 1);
104 ASSERT(m_used[index] != max());
139 if (m_used[i] == max())
149 if (m_free.contains(i) && m_used[i] != max()) {
160 static uint32_t max() { return std::numeric_limits<uint32_t>::max(); } function in class:JSC::DFG::ScoreBoard
[all...]
H A DDFGOSRExitJumpPlaceholder.h42 : m_index(std::numeric_limits<unsigned>::max())
55 bool operator!() const { return m_index == std::numeric_limits<unsigned>::max(); }
/macosx-10.10/postfix-255/postfix/src/global/
H A Dmail_conf_time.c9 /* int get_mail_conf_time(name, defval, min, max);
13 /* int max;
26 /* int get_mail_conf_time2(name1, name2, defval, def_unit, min, max);
32 /* int max;
108 static void check_mail_conf_time(const char *name, int intval, int min, int max) argument
112 if (max && intval > max)
113 msg_fatal("invalid %s: %d (max %d)", name, intval, max);
137 int get_mail_conf_time(const char *name, const char *defval, int min, int max) argument
153 get_mail_conf_time2(const char *name1, const char *name2, int defval, int def_unit, int min, int max) argument
[all...]
/macosx-10.10/CPANInternal-159.1/Perl4-CoreLibs-0.003/lib/
H A Dlook.pl14 local($max,$min,$mid,$_);
20 $max = int($size / $blksize);
21 while ($max - $min > 1) {
22 $mid = int(($max + $min) / 2);
33 $max = $mid;
/macosx-10.10/Security-57031.1.35/Security/libsecurity_apple_csp/open_ssl/bn/
H A Dbn_add.c128 int max,min; local
137 max=a->top;
140 if (bn_wexpand(r,max+1) == NULL)
143 r->top=max;
159 while (i < max)
169 if ((i >= max) && carry)
177 for (; i<max; i++)
180 /* memcpy(rp,ap,sizeof(*ap)*(max-i));*/
187 int max,min; local
203 max
278 int max; local
[all...]
/macosx-10.10/WebCore-7600.1.25/html/
H A DHTMLMeterElement.cpp95 double HTMLMeterElement::max() const function in class:WebCore::HTMLMeterElement
97 return std::max(parseToDoubleForNumberType(getAttribute(maxAttr), std::max(1.0, min())), min());
100 void HTMLMeterElement::setMax(double max, ExceptionCode& ec) argument
102 if (!std::isfinite(max)) {
106 setAttribute(maxAttr, AtomicString::number(max));
112 return std::min(std::max(value, min()), max());
127 return std::min(std::max(low, min()), max());
205 double max = this->max(); local
[all...]
H A DHTMLProgressElement.cpp99 return !std::isfinite(value) || value < 0 ? 0 : std::min(value, max());
111 double HTMLProgressElement::max() const function in class:WebCore::HTMLProgressElement
113 double max = parseToDoubleForNumberType(getAttribute(maxAttr)); local
114 return !std::isfinite(max) || max <= 0 ? 1 : max;
117 void HTMLProgressElement::setMax(double max, ExceptionCode& ec) argument
119 if (!std::isfinite(max)) {
123 setAttribute(maxAttr, AtomicString::number(max > 0 ? max
[all...]
/macosx-10.10/bind9-45.101/bind9/lib/isc/
H A Drandom.c103 isc_random_jitter(isc_uint32_t max, isc_uint32_t jitter) { argument
106 REQUIRE(jitter < max || (jitter == 0 && max == 0));
109 return (max);
112 return (max - rnd % jitter);
/macosx-10.10/ntp-92/lib/isc/
H A Drandom.c94 isc_random_jitter(isc_uint32_t max, isc_uint32_t jitter) { argument
95 REQUIRE(jitter < max);
97 return (max);
100 return (max - rand() % jitter);
102 return (max - arc4random() % jitter);
/macosx-10.10/zlib-55/zlib/examples/
H A Denough.c15 Fix bug for initial root table size == max - 1
124 len: 1..max - 1 (max == maximum code length in bits)
131 len is less than max, since the code completes immediately when len == max.
135 We build the array with length max-1 lists for the len index, with syms-3
167 local int max; /* maximum allowed bit length for the codes */ variable
176 #define INDEX(i,j,k) (((size_t)((i-1)>>1)*((i-2)>>1)+(j>>1)-1)*(max-1)+k-1)
196 len through max inclusive, coding syms symbols, with left bit patterns of
199 calculation. Uses the globals max an
[all...]
/macosx-10.10/OpenSSH-189/openssh/openbsd-compat/
H A Dbsd-snprintf.c183 char *value, int flags, int min, int max);
185 LLONG value, int base, int min, int max, int flags);
187 LDOUBLE fvalue, int min, int max, int flags);
197 int max; local
208 max = -1;
272 if (max < 0)
273 max = 0;
274 max = 10*max + char_to_int (ch);
277 max
472 fmtstr(char *buffer, size_t *currlen, size_t maxlen, char *value, int flags, int min, int max) argument
513 fmtint(char *buffer, size_t *currlen, size_t maxlen, LLONG value, int base, int min, int max, int flags) argument
673 fmtfp(char *buffer, size_t *currlen, size_t maxlen, LDOUBLE fvalue, int min, int max, int flags) argument
[all...]
/macosx-10.10/rsync-45/rsync/lib/
H A Dsnprintf.c199 char *value, int flags, int min, int max);
201 long value, int base, int min, int max, int flags);
203 LDOUBLE fvalue, int min, int max, int flags);
213 int max; local
224 max = -1;
288 if (max < 0)
289 max = 0;
290 max = 10*max + char_to_int (ch);
293 max
469 fmtstr(char *buffer, size_t *currlen, size_t maxlen, char *value, int flags, int min, int max) argument
507 fmtint(char *buffer, size_t *currlen, size_t maxlen, long value, int base, int min, int max, int flags) argument
658 fmtfp(char *buffer, size_t *currlen, size_t maxlen, LDOUBLE fvalue, int min, int max, int flags) argument
[all...]
/macosx-10.10/sudo-73/src/zlib/
H A Dinftrees.c42 unsigned min, max; /* minimum and maximum code lengths */ local
114 for (max = MAXBITS; max >= 1; max--)
115 if (count[max] != 0) break;
116 if (root > max) root = max;
117 if (max == 0) { /* no symbols to code at all */
126 for (min = 1; min < max; min++)
137 if (left > 0 && (type == CODES || max !
[all...]
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/support/devel/sak/util/
H A Danim.tcl13 variable max [llength $prefix]
20 variable max
26 incr n ; if {$n >= $max} {set n 0}
/macosx-10.10/tcl-105/tcl_ext/tklib/tklib/support/devel/sak/util/
H A Danim.tcl13 variable max [llength $prefix]
20 variable max
26 incr n ; if {$n >= $max} {set n 0}
/macosx-10.10/OpenSSH-189/osslshim/ossl/
H A Dossl-buffer.c40 b->max = 0;
55 memset(b->data, 0, (unsigned int)b->max);
72 if (str->max >= len) {
88 str->max = n;
108 if (str->max >= len) {
121 memcpy(ret, str->data, str->max);
122 memset(str->data, 0, str->max);
130 str->max = n;
/macosx-10.10/WebCore-7600.1.25/Modules/proximity/
H A DDeviceProximityEvent.idl26 [InitializedByEventConstructor] readonly attribute unrestricted double max;
/macosx-10.10/cups-408/cups/cups/
H A Draster-private.h39 * min/max macros...
42 # ifndef max
43 # define max(a,b) ((a) > (b) ? (a) : (b)) macro
44 # endif /* !max */
/macosx-10.10/dtrace-147/test/tst/common/printa/
H A Dtst.walltimestamp.d35 @bar = max(walltimestamp);
/macosx-10.10/dtrace-147/test/tst/common/speculation/
H A Derr.D_AGG_SPEC.SpeculateWithMax.d49 @Maximus["speculate"] = max(i);
/macosx-10.10/emacs-93/emacs/lisp/textmodes/
H A Dunderline.el44 (move-marker end1 (max start end))
59 (move-marker end1 (max start end))
/macosx-10.10/tcl-105/tcl_ext/tklib/tklib/examples/plotchart/
H A Drosenbrock.tcl31 # -max max : the maximum value in the range (default (1.0)
42 {max.arg 1.0 "the maximum value in the range"}
51 set max $params(max)
52 if {$min > $max} then {
53 error "The minimum value is $min but the maximum value is $max"
58 set step [expr {($max-$min)/($nb-1)}]
72 if {$current > $max} then {
84 set xvec [linspace -min -2.0 -max 2.
[all...]
/macosx-10.10/BerkeleyDB-21/db/test/
H A Dtest109.tcl86 -init 0 -min 100 -max 0 $db $key]} res
87 error_check_good max>min [is_substr $errorCode EINVAL] 1
89 puts "\tTest$tnum.b: Init can't be out of the min-max range."
92 -init 101 -min 0 -max 100 $db $key]} res
97 set max 100
98 foreach { init inc } { $min -inc $max -dec } {
100 test_sequence $env $db $key $min $max $init $inc
107 set max 99
115 $min $max $init $inc $csize
128 set max 9
[all...]
/macosx-10.10/adv_cmds-158/mklocale/
H A Dyacc.y178 $$->max = $1;
185 $$->max = $3;
192 $$->max = $2;
199 $$->max = $4;
208 $$->max = $2;
216 $$->max = $3;
224 $$->max = $4;
232 $$->max = $5;
361 for (i = list->min; i <= list->max; ++i) {
365 tmp->max
[all...]

Completed in 402 milliseconds

1234567891011>>