HomeSort by relevance Sort by last modified time
    Searched defs:Limit (Results 1 - 24 of 24) sorted by null

  /external/llvm/lib/Analysis/
CFG.cpp 188 // Limit the number of blocks we visit. The goal is to avoid run-away compile
190 unsigned Limit = 32;
207 if (!--Limit) {
MemoryDependenceAnalysis.cpp 49 // Limit for the number of instructions to scan in a block.
194 unsigned Limit = BlockScanLimit;
198 // Limit the amount of scanning we do so we don't end up with quadratic
200 --Limit;
201 if (!Limit)
364 unsigned Limit = BlockScanLimit;
374 // Limit the amount of scanning we do so we don't end up with quadratic
376 --Limit;
377 if (!Limit)
    [all...]
  /external/llvm/lib/CodeGen/
InterferenceCache.cpp 165 SlotIndex Limit = BI->First.isValid() ? BI->First : Stop;
167 i != e && RegMaskSlots[i] < Limit; ++i)
222 SlotIndex Limit = BI->Last.isValid() ? BI->Last : Start;
224 i && RegMaskSlots[i-1].getDeadSlot() > Limit; --i)
RegisterPressure.cpp 587 // Only consider change beyond the limit.
588 unsigned Limit = RCI->getRegPressureSetLimit(i);
590 Limit += LiveThruPressureVec[i];
592 if (Limit > POld) {
593 if (Limit > PNew)
594 PDiff = 0; // Under the limit
596 PDiff = PNew - Limit; // Just exceeded limit.
598 else if (Limit > PNew)
599 PDiff = Limit - POld; // Just obeyed limit
    [all...]
MachineLICM.cpp 13 // This pass does not attempt to throttle itself to limit register pressure.
95 // Register pressure "limit" per register class. If the pressure
96 // is higher than the limit, then it's considered high.
    [all...]
MachineScheduler.cpp 498 unsigned Limit = RegClassInfo->getRegPressureSetLimit(i);
499 if (RegionPressure[i] > Limit) {
501 << " Limit " << Limit
525 unsigned Limit = RegClassInfo->getRegPressureSetLimit(i);
526 if (NewMaxPressure[i] > Limit ) {
528 << NewMaxPressure[i] << " > " << Limit << "\n";
    [all...]
  /external/chromium_org/chrome/browser/download/
download_query.h 37 // query.Limit(20);
120 // Limit the size of search results to |limit|.
121 void Limit(size_t limit) { limit_ = limit; }
  /external/chromium_org/v8/src/
store-buffer.h 104 Object*** Limit() { return reinterpret_cast<Object***>(old_limit_); }
109 ASSERT(top <= Limit());
  /external/llvm/lib/Target/PowerPC/
PPCCTRLoops.cpp 390 // Stop trying after reaching the limit (if any).
391 int Limit = CTRLoopLimit;
392 if (Limit >= 0) {
  /external/v8/src/
store-buffer.h 96 Object*** Limit() { return reinterpret_cast<Object***>(old_limit_); }
101 ASSERT(top <= Limit());
  /external/chromium_org/third_party/protobuf/src/google/protobuf/io/
coded_stream.h 106 // However, for practicality we set a limit at 64 bits. The maximum encoded
170 // successfully and the stream's byte limit.
291 // limit.
296 typedef int Limit;
298 // Places a limit on the number of bytes that the stream may read,
299 // starting from the current position. Once the stream hits this limit,
304 // shortest limit on the stack is always enforced, even if it is not the
305 // top limit.
309 Limit PushLimit(int byte_limit);
311 // Pops the last limit pushed by PushLimit(). The input must be the valu
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64InstrInfo.cpp 459 unsigned Limit = (1 << 16) - 1;
469 Limit = std::min(Limit, 0xfffu);
475 Limit = std::min(Limit, static_cast<unsigned>(MaxOffset));
482 return Limit;
  /external/protobuf/src/google/protobuf/io/
coded_stream.h 106 // However, for practicality we set a limit at 64 bits. The maximum encoded
157 // successfully and the stream's byte limit.
275 // limit.
280 typedef int Limit;
282 // Places a limit on the number of bytes that the stream may read,
283 // starting from the current position. Once the stream hits this limit,
288 // shortest limit on the stack is always enforced, even if it is not the
289 // top limit.
293 Limit PushLimit(int byte_limit);
295 // Pops the last limit pushed by PushLimit(). The input must be the valu
    [all...]
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/
phonenumbermatcher.cc 71 // Returns a regular expression quantifier with an upper and lower limit.
72 string Limit(int lower, int upper) {
184 // Limit on the number of pairs of brackets in a phone number.
192 // Limit on the number of leading (plus) characters.
194 // Limit on the number of consecutive punctuation characters.
200 // Limit on the number of blocks separated by punctuation. Uses
213 // separately since StrCat has a limit of 12 args.
257 bracket_pair_limit_(Limit(0, 3)),
264 lead_limit_(Limit(0, 2)),
265 punctuation_limit_(Limit(0, 4))
    [all...]
  /external/llvm/lib/Target/ARM/
ARMFrameLowering.cpp     [all...]
Thumb2SizeReduction.cpp 33 static cl::opt<int> ReduceLimit("t2-reduce-limit",
47 uint8_t Imm1Limit; // Limit of immediate field (bits)
48 uint8_t Imm2Limit; // Limit of immediate field when it's two-address
676 unsigned Limit = (1 << Entry.Imm2Limit) - 1;
677 if (Imm > Limit)
760 unsigned Limit = ~0U;
762 Limit = (1 << Entry.Imm1Limit) - 1;
777 if (((unsigned)MO.getImm()) > Limit)
    [all...]
ARMLoadStoreOptimizer.cpp 461 unsigned Limit = ~0U;
463 // vldm / vstm limit are 32 for S variants, 16 for D variants.
468 Limit = 32;
471 Limit = 16;
474 Limit = 16;
477 Limit = 32;
488 // limit on the number of registers per instruction.
492 ((Count < Limit) && RegNum == PRegNum+1))) {
530 unsigned Bytes, unsigned Limit,
548 if (Bytes == 0 || (Limit && Bytes >= Limit)
    [all...]
  /external/clang/lib/AST/
ExprConstant.cpp 422 /// to perform. This is essentially a limit for the number of statements
515 void addCallStack(unsigned Limit);
527 unsigned Limit = Ctx.getDiagnostics().getConstexprBacktraceLimit();
528 if (Limit)
529 CallStackNotes = std::min(CallStackNotes, Limit + 1);
538 addCallStack(Limit);
716 void EvalInfo::addCallStack(unsigned Limit) {
720 if (Limit && Limit < ActiveCalls) {
721 SkipStart = Limit / 2 + Limit % 2
    [all...]
  /external/clang/lib/Format/
Format.cpp     [all...]
  /external/clang/lib/Sema/
SemaTemplateInstantiate.cpp 482 unsigned Limit = Diags.getTemplateBacktraceLimit();
483 if (Limit && Limit < ActiveTemplateInstantiations.size()) {
484 SkipStart = Limit / 2 + Limit % 2;
485 SkipEnd = ActiveTemplateInstantiations.size() - Limit / 2;
501 << unsigned(ActiveTemplateInstantiations.size() - Limit);
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonHardwareLoops.cpp     [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp 321 unsigned Limit = 20;
346 if (--Limit == 0) return true;
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.metadata_2.0.0.v20100601.jar 

Completed in 540 milliseconds