HomeSort by relevance Sort by last modified time
    Searched refs:Max (Results 51 - 75 of 199) sorted by null

1 23 4 5 6 7 8

  /external/chromium_org/base/time/
time_win.cc 146 if (ft.dwHighDateTime == std::numeric_limits<DWORD>::max() &&
147 ft.dwLowDateTime == std::numeric_limits<DWORD>::max())
148 return Max();
157 result.dwHighDateTime = std::numeric_limits<DWORD>::max();
158 result.dwLowDateTime = std::numeric_limits<DWORD>::max();
time.h 254 return us_ == std::numeric_limits<int64>::max();
267 static Time Max();
time_posix.cc 276 ? std::numeric_limits<SysTime>::max()
277 : std::numeric_limits<int32_t>::max();
355 t.tv_sec == std::numeric_limits<time_t>::max())
356 return Max();
371 result.tv_sec = std::numeric_limits<time_t>::max();
  /external/chromium_org/chrome/browser/sync/
test_profile_sync_service.cc 323 base::Time::Max());
  /external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
utils.h 123 static T Max(T a, T b) {
bignum.cc 193 EnsureCapacity(1 + Max(BigitLength(), other.BigitLength()) - exponent_);
210 used_digits_ = Max(bigit_pos, used_digits_);
  /external/lzma/CS/7zip/Compress/LZMA/
LzmaDecoder.cs 172 m_DictionarySizeCheck = Math.Max(m_DictionarySize, 1);
173 uint blockSize = Math.Max(m_DictionarySizeCheck, (1 << 12));
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
Profiler.cs 104 stats.maxRuleInvocationDepth = Math.Max(stats.maxRuleInvocationDepth, ruleLevel);
195 d.decision.maxk = Math.Max(d.decision.maxk, depth);
199 " lookahead " + d.k + " max token " + lastRealTokenTouchedInDecision);
223 //d.maxk = Math.max(d.maxk, depth);
271 // " max is "+maxLookaheadInCurrentDecision);
412 // buf.Append(Stats.max(decisionMaxFixedLookaheads));
422 // buf.Append(Stats.max(decisionMaxCyclicLookaheads));
432 // buf.Append(Stats.max(toArray(decisionMaxSynPredLookaheads)));
512 buf.Append("max rule invocation nesting depth ");
521 // buf.Append("max lookahead used in a fixed lookahead decision ")
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
Profiler.cs 107 stats.maxRuleInvocationDepth = Math.Max(stats.maxRuleInvocationDepth, ruleLevel);
209 d.decision.maxk = Math.Max(d.decision.maxk, depth);
214 " lookahead " + d.k + " max token " + lastRealTokenTouchedInDecision);
241 //d.maxk = Math.max(d.maxk, depth);
297 // " max is "+maxLookaheadInCurrentDecision);
457 // buf.Append(Stats.max(decisionMaxFixedLookaheads));
467 // buf.Append(Stats.max(decisionMaxCyclicLookaheads));
477 // buf.Append(Stats.max(toArray(decisionMaxSynPredLookaheads)));
563 buf.Append("max rule invocation nesting depth ");
572 // buf.Append("max lookahead used in a fixed lookahead decision ")
    [all...]
  /external/chromium_org/content/browser/
storage_partition_impl.cc 634 request_context_getter, base::Time(), base::Time::Max(),
642 GetURLRequestContext(), base::Time(), base::Time::Max(),
  /external/chromium_org/v8/src/
bignum.cc 192 EnsureCapacity(1 + Max(BigitLength(), other.BigitLength()) - exponent_);
209 used_digits_ = Max(bigit_pos, used_digits_);
platform-freebsd.cc 102 Max(highest_ever_allocated,
scanner.h 216 int capacity = Max(min_capacity, backing_store_.length());
incremental-marking.cc 241 int start_offset = Max(FixedArray::BodyDescriptor::kStartOffset,
920 marking_speed_ * Max(allocated_, write_barriers_invoked_since_last_step_);
    [all...]
  /external/oprofile/events/mips/sb1/
events 23 event:0x20 counters:1,2,3 um:zero minimum:500 name:MAX_ISSUE :Max issue
  /external/qemu/distrib/sdl-1.2.15/src/main/symbian/EKA2/
sdlexe.cpp 120 iInc.iX = Max(-KMaxMove, iInc.iX);
124 iInc.iY =Max(-KMaxMove, iInc.iY);
  /external/v8/src/
bignum.cc 191 EnsureCapacity(1 + Max(BigitLength(), other.BigitLength()) - exponent_);
208 used_digits_ = Max(bigit_pos, used_digits_);
platform-solaris.cc 120 return Max(STACK_ALIGN, 16);
164 Max(highest_ever_allocated,
scanner.h 230 int capacity = Max(min_capacity, backing_store_.length());
  /external/chromium_org/chrome/browser/extensions/api/browsing_data/
browsing_data_api.cc 304 remove_since_, base::Time::Max());
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_common.h 246 // Don't use std::min, std::max or std::swap, to minimize dependency
249 template<class T> T Max(T a, T b) { return a > b ? a : b; }
  /external/eigen/Eigen/src/Geometry/
AlignedBox.h 44 Min=0, Max=1,
105 inline const VectorType& (max)() const { return m_max; } function in class:Eigen::AlignedBox
107 inline VectorType& (max)() { return m_max; } function in class:Eigen::AlignedBox
186 { return (m_min.array()<=(b.min)().array()).all() && ((b.max)().array()<=m_max.array()).all(); }
278 m_max = (other.max)().template cast<Scalar>();
  /libcore/luni/src/main/java/java/net/
HttpCookie.java 42 * Max-Age} attribute as an offset from {@link System#currentTimeMillis()
46 * with a {@code Max-Age} duration and adds {@code Comment} and {@code
73 RESERVED_NAMES.add("max-age"); // RFC 2109 RFC 2965
219 * Otherwise, if it has a max-age attribute, the version is 1.
334 } else if (name.equals("max-age") && cookie.maxAge == -1L) {
508 * Returns the {@code Max-Age} attribute, in delta-seconds.
561 * Returns true if this cookie's Max-Age is 0.
607 * Sets the {@code Max-Age} attribute of this cookie.
  /external/chromium_org/chrome/browser/browsing_data/
browsing_data_remover.cc 107 return new BrowsingDataRemover(profile, base::Time(), base::Time::Max());
143 base::Time::Max());
184 // delete_end, even though they should've used base::Time::Max(). Work around
185 // it here. New code should use base::Time::Max().
188 delete_end_ = base::Time::Max();
    [all...]
  /external/clang/lib/Frontend/
InitPreprocessor.cpp 120 const char *DenormMin, *Epsilon, *Max, *Min;
139 Max = PickFP(Sem, "3.40282347e+38", "1.7976931348623157e+308",
159 Builder.defineMacro(DefPrefix + "MAX__", Twine(Max)+Ext);
168 /// named MacroName with the max value for a type with width 'TypeWidth' a
    [all...]

Completed in 1162 milliseconds

1 23 4 5 6 7 8