Searched defs:Limit (Results 1 - 25 of 29) sorted by relevance

12

/external/llvm/lib/CodeGen/
H A DAllocationOrder.h48 unsigned next(unsigned Limit = 0) {
51 if (!Limit)
52 Limit = Order.size();
53 while (Pos < int(Limit)) {
62 /// Limit'th register in the RegisterClassInfo allocation order.
64 /// This can produce more than Limit registers if there are hints.
65 unsigned nextWithDups(unsigned Limit) { argument
68 if (Pos < int(Limit))
H A DInterferenceCache.cpp182 SlotIndex Limit = BI->First.isValid() ? BI->First : Stop; local
184 i != e && RegMaskSlots[i] < Limit; ++i)
239 SlotIndex Limit = BI->Last.isValid() ? BI->Last : Start; local
241 i && RegMaskSlots[i-1].getDeadSlot() > Limit; --i)
H A DMachineLICM.cpp1077 unsigned Limit = RegLimit[RCId]; local
1087 if (RP[RCId] + Cost >= Limit)
H A DRegisterPressure.cpp636 unsigned Limit = RCI->getRegPressureSetLimit(i); local
638 Limit += LiveThruPressureVec[i];
640 if (Limit > POld) {
641 if (Limit > PNew)
644 PDiff = PNew - Limit; // Just exceeded limit.
646 else if (Limit > PNew)
647 PDiff = Limit - POld; // Just obeyed limit.
834 unsigned Limit = RCI->getRegPressureSetLimit(PSetID); local
836 Limit += LiveThruPressure[PSetID];
849 if (PNew > Limit)
[all...]
H A DMachineScheduler.cpp892 unsigned Limit = RegClassInfo->getRegPressureSetLimit(i); local
893 if (RegionPressure[i] > Limit) {
895 << " Limit " << Limit
924 unsigned Limit = RegClassInfo->getRegPressureSetLimit(ID); local
925 if (NewMaxPressure[ID] >= Limit - 2) {
927 << NewMaxPressure[ID] << " > " << Limit << "(+ "
/external/llvm/lib/Analysis/
H A DCFG.cpp138 // Limit the number of blocks we visit. The goal is to avoid run-away compile
140 unsigned Limit = 32; local
153 if (!--Limit) {
H A DMemoryDependenceAnalysis.cpp50 // Limit for the number of instructions to scan in a block.
198 unsigned Limit = BlockScanLimit; local
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; local
384 // Limit the amount of scanning we do so we don't end up with quadratic
386 --Limit;
387 if (!Limit)
/external/chromium_org/chrome/browser/download/
H A Ddownload_query.h37 // query.Limit(20);
120 // Limit the size of search results to |limit|.
121 void Limit(size_t limit) { limit_ = limit; } function in class:DownloadQuery
/external/chromium_org/v8/src/heap/
H A Dstore-buffer.h79 Object*** Limit() { return reinterpret_cast<Object***>(old_limit_); } function in class:v8::internal::StoreBuffer
84 DCHECK(top <= Limit());
/external/llvm/lib/Target/PowerPC/
H A DPPCCTRLoops.cpp417 int Limit = CTRLoopLimit; local
418 if (Limit >= 0) {
/external/llvm/lib/Target/SystemZ/
H A DSystemZSelectionDAGInfo.cpp217 SDValue Limit = DAG.getNode(ISD::ADD, DL, PtrVT, Src, Length); local
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); local
291 return getBoundedStrlen(DAG, DL, Chain, Src, Limit);
265 getBoundedStrlen(SelectionDAG &DAG, SDLoc DL, SDValue Chain, SDValue Src, SDValue Limit) argument
/external/llvm/lib/Target/AArch64/
H A DAArch64LoadStoreOptimizer.cpp67 unsigned Limit);
80 findMatchingUpdateInsnForward(MachineBasicBlock::iterator I, unsigned Limit,
87 findMatchingUpdateInsnBackward(MachineBasicBlock::iterator I, unsigned Limit);
386 bool &MergeForward, unsigned Limit) {
416 for (unsigned Count = 0; MBBI != E && Count < Limit; ++MBBI) {
640 MachineBasicBlock::iterator I, unsigned Limit, int Value) {
694 MachineBasicBlock::iterator I, unsigned Limit) {
385 findMatchingInsn(MachineBasicBlock::iterator I, bool &MergeForward, unsigned Limit) argument
639 findMatchingUpdateInsnForward( MachineBasicBlock::iterator I, unsigned Limit, int Value) argument
693 findMatchingUpdateInsnBackward( MachineBasicBlock::iterator I, unsigned Limit) argument
/external/protobuf/src/google/protobuf/io/
H A Dcoded_stream.h280 typedef int Limit; typedef in class:google::protobuf::io::CodedInputStream
293 Limit PushLimit(int byte_limit);
297 void PopLimit(Limit limit);
303 // Total Bytes Limit -----------------------------------------------
339 // Recursion Limit -------------------------------------------------
458 Limit current_limit_; // if position = -1, no limit is applied
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/
H A Dphonenumbermatcher.cc69 string Limit(int lower, int upper) { function in namespace:i18n::phonenumbers::__anon12796
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
264 bracket_pair_limit_(Limit(0, 3)),
271 lead_limit_(Limit(0, 2)),
272 punctuation_limit_(Limit(0, 4)),
275 block_limit_(Limit(0, digit_block_limit_)),
278 digit_sequence_(StrCat("\\p{Nd}", Limit(
[all...]
/external/chromium_org/third_party/protobuf/src/google/protobuf/io/
H A Dcoded_stream.h296 typedef int Limit; typedef in class:google::protobuf::io::CodedInputStream
309 Limit PushLimit(int byte_limit);
313 void PopLimit(Limit limit);
322 // Total Bytes Limit -----------------------------------------------
359 // Recursion Limit -------------------------------------------------
480 Limit current_limit_; // if position = -1, no limit is applied
495 // If positive/0: Limit for bytes read after which a warning due to size
498 // If -2: Internal: Limit has been reached, print full size when destructing.
/external/llvm/lib/Target/ARM/
H A DThumb2SizeReduction.cpp47 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; local
675 if (Imm > Limit)
758 unsigned Limit = ~0U; local
760 Limit = (1 << Entry.Imm1Limit) - 1;
775 if (((unsigned)MO.getImm()) > Limit)
H A DARMFrameLowering.cpp1278 unsigned Limit = (1 << 12) - 1; local
1288 Limit = std::min(Limit, (1U << 8) - 1);
1296 Limit = std::min(Limit, (1U << 8) - 1);
1300 Limit = std::min(Limit, ((1U << 8) - 1) * 4);
1306 Limit = std::min(Limit, (1U << 8) - 1);
1321 return Limit;
[all...]
H A DARMLoadStoreOptimizer.cpp723 unsigned Limit = ~0U; local
730 Limit = 32;
733 Limit = 16;
736 Limit = 16;
739 Limit = 32;
754 ((Count < Limit) && RegNum == PRegNum+1)) &&
794 unsigned Bytes, unsigned Limit,
813 if (Bytes == 0 || (Limit && Bytes >= Limit))
829 unsigned Bytes, unsigned Limit,
793 isMatchingDecrement(MachineInstr *MI, unsigned Base, unsigned Bytes, unsigned Limit, ARMCC::CondCodes Pred, unsigned PredReg) argument
828 isMatchingIncrement(MachineInstr *MI, unsigned Base, unsigned Bytes, unsigned Limit, ARMCC::CondCodes Pred, unsigned PredReg) argument
1157 unsigned Limit = isAM5 ? 0 : (isAM2 ? 0x1000 : 0x100); local
1923 int Limit = (1 << 8) * Scale; local
1933 int Limit = (1 << 8) * Scale; local
[all...]
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
H A Dcmspcs.c112 const cmsFloat64Number Limit = (24.0/116.0) * (24.0/116.0) * (24.0/116.0); local
114 if (t <= Limit)
123 const cmsFloat64Number Limit = (24.0/116.0); local
125 if (t <= Limit) {
H A Dcmsvirt.c395 cmsFloat64Number Limit)
407 if (Limit < 0.0 || Limit > 400) {
409 cmsSignalError(ContextID, cmsERROR_RANGE, "InkLimiting: Limit should be between 0..400");
410 if (Limit < 0) Limit = 0;
411 if (Limit > 400) Limit = 400;
438 if (!cmsStageSampleCLut16bit(CLUT, InkLimitingSampler, (void*) &Limit, 0)) goto Error;
467 cmsHPROFILE CMSEXPORT cmsCreateInkLimitingDeviceLink(cmsColorSpaceSignature ColorSpace, cmsFloat64Number Limit) argument
393 cmsCreateInkLimitingDeviceLinkTHR(cmsContext ContextID, cmsColorSpaceSignature ColorSpace, cmsFloat64Number Limit) argument
[all...]
/external/clang/include/clang/Basic/
H A DDiagnostic.h414 void setErrorLimit(unsigned Limit) { ErrorLimit = Limit; } argument
418 void setTemplateBacktraceLimit(unsigned Limit) { argument
419 TemplateBacktraceLimit = Limit;
430 void setConstexprBacktraceLimit(unsigned Limit) { argument
431 ConstexprBacktraceLimit = Limit;
/external/clang/lib/Format/
H A DFormat.cpp583 unsigned Limit = local
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)))
615 Limit
646 tryMergeSimplePPDirective(SmallVectorImpl<AnnotatedLine *>::const_iterator I, SmallVectorImpl<AnnotatedLine *>::const_iterator E, unsigned Limit) argument
660 tryMergeSimpleControlStatement( SmallVectorImpl<AnnotatedLine *>::const_iterator I, SmallVectorImpl<AnnotatedLine *>::const_iterator E, unsigned Limit) argument
690 tryMergeSimpleBlock(SmallVectorImpl<AnnotatedLine *>::const_iterator I, SmallVectorImpl<AnnotatedLine *>::const_iterator E, unsigned Limit) argument
763 limitConsideringMacros(SmallVectorImpl<AnnotatedLine *>::const_iterator I, SmallVectorImpl<AnnotatedLine *>::const_iterator E, unsigned Limit) argument
773 nextTwoLinesFitInto(SmallVectorImpl<AnnotatedLine *>::const_iterator I, unsigned Limit) argument
[all...]
/external/clang/lib/Sema/
H A DSemaTemplateInstantiate.cpp396 unsigned Limit = Diags.getTemplateBacktraceLimit(); local
397 if (Limit && Limit < ActiveTemplateInstantiations.size()) {
398 SkipStart = Limit / 2 + Limit % 2;
399 SkipEnd = ActiveTemplateInstantiations.size() - Limit / 2;
415 << unsigned(ActiveTemplateInstantiations.size() - Limit);
/external/llvm/lib/Target/Hexagon/
H A DHexagonHardwareLoops.cpp999 int Limit = HWLoopLimit; local
1000 if (Limit >= 0) {
/external/clang/lib/AST/
H A DExprConstant.cpp570 void addCallStack(unsigned Limit);
603 unsigned Limit = Ctx.getDiagnostics().getConstexprBacktraceLimit(); local
604 if (Limit)
605 CallStackNotes = std::min(CallStackNotes, Limit + 1);
614 addCallStack(Limit);
845 void EvalInfo::addCallStack(unsigned Limit) { argument
849 if (Limit && Limit < ActiveCalls) {
850 SkipStart = Limit / 2 + Limit
[all...]

Completed in 861 milliseconds

12