Searched refs:max (Results 201 - 225 of 2317) sorted by relevance

1234567891011>>

/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Models/
H A DColor.js385 var max = Math.max(r, g, b); variable
387 var diff = max - min;
388 var add = max + min;
390 if (min === max)
392 else if (r === max)
394 else if (g === max)
603 var max = Math.max(Math.max(
[all...]
/macosx-10.10/CPANInternal-159.1/Data-UUID-1.219/
H A Dptable.h80 size_t max; member in struct:ptable
90 t->max = 15;
93 PerlMemShared_calloc(t->max + 1, sizeof *t->ary));
109 ent = t->ary[hash & t->max];
132 const size_t oldsize = t->max + 1;
138 t->max = --newsize;
167 const size_t i = PTABLE_HASH(key) & t->max;
174 if (ent->next && t->items > t->max)
184 size_t i = t->max;
197 size_t i = t->max;
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/graphics/
H A DFloatRoundedRect.cpp93 m_topLeft.setWidth(std::max<float>(0, m_topLeft.width() + leftWidth));
94 m_topLeft.setHeight(std::max<float>(0, m_topLeft.height() + topWidth));
97 m_topRight.setWidth(std::max<float>(0, m_topRight.width() + rightWidth));
98 m_topRight.setHeight(std::max<float>(0, m_topRight.height() + topWidth));
101 m_bottomLeft.setWidth(std::max<float>(0, m_bottomLeft.width() + leftWidth));
102 m_bottomLeft.setHeight(std::max<float>(0, m_bottomLeft.height() + bottomWidth));
105 m_bottomRight.setWidth(std::max<float>(0, m_bottomRight.width() + rightWidth));
106 m_bottomRight.setHeight(std::max<float>(0, m_bottomRight.height() + bottomWidth));
179 float maxRadiusWidth = std::max(m_radii.topLeft().width() + m_radii.topRight().width(), m_radii.bottomLeft().width() + m_radii.bottomRight().width());
180 float maxRadiusHeight = std::max(m_radi
[all...]
H A DFloatRect.cpp80 float l = std::max(x(), other.x());
81 float t = std::max(y(), other.y());
113 float maxX = std::max(this->maxX(), other.maxX());
114 float maxY = std::max(this->maxY(), other.maxY());
136 float maxX = std::max(this->maxX(), p.x());
137 float maxY = std::max(this->maxY(), p.y());
154 float right = std::max(p0.x(), p1.x());
155 float bottom = std::max(p0.y(), p1.y());
161 // Helpers for 3- and 4-way max and min.
172 return std::max(st
[all...]
H A DIntRect.cpp64 int l = std::max(x(), other.x());
65 int t = std::max(y(), other.y());
95 int r = std::max(maxX(), other.maxX());
96 int b = std::max(maxY(), other.maxY());
116 int right = std::max(maxX(), other.maxX());
117 int bottom = std::max(maxY(), other.maxY());
H A DLayoutRect.cpp60 LayoutPoint newLocation(std::max(x(), other.x()), std::max(y(), other.y()));
84 LayoutPoint newMaxPoint(std::max(maxX(), other.maxX()), std::max(maxY(), other.maxY()));
101 LayoutPoint newMaxPoint(std::max(maxX(), other.maxX()), std::max(maxY(), other.maxY()));
/macosx-10.10/zsh-61/zsh/Src/
H A Dsignames2.awk19 if (0 + max < 0 + signum && signum < 60)
20 max = signum
63 printf "#define SIGCOUNT\t%d\n", max
75 for (i = 1; i <= 0 + max; i++)
97 for (i = 1; i <= 0 + max; i++)
/macosx-10.10/OpenSSH-189/osslshim/ossl-asn1/
H A Dcs-asn1-lib.c79 static int asn1_get_length(const unsigned char **pp,int *inf,long *rl,int max);
115 long max=omax; local
117 if (!max) goto err;
124 if (--max == 0) goto err;
130 if (--max == 0) goto err;
136 if (--max == 0) goto err;
142 if (--max == 0) goto err;
146 if (!asn1_get_length(&p,&inf,plength,(int)max)) goto err;
168 static int asn1_get_length(const unsigned char **pp, int *inf, long *rl, int max) argument
174 if (max
[all...]
/macosx-10.10/OpenSSL098-52/src/crypto/asn1/
H A Dasn1_lib.c65 static int asn1_get_length(const unsigned char **pp,int *inf,long *rl,int max);
101 long max=omax; local
103 if (!max) goto err;
110 if (--max == 0) goto err;
116 if (--max == 0) goto err;
122 if (--max == 0) goto err;
128 if (--max == 0) goto err;
132 if (!asn1_get_length(&p,&inf,plength,(int)max)) goto err;
154 static int asn1_get_length(const unsigned char **pp, int *inf, long *rl, int max) argument
160 if (max
[all...]
/macosx-10.10/emacs-93/emacs/lisp/calc/
H A Dcalc-comb.el399 (defun math-double-factorial-iter (max n f step)
402 (if (<= n max)
403 (math-double-factorial-iter max (+ n step) (math-mul n f) step)
662 (defun calcFunc-random (max)
663 (cond ((Math-zerop max)
665 ((Math-integerp max)
666 (let* ((digs (math-numdigs max))
668 (math-mod r max)))
669 ((Math-realp max)
670 (math-mul (math-random-float) max))
[all...]
/macosx-10.10/Security-57031.1.35/Security/libsecurity_apple_csp/open_ssl/
H A Dex_data.c197 int i,max; local
201 max=sk_CRYPTO_EX_DATA_FUNCS_num(meth);
202 for (i=0; i<max; i++)
223 int i,max; local
228 max=sk_CRYPTO_EX_DATA_FUNCS_num(meth);
229 for (i=0; i<max; i++)
/macosx-10.10/remote_cmds-47/talkd.tproj/
H A Dannounce.c93 #define max(a,b) ( (a) > (b) ? (a) : (b) ) macro
125 max_size = max(max_size, sizes[i]);
133 max_size = max(max_size, sizes[i]);
141 max_size = max(max_size, sizes[i]);
146 max_size = max(max_size, sizes[i]);
150 max_size = max(max_size, sizes[i]);
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/term/
H A Dimenu.tcl84 set max 0
86 if {[set len [string length $l]] > $max} {set max $len}
89 set header [cd::groptim [cd::tlc][textutil::repeat::strRepeat [cd::hl] $max][cd::trc]]
90 set footer [cd::groptim [cd::blc][textutil::repeat::strRepeat [cd::hl] $max][cd::brc]]
96 lappend labels ${l}[textutil::repeat::strRepeat " " [expr {$max-[string length $l]}]]
103 set eline " [textutil::repeat::strRepeat { } $max]"
H A Dipager.tcl92 set max 0
94 if {[set len [string length $l]] > $max} {set max $len}
97 set header [cd::groptim [cd::tlc][textutil::repeat::strRepeat [cd::hl] $max][cd::trc]]
98 set footer [cd::groptim [cd::blc][textutil::repeat::strRepeat [cd::hl] $max][cd::brc]]
102 lappend text [cd::vl]${l}[textutil::repeat::strRepeat " " [expr {$max-[string length $l]}]][cd::vl]
108 set eline " [textutil::repeat::strRepeat { } $max]"
/macosx-10.10/tcl-105/tcl_ext/tls/tls/
H A DtlsX509.c16 #ifdef max
17 #undef max macro
25 static int max(int a, int b) function
120 n = max(n, 0);
126 n = max(n, 0);
132 n = max(n, 0);
/macosx-10.10/xnu-2782.1.97/tools/tests/libMicro/apple/
H A Dlmbench_select_file.c94 int max; member in struct:__anon15609
264 for (i = 0; i <= ts->max; ++i) {
338 ts->max = 0;
349 if (fd > ts->max)
350 ts->max = fd;
357 ts->max++;
/macosx-10.10/BerkeleyDB-21/db/test/
H A Dplat001.tcl57 set max 1000000000
59 -create -init $init -min $min -max $max $db $key]
/macosx-10.10/CPANInternal-159.1/PlRPC-0.2020/lib/RPC/PlServer/
H A DComm.pm149 my $max = $self->getMaxMessage();
150 die "Maximum message size of $max exceeded, use option 'maxmessage' to"
151 . " increase" if $max && $encodedSize > $max;
/macosx-10.10/OpenSSH-189/openssh/
H A Dkexgex.c53 int min, int wantbits, int max, BIGNUM *prime, BIGNUM *gen,
76 if (min == -1 || max == -1)
81 buffer_put_int(&b, max);
46 kexgex_hash( const EVP_MD *evp_md, char *client_version_string, char *server_version_string, char *ckexinit, int ckexinitlen, char *skexinit, int skexinitlen, u_char *serverhostkeyblob, int sbloblen, int min, int wantbits, int max, BIGNUM *prime, BIGNUM *gen, BIGNUM *client_dh_pub, BIGNUM *server_dh_pub, BIGNUM *shared_secret, u_char **hash, u_int *hashlen) argument
/macosx-10.10/libxml2-26/libxml2/
H A Duri.c1028 xmlSaveUriRealloc(xmlChar *ret, int *max) { argument
1032 if (*max > MAX_URI_LENGTH) {
1036 tmp = *max * 2;
1042 *max = tmp;
1060 int max; local
1065 max = 80;
1066 ret = (xmlChar *) xmlMallocAtomic((max + 1) * sizeof(xmlChar));
1076 if (len >= max) {
1077 temp = xmlSaveUriRealloc(ret, &max);
1083 if (len >= max) {
[all...]
/macosx-10.10/tcl-105/tcl_ext/tclsoap/tclsoap/interop/
H A Dsoapinterop.tcl146 for {set n 0} {$n < $max} {incr n} {
212 set max [expr int(rand() * 19 + 2)]
213 for {set n 0} {$n < $max} {incr n} {
220 for {set n 0} {$n < $max} {incr n} {
229 set max [expr int(rand() * 19 + 2)]
230 for {set n 0} {$n < $max} {incr n} {
237 for {set n 0} {$n < $max} {incr n} {
251 set max [llength $q]
252 for {set n 0} {$n < $max} {incr n} {
300 set max [exp
[all...]
/macosx-10.10/ICU-531.30/icuSources/layout/
H A DHanLayoutEngine.h85 * @param max - the number of characters in the input context
99 virtual le_int32 characterProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft,
H A DOpenTypeLayoutEngine.h266 * @param max - the number of characters in the input context
279 virtual le_int32 characterProcessing(const LEUnicode /*chars*/[], le_int32 offset, le_int32 count, le_int32 max, le_bool /*rightToLeft*/,
295 * @param max - the number of characters in the input context
311 virtual le_int32 glyphProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft,
314 virtual le_int32 glyphSubstitution(le_int32 count, le_int32 max, le_bool rightToLeft, LEGlyphStorage &glyphStorage, LEErrorCode &success);
351 * @param max - the number of characters in the input context
365 virtual le_int32 computeGlyphs(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft, LEGlyphStorage &glyphStorage, LEErrorCode &success);
/macosx-10.10/JavaScriptCore-7600.1.17/bytecode/
H A DExecutionCounter.cpp72 m_activeThreshold = std::numeric_limits<int32_t>::max();
97 if (doubleResult > std::numeric_limits<int32_t>::max())
98 return std::numeric_limits<int32_t>::max();
134 if (m_activeThreshold == std::numeric_limits<int32_t>::max()) {
/macosx-10.10/JavaScriptCore-7600.1.17/parser/
H A DSourceCode.h66 , m_firstLine(std::max(firstLine, 1))
67 , m_startColumn(std::max(startColumn, 1))
75 , m_firstLine(std::max(firstLine, 1))
76 , m_startColumn(std::max(startColumn, 1))

Completed in 306 milliseconds

1234567891011>>