Searched refs:Limit (Results 1 - 25 of 43) 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 DRegisterPressure.cpp637 unsigned Limit = RCI->getRegPressureSetLimit(i); local
639 Limit += LiveThruPressureVec[i];
641 if (Limit > POld) {
642 if (Limit > PNew)
645 PDiff = PNew - Limit; // Just exceeded limit.
647 else if (Limit > PNew)
648 PDiff = Limit - POld; // Just obeyed limit.
835 unsigned Limit = RCI->getRegPressureSetLimit(PSetID); local
837 Limit += LiveThruPressure[PSetID];
850 if (PNew > Limit)
[all...]
H A DInterferenceCache.cpp183 SlotIndex Limit = BI->First.isValid() ? BI->First : Stop; local
185 i != e && RegMaskSlots[i] < Limit; ++i)
240 SlotIndex Limit = BI->Last.isValid() ? BI->Last : Start; local
242 i && RegMaskSlots[i-1].getDeadSlot() > Limit; --i)
/external/clang/lib/Format/
H A DUnwrappedLineFormatter.cpp54 unsigned Limit = local
56 // If we already exceed the column limit, we set 'Limit' to 0. The different
58 Limit = TheLine->Last->TotalLength > Limit
60 : Limit - TheLine->Last->TotalLength;
73 return MergeShortFunctions ? tryMergeSimpleBlock(I, E, Limit) : 0;
77 ? tryMergeSimpleBlock(I, E, Limit)
85 // Check for Limit <= 2 to account for the " {".
86 if (Limit <= 2 || (Style.ColumnLimit == 0 && containsMustBreak(TheLine)))
88 Limit
124 tryMergeSimplePPDirective(SmallVectorImpl<AnnotatedLine *>::const_iterator I, SmallVectorImpl<AnnotatedLine *>::const_iterator E, unsigned Limit) argument
136 tryMergeSimpleControlStatement( SmallVectorImpl<AnnotatedLine *>::const_iterator I, SmallVectorImpl<AnnotatedLine *>::const_iterator E, unsigned Limit) argument
164 tryMergeShortCaseLabels( SmallVectorImpl<AnnotatedLine *>::const_iterator I, SmallVectorImpl<AnnotatedLine *>::const_iterator E, unsigned Limit) argument
192 tryMergeSimpleBlock(SmallVectorImpl<AnnotatedLine *>::const_iterator I, SmallVectorImpl<AnnotatedLine *>::const_iterator E, unsigned Limit) argument
275 limitConsideringMacros(SmallVectorImpl<AnnotatedLine *>::const_iterator I, SmallVectorImpl<AnnotatedLine *>::const_iterator E, unsigned Limit) argument
285 nextTwoLinesFitInto(SmallVectorImpl<AnnotatedLine *>::const_iterator I, unsigned Limit) argument
[all...]
/external/llvm/lib/Target/SystemZ/
H A DSystemZSelectionDAGInfo.cpp217 SDValue Limit = DAG.getNode(ISD::ADD, DL, PtrVT, Src, Length); local
219 Limit, Src, Char);
257 // Search from Src for a null character, stopping once Src reaches Limit.
261 // This can be used for strlen by setting Limit to 0.
264 SDValue Limit) {
268 Limit, Src, DAG.getConstant(0, MVT::i32));
287 SDValue Limit = DAG.getNode(ISD::ADD, DL, PtrVT, Src, MaxLength); local
288 return getBoundedStrlen(DAG, DL, Chain, Src, Limit);
262 getBoundedStrlen(SelectionDAG &DAG, SDLoc DL, SDValue Chain, SDValue Src, SDValue Limit) argument
/external/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/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
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...]
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) {
/external/llvm/lib/Target/R600/
H A DSIRegisterInfo.cpp53 unsigned Limit = AMDGPUSubtarget::FIXED_SGPR_COUNT_FOR_INIT_BUG - 4; local
55 for (unsigned i = Limit; i < NumSGPRs; ++i) {
80 unsigned Limit; local
83 Limit = SGPRLimit / NumSubRegs;
85 Limit = VGPRLimit / NumSubRegs;
92 return Limit;
/external/compiler-rt/lib/ubsan/
H A Dubsan_diag.cc214 const uptr Limit = (uptr)-1; local
215 return (LHS > Limit - RHS) ? Limit : LHS + RHS;
/external/llvm/lib/Target/ARM/
H A DARMLoadStoreOptimizer.cpp846 unsigned Limit = ~0U; local
853 Limit = 32;
856 Limit = 16;
859 Limit = 16;
862 Limit = 32;
877 ((Count < Limit) && RegNum == PRegNum+1)) &&
909 unsigned Bytes, unsigned Limit,
928 if (Bytes == 0 || (Limit && Bytes >= Limit))
944 unsigned Bytes, unsigned Limit,
908 isMatchingDecrement(MachineInstr *MI, unsigned Base, unsigned Bytes, unsigned Limit, ARMCC::CondCodes Pred, unsigned PredReg) argument
943 isMatchingIncrement(MachineInstr *MI, unsigned Base, unsigned Bytes, unsigned Limit, ARMCC::CondCodes Pred, unsigned PredReg) argument
1274 unsigned Limit = isAM5 ? 0 : (isAM2 ? 0x1000 : 0x100); local
2007 int Limit = (1 << 8) * Scale; local
2017 int Limit = (1 << 8) * Scale; local
[all...]
H A DThumb2SizeReduction.cpp48 uint8_t Imm1Limit; // Limit of immediate field (bits)
49 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.cpp1414 unsigned Limit = (1 << 12) - 1; local
1424 Limit = std::min(Limit, (1U << 8) - 1);
1432 Limit = std::min(Limit, (1U << 8) - 1);
1436 Limit = std::min(Limit, ((1U << 8) - 1) * 4);
1442 Limit = std::min(Limit, (1U << 8) - 1);
1457 return Limit;
[all...]
/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.cpp51 // Limit for the number of instructions to scan in a block.
54 // Limit on the number of memdep results to process.
204 unsigned Limit = BlockScanLimit; local
208 // Limit the amount of scanning we do so we don't end up with quadratic
210 --Limit;
211 if (!Limit)
380 unsigned Limit = BlockScanLimit; local
431 // Limit the amount of scanning we do so we don't end up with quadratic
433 --Limit;
434 if (!Limit)
[all...]
/external/protobuf/src/google/protobuf/io/
H A Dcoded_stream_unittest.cc1002 CodedInputStream::Limit limit = coded_input.PushLimit(8);
1032 CodedInputStream::Limit limit1 = coded_input.PushLimit(8);
1034 CodedInputStream::Limit limit2 = coded_input.PushLimit(4);
1074 CodedInputStream::Limit limit1 = coded_input.PushLimit(4);
1076 CodedInputStream::Limit limit2 = coded_input.PushLimit(8);
1113 CodedInputStream::Limit limit = coded_input.PushLimit(4);
1128 CodedInputStream::Limit limit = coded_input.PushLimit(-1234);
1141 CodedInputStream::Limit limit = coded_input.PushLimit(-64);
1155 CodedInputStream::Limit limit = coded_input.PushLimit(INT_MAX);
1198 CodedInputStream::Limit limi
[all...]
H A Dcoded_stream.h307 typedef int Limit; typedef in class:google::protobuf::io::CodedInputStream
320 Limit PushLimit(int byte_limit);
324 void PopLimit(Limit limit);
333 // Total Bytes Limit -----------------------------------------------
370 // The Total Bytes Limit minus the Current Position, or -1 if there
371 // is no Total Bytes Limit.
374 // Recursion Limit -------------------------------------------------
495 Limit current_limit_; // if position = -1, no limit is applied
510 // If positive/0: Limit for bytes read after which a warning due to size
513 // If -2: Internal: Limit ha
[all...]
H A Dcoded_stream.cc116 CodedInputStream::Limit CodedInputStream::PushLimit(int byte_limit) {
120 Limit old_limit = current_limit_;
141 void CodedInputStream::PopLimit(Limit limit) {
/external/llvm/lib/Target/AArch64/
H A DAArch64LoadStoreOptimizer.cpp73 unsigned Limit);
89 findMatchingUpdateInsnForward(MachineBasicBlock::iterator I, unsigned Limit,
96 findMatchingUpdateInsnBackward(MachineBasicBlock::iterator I, unsigned Limit);
491 unsigned Limit) {
521 for (unsigned Count = 0; MBBI != E && Count < Limit; ++MBBI) {
757 MachineBasicBlock::iterator I, unsigned Limit, int Value) {
811 MachineBasicBlock::iterator I, unsigned Limit) {
489 findMatchingInsn(MachineBasicBlock::iterator I, bool &MergeForward, int &SExtIdx, unsigned Limit) argument
756 findMatchingUpdateInsnForward( MachineBasicBlock::iterator I, unsigned Limit, int Value) argument
810 findMatchingUpdateInsnBackward( MachineBasicBlock::iterator I, unsigned Limit) argument
/external/ppp/pppd/plugins/radius/etc/
H A Ddictionary38 # ATTRIBUTE RP-Upstream-Speed-Limit 1 integer RoaringPenguin
41 # RP-Upstream-Speed-Limit, number 1, type integer and vendor RoaringPenguin.
87 ATTRIBUTE Port-Limit 62 integer
124 # Limit session traffic
125 ATTRIBUTE Session-Octets-Limit 227 integer
H A Ddictionary.microsoft26 ATTRIBUTE MS-Link-Drop-Time-Limit 15 integer Microsoft
H A Ddictionary.ascend17 ATTRIBUTE Ascend-Call-Attempt-Limit 123 integer
46 ATTRIBUTE Ascend-Multicast-Rate-Limit 152 integer
63 ATTRIBUTE Ascend-TS-Idle-Limit 169 integer
136 ATTRIBUTE Ascend-Idle-Limit 244 integer
137 ATTRIBUTE Ascend-Preempt-Limit 245 integer
/external/clang/include/clang/Basic/
H A DDiagnostic.h410 void setErrorLimit(unsigned Limit) { ErrorLimit = Limit; } argument
414 void setTemplateBacktraceLimit(unsigned Limit) { argument
415 TemplateBacktraceLimit = Limit;
426 void setConstexprBacktraceLimit(unsigned Limit) { argument
427 ConstexprBacktraceLimit = Limit;
/external/llvm/lib/Target/PowerPC/
H A DPPCCTRLoops.cpp436 int Limit = CTRLoopLimit; local
437 if (Limit >= 0) {
/external/llvm/include/llvm/ADT/
H A DAPInt.h405 uint64_t getLimitedValue(uint64_t Limit = ~0ULL) const {
406 return (getActiveBits() > 64 || getZExtValue() > Limit) ? Limit

Completed in 6530 milliseconds

12