HomeSort by relevance Sort by last modified time
    Searched refs:Max (Results 126 - 150 of 269) sorted by null

1 2 3 4 56 7 8 91011

  /external/llvm/lib/AsmParser/
LLParser.cpp     [all...]
  /external/llvm/lib/Analysis/
ScalarEvolution.cpp 108 MaxBruteForceIterations("scalar-evolution-max-iterations", cl::ReallyHidden,
    [all...]
  /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/compiler-rt/lib/sanitizer_common/
sanitizer_common.h 449 // Don't use std::min, std::max or std::swap, to minimize dependency
452 template<class T> T Max(T a, T b) { return a > b ? a : b; }
478 capacity_ = Max(initial_capacity, (uptr)1);
  /external/skia/src/opts/
SkNx_neon.h 89 static SkNx Max(const SkNx& l, const SkNx& r) { return vmax_f32(l.fVec, r.fVec); }
170 static SkNx Max(const SkNx& l, const SkNx& r) { return vmaxq_f32(l.fVec, r.fVec); }
SkNx_sse.h 53 static SkNx Max(const SkNx& l, const SkNx& r) { return _mm_max_ps(l.fVec, r.fVec); }
101 static SkNx Max(const SkNx& l, const SkNx& r) { return _mm_max_ps(l.fVec, r.fVec); }
  /external/v8/src/
bignum.cc 170 EnsureCapacity(1 + Max(BigitLength(), other.BigitLength()) - exponent_);
187 used_digits_ = Max(bigit_pos, used_digits_);
  /external/webrtc/webrtc/modules/video_coding/test/
plotReceiveTrace.m 75 [p, count] = sscanf(message, 'Render frame %lu at %lu. Render delay %lu, required delay %lu, max decode time %lu, min total delay %lu');
198 % legend('Complete time - Estimated arrival time', 'Desired jitter buffer level', 'Actual decode time', 'Max decode time', 0);
204 targetDelay = max(renderTime(:, 3) + renderTime(:, 4) + renderTime(:, 5), renderTime(:, 6));
  /external/chromium-trace/catapult/third_party/pipeline/pipeline/
common.py 103 class Max(pipeline.Pipeline):
104 """Returns the max value."""
108 raise TypeError('max expected at least 1 argument, got 0')
112 return max(args)
  /external/compiler-rt/lib/asan/
asan_thread.cc 144 Max(stack_size_log, static_cast<uptr>(flags()->min_uar_stack_size_log));
  /external/eigen/Eigen/src/Geometry/
AlignedBox.h 46 Min=0, Max=1,
109 inline const VectorType& (max)() const { return m_max; } function in class:Eigen::AlignedBox
111 inline VectorType& (max)() { return m_max; } function in class:Eigen::AlignedBox
190 { return (m_min.array()<=(b.min)().array()).all() && ((b.max)().array()<=m_max.array()).all(); }
195 { return (m_min.array()<=(b.max)().array()).all() && ((b.min)().array()<=m_max.array()).all(); }
295 m_max = (other.max)().template cast<Scalar>();
  /external/libchrome/base/time/
time_posix.cc 291 ? std::numeric_limits<SysTime>::max()
292 : std::numeric_limits<int32_t>::max();
339 t.tv_sec == std::numeric_limits<time_t>::max())
340 return Max();
353 result.tv_sec = std::numeric_limits<time_t>::max();
  /external/llvm/lib/Fuzzer/
FuzzerMutate.cpp 21 size_t (MutationDispatcher::*Fn)(uint8_t *Data, size_t Size, size_t Max);
  /external/llvm/lib/Target/Hexagon/
HexagonFrameLowering.cpp 147 cl::Hidden, cl::ZeroOrMore, cl::desc("Max count of stack frame "
221 unsigned Max = getMax32BitSubRegister(CSI[0].getReg(), TRI);
224 if (Reg > Max)
225 Max = Reg;
227 return Max;
433 unsigned MaxAlign = std::max(MFI->getMaxAlignment(), getStackAlignment());
438 // Round up the max call frame size to the max alignment on the stack.
    [all...]
  /external/v8/src/regexp/
regexp-ast.cc 248 if (that->max() == RegExpTree::kInfinity) {
251 os_ << that->max() << " ";
307 max_match_ = Max(max_match_, alternative->max_match());
  /external/v8/src/runtime/
runtime-simd.cc 31 from <= static_cast<double>(std::numeric_limits<T>::max());
105 const T max = std::numeric_limits<T>::max(); local
108 if (result > max) return max;
117 const T max = std::numeric_limits<T>::max(); local
120 if (result > max) return max;
134 inline float Max(float a, float b)
    [all...]
  /external/v8/src/wasm/
wasm-module.h 87 Max
  /system/update_engine/update_manager/
update_manager_unittest.cc 154 if (time_threshold_ < Time::Max() &&
  /system/webservd/libwebserv/
dbus_server.cc 238 return base::TimeDelta::Max();
  /external/clang/lib/Frontend/
InitPreprocessor.cpp 132 const char *DenormMin, *Epsilon, *Max, *Min;
152 Max = PickFP(Sem, "3.40282347e+38", "1.7976931348623157e+308",
173 Builder.defineMacro(DefPrefix + "MAX__", Twine(Max)+Ext);
182 /// named MacroName with the max value for a type with width 'TypeWidth' a
    [all...]
  /external/skia/src/core/
SkScan_Hairline.cpp 46 const SkScalar max = SkIntToScalar(32767);
47 const SkRect fixedBounds = SkRect::MakeLTRB(-max, -max, max, max);
243 return Sk2s::Max(value, Sk2s(0)-value);
264 SkScalar diff = max_component(Sk2s::Max(abs(p1 - p13), abs(p2 - p23)));
323 Sk2s max = min;
327 max = Sk2s::Max(max, pair)
    [all...]
  /external/v8/test/cctest/
test-types.cc 357 double max = (*j)->Number(); local
358 if (min > max) std::swap(min, max);
359 Type* type = T.Range(min, max);
368 double max = (*j)->Number(); local
369 if (min > max) std::swap(min, max);
370 Type* type = T.Range(min, max);
372 CHECK(max == type->AsRange()->Max());
902 double max = type2->AsRange()->Max(); local
    [all...]
  /external/llvm/lib/Transforms/IPO/
MergeFunctions.cpp     [all...]
  /external/llvm/lib/Target/Hexagon/AsmParser/
HexagonAsmParser.cpp 118 void OutOfRange(SMLoc IDLoc, long long Val, long long Max);
    [all...]

Completed in 1831 milliseconds

1 2 3 4 56 7 8 91011