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

1 2

  /external/llvm/lib/Analysis/
CFG.cpp 138 // Limit the number of blocks we visit. The goal is to avoid run-away compile
140 unsigned Limit = 32;
153 if (!--Limit) {
MemoryDependenceAnalysis.cpp 50 // Limit for the number of instructions to scan in a block.
198 unsigned Limit = BlockScanLimit;
202 // Limit the amount of scanning we do so we don't end up with quadratic
204 --Limit;
205 if (!Limit)
368 unsigned Limit = BlockScanLimit;
384 // Limit the amount of scanning we do so we don't end up with quadratic
386 --Limit;
387 if (!Limit)
    [all...]
  /external/llvm/lib/CodeGen/
InterferenceCache.cpp 182 SlotIndex Limit = BI->First.isValid() ? BI->First : Stop;
184 i != e && RegMaskSlots[i] < Limit; ++i)
239 SlotIndex Limit = BI->Last.isValid() ? BI->Last : Start;
241 i && RegMaskSlots[i-1].getDeadSlot() > Limit; --i)
RegisterPressure.cpp 635 // Only consider change beyond the limit.
636 unsigned Limit = RCI->getRegPressureSetLimit(i);
638 Limit += LiveThruPressureVec[i];
640 if (Limit > POld) {
641 if (Limit > PNew)
642 PDiff = 0; // Under the limit
644 PDiff = PNew - Limit; // Just exceeded limit.
646 else if (Limit > PNew)
647 PDiff = Limit - POld; // Just obeyed limit
    [all...]
MachineLICM.cpp 13 // This pass does not attempt to throttle itself to limit register pressure.
96 // Register pressure "limit" per register class. If the pressure
97 // is higher than the limit, then it's considered high.
    [all...]
MachineScheduler.cpp 892 unsigned Limit = RegClassInfo->getRegPressureSetLimit(i);
893 if (RegionPressure[i] > Limit) {
895 << " Limit " << Limit
    [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZSelectionDAGInfo.cpp 217 SDValue Limit = DAG.getNode(ISD::ADD, DL, PtrVT, Src, Length);
219 Limit, Src, Char);
260 // Search from Src for a null character, stopping once Src reaches Limit.
264 // This can be used for strlen by setting Limit to 0.
267 SDValue Limit) {
271 Limit, Src, DAG.getConstant(0, MVT::i32));
290 SDValue Limit = DAG.getNode(ISD::ADD, DL, PtrVT, Src, MaxLength);
291 return getBoundedStrlen(DAG, DL, Chain, Src, Limit);
  /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 80 Object*** Limit() { return reinterpret_cast<Object***>(old_limit_); }
85 ASSERT(top <= Limit());
  /external/llvm/lib/Target/PowerPC/
PPCCTRLoops.cpp 416 // Stop trying after reaching the limit (if any).
417 int Limit = CTRLoopLimit;
418 if (Limit >= 0) {
  /art/runtime/gc/space/
space.h 259 byte* Limit() const {
269 void SetLimit(byte* limit) {
270 limit_ = limit;
283 return Limit() - Begin();
290 return byte_ptr >= Begin() && byte_ptr < Limit();
305 byte* begin, byte* end, byte* limit) :
306 Space(name, gc_retention_policy), begin_(begin), end_(end), limit_(limit) {
315 // Limit of the space.
353 // Size of the space without a limit on its growth. By default this is just the Capacity, but
372 MemMapSpace(const std::string& name, MemMap* mem_map, byte* begin, byte* end, byte* limit,
    [all...]
  /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/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 68 // Returns a regular expression quantifier with an upper and lower limit.
69 string Limit(int lower, int upper) {
191 // Limit on the number of pairs of brackets in a phone number.
199 // Limit on the number of leading (plus) characters.
201 // Limit on the number of consecutive punctuation characters.
207 // Limit on the number of blocks separated by punctuation. Uses
220 // separately since StrCat has a limit of 12 args.
264 bracket_pair_limit_(Limit(0, 3)),
271 lead_limit_(Limit(0, 2)),
272 punctuation_limit_(Limit(0, 4))
    [all...]
  /external/llvm/lib/Target/ARM/
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
674 unsigned Limit = (1 << Entry.Imm2Limit) - 1;
675 if (Imm > Limit)
758 unsigned Limit = ~0U;
760 Limit = (1 << Entry.Imm1Limit) - 1;
775 if (((unsigned)MO.getImm()) > Limit)
    [all...]
ARMFrameLowering.cpp     [all...]
ARMLoadStoreOptimizer.cpp 723 unsigned Limit = ~0U;
725 // vldm / vstm limit are 32 for S variants, 16 for D variants.
730 Limit = 32;
733 Limit = 16;
736 Limit = 16;
739 Limit = 32;
750 // limit on the number of registers per instruction.
754 ((Count < Limit) && RegNum == PRegNum+1)) &&
794 unsigned Bytes, unsigned Limit,
813 if (Bytes == 0 || (Limit && Bytes >= Limit)
    [all...]
  /hardware/intel/img/psb_video/src/
tng_jpegES.h 59 IMG_UINT32 Limit;
pnw_hostjpeg.h 43 /*Limit the scan size to maximum useable (due to it being used as the
47 * We'll give this upper limit some margin for error, and limit our
321 IMG_UINT32 Limit;
  /external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
cmspcs.c 112 const cmsFloat64Number Limit = (24.0/116.0) * (24.0/116.0) * (24.0/116.0);
114 if (t <= Limit)
123 const cmsFloat64Number Limit = (24.0/116.0);
125 if (t <= Limit) {
  /external/clang/lib/Format/
Format.cpp 583 unsigned Limit =
585 // If we already exceed the column limit, we set 'Limit' to 0. The different
587 Limit = TheLine->Last->TotalLength > Limit
589 : Limit - TheLine->Last->TotalLength;
603 return MergeShortFunctions ? tryMergeSimpleBlock(I, E, Limit) : 0;
607 ? tryMergeSimpleBlock(I, E, Limit)
612 // Check for Limit <= 2 to account for the " {".
613 if (Limit <= 2 || (Style.ColumnLimit == 0 && containsMustBreak(TheLine))
    [all...]
  /external/clang/lib/Sema/
SemaTemplateInstantiate.cpp 396 unsigned Limit = Diags.getTemplateBacktraceLimit();
397 if (Limit && Limit < ActiveTemplateInstantiations.size()) {
398 SkipStart = Limit / 2 + Limit % 2;
399 SkipEnd = ActiveTemplateInstantiations.size() - Limit / 2;
415 << unsigned(ActiveTemplateInstantiations.size() - Limit);
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonHardwareLoops.cpp     [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp 120 unsigned Limit = 20;
145 if (--Limit == 0) return true;
    [all...]
  /external/clang/lib/AST/
ExprConstant.cpp 432 /// to perform. This is essentially a limit for the number of statements
570 void addCallStack(unsigned Limit);
603 unsigned Limit = Ctx.getDiagnostics().getConstexprBacktraceLimit();
604 if (Limit)
605 CallStackNotes = std::min(CallStackNotes, Limit + 1);
614 addCallStack(Limit);
845 void EvalInfo::addCallStack(unsigned Limit) {
849 if (Limit && Limit < ActiveCalls) {
850 SkipStart = Limit / 2 + Limit % 2
    [all...]

Completed in 367 milliseconds

1 2