Searched refs:max (Results 251 - 275 of 2317) sorted by relevance

<<11121314151617181920>>

/macosx-10.10/ICU-531.30/icuSources/test/intltest/
H A Dtzbdtest.cpp81 UDate max = min + SIX_MONTHS; local
82 while ((max - min) > INTERVAL) {
83 UDate mid = (min + max) / 2;
89 max = mid;
93 logln("Date After: " + showDate(max));
95 UDate maxdelta = max - expectedBoundary;
121 UDate max = min + SIX_MONTHS; local
127 if (tz->inDaylightTime(max, status) == startsInDST) {
128 dataerrln("FAIL: " + tz->getID(str) + " inDaylightTime(" + dateToString(max) + ") != " + (startsInDST ? "false" : "true"));
132 while ((max
386 UDate max = min + SIX_MONTHS; local
[all...]
H A Dtztest.h52 UDate min, UDate max);
58 UDate min, UDate max,
/macosx-10.10/tcl-105/tcl_ext/expect/expect/example/
H A Dxpstat20 global max db hosts world
47 set max($host) 0
72 set max($host) $i
146 global world db alias max env
202 set max($host,was) 0
205 if {$max($host)==0} {
207 if {$max($host,was)>0} {
213 if {$max($host,was)==0} {
221 for {set i 0} {$i<$max($host)} {incr i} {
229 set max(
[all...]
/macosx-10.10/ncurses-44/ncurses/ncurses/base/
H A Dlib_color.c293 short min, max, t; local
297 if ((max = g > r ? g : r) < b)
298 max = b;
301 *l = (min + max) / 20;
303 if (min == max) { /* black, white and all shades of gray */
311 *s = ((max - min) * 100) / (max + min);
313 *s = ((max - min) * 100) / (2000 - max - min);
316 if (r == max)
[all...]
/macosx-10.10/WTF-7600.1.24/wtf/
H A DMathExtras.h169 template<> inline float defaultMinimumForClamp() { return -std::numeric_limits<float>::max(); }
170 template<> inline double defaultMinimumForClamp() { return -std::numeric_limits<double>::max(); }
171 template<typename T> inline T defaultMaximumForClamp() { return std::numeric_limits<T>::max(); }
173 template<typename T> inline T clampTo(double value, T min = defaultMinimumForClamp<T>(), T max = defaultMaximumForClamp<T>())
175 if (value >= static_cast<double>(max))
176 return max;
210 const unsigned intMax = static_cast<unsigned>(std::numeric_limits<int>::max());
213 return std::numeric_limits<int>::max();
219 return x > static_cast<float>(std::numeric_limits<int>::min()) && x < static_cast<float>(std::numeric_limits<int>::max());
338 double fmodValue = fmod(trunc(d), std::numeric_limits<unsigned long long>::max()
[all...]
H A DRAMSize.cpp57 return ramSize > std::numeric_limits<size_t>::max() ? std::numeric_limits<size_t>::max() : static_cast<size_t>(ramSize);
/macosx-10.10/OpenSSL098-52/src/crypto/x509v3/
H A Dv3_addr.c80 ASN1_SIMPLE(IPAddressRange, max, ASN1_BIT_STRING)
233 if (!i2r_address(out, afi, 0xFF, aor->u.addressRange->max))
391 const unsigned char *max,
397 OPENSSL_assert(memcmp(min, max, length) <= 0);
398 for (i = 0; i < length && min[i] == max[i]; i++)
400 for (j = length - 1; j >= 0 && min[j] == 0x00 && max[j] == 0xFF; j--)
406 mask = min[i] ^ max[i];
417 if ((min[i] & mask) != 0 || (max[i] & mask) != mask)
463 unsigned char *max,
469 if ((prefixlen = range_should_be_prefix(min, max, lengt
[all...]
/macosx-10.10/ICU-531.30/icuSources/layout/
H A DIndicLayoutEngine.h111 * @param max - the number of characters in the input context
123 virtual le_int32 characterProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft,
139 * @param max - the number of characters in the input context
154 virtual le_int32 glyphProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft,
/macosx-10.10/Security-57031.1.35/Security/include/security_filedb/
H A DOverUnderflowCheck.h72 uint64 max = (uint64) -1; local
73 uint64 limit = max / a;
/macosx-10.10/Security-57031.1.35/Security/libsecurity_filedb/lib/
H A DOverUnderflowCheck.h72 uint64 max = (uint64) -1; local
73 uint64 limit = max / a;
/macosx-10.10/WebCore-7600.1.25/Modules/mediastream/
H A DCapabilityRange.cpp59 // the min and max fields will not be present on the returned dictionary, and the supported field will be false.
61 // capability, but when we have to deal with this we will need to mark CapabilityRange.min and CapabilityRange.max as
85 Deprecated::ScriptValue CapabilityRange::max(ExecState* exec) const function in class:WebCore::CapabilityRange
87 return scriptValue(exec, m_rangeInfo.max(), m_rangeInfo.type());
/macosx-10.10/WebCore-7600.1.25/accessibility/
H A DAccessibilityProgressIndicator.cpp92 return narrowPrecisionToFloat(progress->max());
98 return narrowPrecisionToFloat(meter->max());
/macosx-10.10/WebCore-7600.1.25/html/
H A DNumberInputType.cpp66 RealNumberRenderSize max(const RealNumberRenderSize& other) const function in struct:WebCore::RealNumberRenderSize
69 std::max(sizeBeforeDecimalPoint, other.sizeBeforeDecimalPoint),
70 std::max(sizeAfteDecimalPoint, other.sizeAfteDecimalPoint));
114 // FIXME: We should use numeric_limits<double>::max for number input type.
115 const double floatMax = std::numeric_limits<float>::max();
129 // FIXME: We should use numeric_limits<double>::max for number input type.
130 const Decimal floatMax = Decimal::fromDouble(std::numeric_limits<float>::max());
157 // FIXME: We should use numeric_limits<double>::max for number input type.
158 const Decimal floatMax = Decimal::fromDouble(std::numeric_limits<float>::max());
184 RealNumberRenderSize size = calculateRenderSize(minimum).max(calculateRenderSiz
[all...]
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DImageResourceContentView.css39 max-width: 100%;
/macosx-10.10/dtrace-147/test/tst/common/aggs/
H A Dtst.multiaggs3.d55 @e = max(i);
/macosx-10.10/emacs-93/emacs/lisp/play/
H A Dstudly.el30 (setq begin (max (point) begin))
60 (setq rb (min begin end) re (max begin end))
67 (studlify-region (point-min) (point-max)))
/macosx-10.10/libstdcxx-104.1/include/c++/4.2.1/backward/
H A Ddefalloc.h103 return max(size_type(1), size_type(4096/sizeof(_Tp)));
106 return max(size_type(1), size_type(UINT_MAX/sizeof(_Tp)));
/macosx-10.10/procmail-14/procmail/src/
H A Dpipes.h15 *fromprog Q((char*name,char*const dest,size_t max));
/macosx-10.10/ruby-106/ruby/benchmark/
H A Dbm_so_fasta.rb6 def gen_random (max,im=139968,ia=3877,ic=29573)
7 (max * ($last = ($last * ia + ic) % im)) / im
/macosx-10.10/ruby-106/ruby/lib/rubygems/
H A Dtext.rb36 max = n/2
40 return n if (n - m).abs > max
/macosx-10.10/ruby-106/ruby/test/dl/
H A Dtest_c_struct_entry.rb21 expected = PackInfo.align expected, alignments.max
38 expected = PackInfo.align expected, alignments.max
/macosx-10.10/tcl-105/tcl84/tcl/generic/
H A DtclThread.c29 int max; /* Max size of the array */ member in struct:__anon12819
229 if (recPtr->num >= recPtr->max) {
230 recPtr->max += 8;
231 newList = (char **)ckalloc(recPtr->max * sizeof(char *));
491 keyRecord.max = 0;
504 mutexRecord.max = 0;
517 condRecord.max = 0;
526 keyRecord.max = 0;
/macosx-10.10/tcl-105/tcl_ext/memchan/memchan/isaac/
H A Dstandard.h59 #ifndef max
60 # define max(a,b) (((a)<(b)) ? (b) : (a)) macro
61 #endif /* max */
/macosx-10.10/tcl-105/tcl_ext/snack/snack/demos/tcl/
H A Dlevelmeter.tcl24 set l [s max -start 0 -end -1 -channel 0]
25 set r [s max -start 0 -end -1 -channel 1]
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/math/
H A Dmath.tcl26 namespace export max mean min

Completed in 518 milliseconds

<<11121314151617181920>>