Searched refs:Limit (Results 1 - 25 of 56) sorted by relevance

123

/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.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 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)
/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/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/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/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/chromium_org/third_party/protobuf/src/google/protobuf/io/
H A Dcoded_stream_unittest.cc819 CodedInputStream::Limit limit = coded_input.PushLimit(8);
849 CodedInputStream::Limit limit1 = coded_input.PushLimit(8);
851 CodedInputStream::Limit limit2 = coded_input.PushLimit(4);
891 CodedInputStream::Limit limit1 = coded_input.PushLimit(4);
893 CodedInputStream::Limit limit2 = coded_input.PushLimit(8);
930 CodedInputStream::Limit limit = coded_input.PushLimit(4);
945 CodedInputStream::Limit limit = coded_input.PushLimit(-1234);
958 CodedInputStream::Limit limit = coded_input.PushLimit(-64);
972 CodedInputStream::Limit limit = coded_input.PushLimit(INT_MAX);
1011 CodedInputStream::Limit limi
[all...]
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.
H A Dcoded_stream.cc112 CodedInputStream::Limit CodedInputStream::PushLimit(int byte_limit) {
116 Limit old_limit = current_limit_;
137 void CodedInputStream::PopLimit(Limit 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...]
/external/protobuf/src/google/protobuf/io/
H A Dcoded_stream_unittest.cc786 CodedInputStream::Limit limit = coded_input.PushLimit(8);
816 CodedInputStream::Limit limit1 = coded_input.PushLimit(8);
818 CodedInputStream::Limit limit2 = coded_input.PushLimit(4);
858 CodedInputStream::Limit limit1 = coded_input.PushLimit(4);
860 CodedInputStream::Limit limit2 = coded_input.PushLimit(8);
897 CodedInputStream::Limit limit = coded_input.PushLimit(4);
912 CodedInputStream::Limit limit = coded_input.PushLimit(-1234);
925 CodedInputStream::Limit limit = coded_input.PushLimit(-64);
939 CodedInputStream::Limit limit = coded_input.PushLimit(INT_MAX);
978 CodedInputStream::Limit limi
[all...]
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/yasm/source/patched-yasm/modules/objfmts/xdf/tests/
H A Dxdflong.asm7 dw %3 ; Limit 15-0
149 pgdt: dw (gdt_ - gdt0) ; Limit
152 pidt: dw (idt_ - idt0) ; Limit
H A Dxdfprotect.asm7 dw (%3 & 0xFFFF) ; Limit 0-15
122 pgdt: dw 6 * 8 ; Limit
125 pidt: dw 20 * 8 ; Limit
/external/chromium_org/chrome/browser/sync/test/integration/
H A Dmultiple_client_dictionary_sync_test.cc59 IN_PROC_BROWSER_TEST_F(MultipleClientDictionarySyncTest, Limit) {
/external/llvm/lib/Target/ARM/
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...]
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)
/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) {
/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/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.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;

Completed in 5982 milliseconds

123