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

12

/external/compiler-rt/test/esan/TestCases/
H A Dlarge-stack-linux.c14 struct rlimit Limit; local
15 Limit.rlim_cur = RLIM_INFINITY;
16 Limit.rlim_max = RLIM_INFINITY;
17 Res = setrlimit(RLIMIT_STACK, &Limit);
/external/llvm/lib/CodeGen/
H A DAllocationOrder.h50 unsigned next(unsigned Limit = 0) {
53 if (!Limit)
54 Limit = Order.size();
55 while (Pos < int(Limit)) {
64 /// Limit'th register in the RegisterClassInfo allocation order.
66 /// This can produce more than Limit registers if there are hints.
67 unsigned nextWithDups(unsigned Limit) { argument
70 if (Pos < int(Limit))
H A DInterferenceCache.cpp184 SlotIndex Limit = BI->First.isValid() ? BI->First : Stop; local
186 i != e && RegMaskSlots[i] < Limit; ++i)
241 SlotIndex Limit = BI->Last.isValid() ? BI->Last : Start; local
243 i && RegMaskSlots[i-1].getDeadSlot() > Limit; --i)
H A DSpillPlacement.cpp343 unsigned Limit = bundles->getNumBundles() * 10; local
344 while(Limit-- > 0 && !TodoList.empty()) {
H A DMachineLICM.cpp1030 int Limit = RegLimit[Class]; local
1038 if (static_cast<int>(RP[Class]) + RPIdAndCost.second >= Limit)
/external/jacoco/org.jacoco.report/src/org/jacoco/report/check/
H A DLimit.java27 public class Limit { class
68 public Limit() { method in class: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.cpp52 // Limit for the number of instructions to scan in a block.
64 // Limit on the number of memdep results to process.
167 unsigned Limit = BlockScanLimit; local
171 // Limit the amount of scanning we do so we don't end up with quadratic
173 --Limit;
174 if (!Limit)
401 unsigned Limit = BlockScanLimit; local
475 // Limit the amount of scanning we do so we don't end up with quadratic
477 --Limit;
478 if (!Limit)
[all...]
/external/llvm/lib/Target/SystemZ/
H A DSystemZSelectionDAGInfo.cpp207 SDValue Limit = DAG.getNode(ISD::ADD, DL, PtrVT, Src, Length); local
209 Limit, Src, Char);
246 // Search from Src for a null character, stopping once Src reaches Limit.
250 // This can be used for strlen by setting Limit to 0.
254 SDValue Limit) {
258 Limit, Src, DAG.getConstant(0, DL, MVT::i32));
276 SDValue Limit = DAG.getNode(ISD::ADD, DL, PtrVT, Src, MaxLength); local
277 return getBoundedStrlen(DAG, DL, Chain, Src, Limit);
251 getBoundedStrlen(SelectionDAG &DAG, const SDLoc &DL, SDValue Chain, SDValue Src, SDValue Limit) argument
/external/compiler-rt/lib/ubsan/
H A Dubsan_diag.cc241 const uptr Limit = (uptr)-1; local
242 return (LHS > Limit - RHS) ? Limit : LHS + RHS;
/external/llvm/lib/Target/AMDGPU/
H A DSIInsertWaits.cpp292 Counters Limit = ZeroCounts; local
298 Limit.Array[i] = LastIssued.Array[i];
347 DefinedRegs[j] = Limit;
351 UsedRegs[j] = Limit;
/external/llvm/lib/Target/PowerPC/
H A DPPCCTRLoops.cpp484 int Limit = CTRLoopLimit; local
485 if (Limit >= 0) {
/external/clang/lib/Format/
H A DUnwrappedLineFormatter.cpp180 unsigned Limit = local
182 // If we already exceed the column limit, we set 'Limit' to 0. The different
184 Limit = TheLine->Last->TotalLength > Limit
186 : Limit - TheLine->Last->TotalLength;
199 return MergeShortFunctions ? tryMergeSimpleBlock(I, E, Limit) : 0;
203 ? tryMergeSimpleBlock(I, E, Limit)
211 // Check for Limit <= 2 to account for the " {".
212 if (Limit <= 2 || (Style.ColumnLimit == 0 && containsMustBreak(TheLine)))
214 Limit
249 tryMergeSimplePPDirective(SmallVectorImpl<AnnotatedLine *>::const_iterator I, SmallVectorImpl<AnnotatedLine *>::const_iterator E, unsigned Limit) argument
261 tryMergeSimpleControlStatement( SmallVectorImpl<AnnotatedLine *>::const_iterator I, SmallVectorImpl<AnnotatedLine *>::const_iterator E, unsigned Limit) argument
289 tryMergeShortCaseLabels(SmallVectorImpl<AnnotatedLine *>::const_iterator I, SmallVectorImpl<AnnotatedLine *>::const_iterator E, unsigned Limit) argument
318 tryMergeSimpleBlock(SmallVectorImpl<AnnotatedLine *>::const_iterator I, SmallVectorImpl<AnnotatedLine *>::const_iterator E, unsigned Limit) argument
406 limitConsideringMacros(SmallVectorImpl<AnnotatedLine *>::const_iterator I, SmallVectorImpl<AnnotatedLine *>::const_iterator E, unsigned Limit) argument
416 nextTwoLinesFitInto(SmallVectorImpl<AnnotatedLine *>::const_iterator I, unsigned Limit) argument
[all...]
/external/llvm/include/llvm/Bitcode/
H A DBitstreamReader.h358 /// Prevent the cursor from requesting byte reads past \c Limit. This is
362 /// If \c Limit is on a word boundary, AtEndOfStream() will return true if
363 /// the cursor position reaches or exceeds \c Limit, regardless of the true
366 void setArtificialByteLimit(uint64_t Limit) { argument
367 assert(getCurrentByteNo() < Limit && "Move cursor before lowering limit");
370 Limit = alignTo(Limit, sizeof(word_t));
373 if (!Size || Size > Limit)
374 Size = Limit;
/external/llvm/lib/Target/ARM/
H A DThumb2SizeReduction.cpp49 uint8_t Imm1Limit; // Limit of immediate field (bits)
50 uint8_t Imm2Limit; // Limit of immediate field when it's two-address
741 unsigned Limit = (1 << Entry.Imm2Limit) - 1; local
742 if (Imm > Limit)
824 unsigned Limit = ~0U; local
826 Limit = (1 << Entry.Imm1Limit) - 1;
841 if (((unsigned)MO.getImm()) > Limit)
/external/protobuf/src/google/protobuf/io/
H A Dcoded_stream.h314 typedef int Limit; typedef in class:google::protobuf::io::CodedInputStream
327 Limit PushLimit(int byte_limit);
331 void PopLimit(Limit limit);
340 // Total Bytes Limit -----------------------------------------------
377 // The Total Bytes Limit minus the Current Position, or -1 if there
378 // is no Total Bytes Limit.
381 // Recursion Limit -------------------------------------------------
408 std::pair<CodedInputStream::Limit, int> IncrementRecursionDepthAndPushLimit(
412 Limit ReadLengthAndPushLimit();
421 bool DecrementRecursionDepthAndPopLimit(Limit limi
[all...]
/external/swiftshader/third_party/LLVM/lib/Analysis/
H A DMemoryDependenceAnalysis.cpp50 // Limit for the number of instructions to scan in a block.
194 unsigned Limit = BlockScanLimit; local
198 // Limit the amount of scanning we do so we don't end up with quadratic
200 --Limit;
201 if (!Limit)
345 unsigned Limit = BlockScanLimit; local
349 // Limit the amount of scanning we do so we don't end up with quadratic
351 --Limit;
352 if (!Limit)
/external/swiftshader/third_party/LLVM/lib/Target/ARM/
H A DARMFrameLowering.cpp809 unsigned Limit = (1 << 12) - 1; local
819 Limit = std::min(Limit, (1U << 8) - 1);
827 Limit = std::min(Limit, (1U << 8) - 1);
831 Limit = std::min(Limit, ((1U << 8) - 1) * 4);
837 Limit = std::min(Limit, (1U << 8) - 1);
852 return Limit;
[all...]
H A DThumb2SizeReduction.cpp45 uint8_t Imm1Limit; // Limit of immediate field (bits)
46 uint8_t Imm2Limit; // Limit of immediate field when it's two-address
603 unsigned Limit = (1 << Entry.Imm2Limit) - 1; local
604 if (Imm > Limit)
681 unsigned Limit = ~0U; local
683 Limit = (1 << Entry.Imm1Limit) - 1;
698 if (((unsigned)MO.getImm()) > Limit)
/external/llvm/lib/Target/AArch64/
H A DAArch64LoadStoreOptimizer.cpp106 unsigned Limit,
111 bool findMatchingStore(MachineBasicBlock::iterator I, unsigned Limit,
136 int UnscaledOffset, unsigned Limit);
142 findMatchingUpdateInsnBackward(MachineBasicBlock::iterator I, unsigned Limit);
1099 MachineBasicBlock::iterator I, unsigned Limit,
1151 } while (MBBI != B && Count < Limit);
1207 LdStPairFlags &Flags, unsigned Limit,
1230 for (unsigned Count = 0; MBBI != E && Count < Limit; ++MBBI) {
1475 MachineBasicBlock::iterator I, int UnscaledOffset, unsigned Limit) {
1503 for (unsigned Count = 0; MBBI != E && Count < Limit;
1098 findMatchingStore( MachineBasicBlock::iterator I, unsigned Limit, MachineBasicBlock::iterator &StoreI) argument
1206 findMatchingInsn(MachineBasicBlock::iterator I, LdStPairFlags &Flags, unsigned Limit, bool FindNarrowMerge) argument
1474 findMatchingUpdateInsnForward( MachineBasicBlock::iterator I, int UnscaledOffset, unsigned Limit) argument
1527 findMatchingUpdateInsnBackward( MachineBasicBlock::iterator I, unsigned Limit) argument
[all...]
/external/llvm/lib/Target/Hexagon/
H A DHexagonSplitDouble.cpp1179 int Limit = MaxHSDR; local
1184 if (Limit >= 0 && Counter >= Limit)
/external/pdfium/third_party/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.h412 void setErrorLimit(unsigned Limit) { ErrorLimit = Limit; } argument
416 void setTemplateBacktraceLimit(unsigned Limit) { argument
417 TemplateBacktraceLimit = Limit;
428 void setConstexprBacktraceLimit(unsigned Limit) { argument
429 ConstexprBacktraceLimit = Limit;
/external/clang/lib/Sema/
H A DSemaTemplateInstantiate.cpp377 unsigned Limit = Diags.getTemplateBacktraceLimit(); local
378 if (Limit && Limit < ActiveTemplateInstantiations.size()) {
379 SkipStart = Limit / 2 + Limit % 2;
380 SkipEnd = ActiveTemplateInstantiations.size() - Limit / 2;
396 << unsigned(ActiveTemplateInstantiations.size() - Limit);

Completed in 611 milliseconds

12