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

1 2 3 4 5

  /external/llvm/lib/CodeGen/
AllocationOrder.h 50 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) {
70 if (Pos < int(Limit))
RegisterPressure.cpp 663 // Only consider change beyond the limit.
664 unsigned Limit = RCI->getRegPressureSetLimit(i);
666 Limit += LiveThruPressureVec[i];
668 if (Limit > POld) {
669 if (Limit > PNew)
670 PDiff = 0; // Under the limit
672 PDiff = PNew - Limit; // Just exceeded limit.
673 } else if (Limit > PNew)
674 PDiff = Limit - POld; // Just obeyed limit
    [all...]
InterferenceCache.cpp 184 SlotIndex Limit = BI->First.isValid() ? BI->First : Stop;
186 i != e && RegMaskSlots[i] < Limit; ++i)
241 SlotIndex Limit = BI->Last.isValid() ? BI->Last : Start;
243 i && RegMaskSlots[i-1].getDeadSlot() > Limit; --i)
  /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/check/
RuleTest.java 54 Limit l1 = new Limit();
55 Limit l2 = new Limit();
56 Limit l3 = new Limit();
63 Limit l1 = new Limit();
64 Limit l2 = new Limit();
    [all...]
RulesCheckerTest.java 30 * Unit tests for {@link Limit}.
48 Limit limit = rule.createLimit(); local
49 limit.setValue(CounterValue.MISSEDCOUNT.name());
50 limit.setMaximum("5");
62 Limit limit = rule.createLimit(); local
63 limit.setValue(CounterValue.MISSEDCOUNT.name());
64 limit.setMaximum("5");
98 public void onViolation(ICoverageNode node, Rule rule, Limit limit
    [all...]
BundleCheckerTest.java 105 final Limit limit = rule.createLimit(); local
106 limit.setMinimum("0.25");
124 final Limit limit = rule.createLimit(); local
125 limit.setMinimum("0.75");
156 public void onViolation(ICoverageNode node, Rule rule, Limit limit,
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/check/
Rule.java 29 private List<Limit> limits;
39 this.limits = new ArrayList<Limit>();
93 * @return list of {@link Limit}s configured for this rule
95 public List<Limit> getLimits() {
101 * list of {@link Limit}s configured for this rule
103 public void setLimits(final List<Limit> limits) {
108 * Creates and adds a new {@link Limit}.
110 * @return creates {@link Limit}
112 public Limit createLimit() {
113 final Limit limit = new Limit() local
    [all...]
IViolationsOutput.java 29 * @param limit
30 * limit which is violated
34 void onViolation(ICoverageNode node, Rule rule, Limit limit, String message);
BundleChecker.java 133 for (final Limit limit : rule.getLimits()) {
134 checkLimit(node, typename, elementname, rule, limit);
141 final String typename, final Rule rule, final Limit limit) {
142 final String message = limit.check(node);
144 output.onViolation(node, rule, limit, String.format(
Limit.java 25 * Descriptor for a limit which is given by a {@link Rule}.
27 public class Limit {
64 * <li>minimum: no limit
65 * <li>maximum: no limit
68 public Limit() {
  /toolchain/binutils/binutils-2.25/ld/emulparams/
armsymbian.sh 13 # .ARM.exidx$${Base,Limit} symbols.
20 ${RELOCATING+ PROVIDE_HIDDEN (.ARM.exidx\$\$Limit = .); }"
  /prebuilts/go/darwin-x86/test/bench/shootout/
mandelbrot.go 59 const Limit = 2.0
69 for i := 0; i < Iter && (Tr+Ti <= Limit*Limit); i++ {
77 if Tr+Ti <= Limit*Limit {
  /prebuilts/go/linux-x86/test/bench/shootout/
mandelbrot.go 59 const Limit = 2.0
69 for i := 0; i < Iter && (Tr+Ti <= Limit*Limit); i++ {
77 if Tr+Ti <= Limit*Limit {
  /external/jacoco/jacoco-maven-plugin/src/org/jacoco/maven/
RuleConfiguration.java 20 import org.jacoco.report.check.Limit;
66 * list of {@link Limit}s configured for this rule
68 public void setLimits(final List<Limit> limits) {
CheckMojo.java 28 import org.jacoco.report.check.Limit;
50 * PACKAGE, CLASS, SOURCEFILE or METHOD) with a list of limits. Each limit
54 * If a limit refers to a ratio the range is from 0.0 to 1.0 where the
59 * <tt>rule</tt> and <tt>limit</tt> when using Maven 2, with Maven 3 you do
74 * <limit implementation="org.jacoco.report.check.Limit">
78 * </limit>
79 * <limit implementation="org.jacoco.report.check.Limit">
83 * </limit>
    [all...]
  /frameworks/base/packages/Osu/src/com/android/hotspot2/pps/
SubscriptionParameters.java 24 private final List<Limit> mLimits;
41 mLimits.add(new Limit(instance));
47 private static class Limit {
53 private Limit(OMANode node) throws OMAException {
63 return "Limit{" +
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/pps/
SubscriptionParameters.java 24 private final List<Limit> mLimits;
42 mLimits.add(new Limit(instance));
48 private static class Limit {
54 private Limit(OMANode node) throws OMAException {
68 return "Limit{" +
  /external/clang/lib/Format/
UnwrappedLineFormatter.cpp 180 unsigned Limit =
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))
    [all...]
  /art/runtime/gc/collector/
immune_spaces_test.cc 169 /*limit*/end) {}
192 DummySpace b(a.Limit(), a.Limit() + 813 * KB);
201 EXPECT_EQ(reinterpret_cast<uint8_t*>(spaces.GetLargestImmuneRegion().End()), b.Limit());
234 image_space->Limit());
236 EXPECT_NE(image_space->Limit(), space.Begin());
248 EXPECT_EQ(reinterpret_cast<uint8_t*>(spaces.GetLargestImmuneRegion().End()), space.Limit());
308 space2->Limit());
319 space3->Limit());
343 space3->Limit());
    [all...]
  /art/runtime/gc/space/
bump_pointer_space.cc 46 BumpPointerSpace::BumpPointerSpace(const std::string& name, uint8_t* begin, uint8_t* limit)
47 : ContinuousMemMapAllocSpace(name, nullptr, begin, begin, limit,
49 growth_end_(limit),
69 memset(Begin(), 0, Limit() - Begin());
71 CHECK_NE(madvise(Begin(), Limit() - Begin(), MADV_DONTNEED), -1) << "madvise failed";
77 growth_end_ = Limit();
88 << reinterpret_cast<void*>(Limit());
268 size_t max_contiguous_allocation = Limit() - End();
space.h 280 uint8_t* Limit() const {
290 void SetLimit(uint8_t* limit) {
291 limit_ = limit;
304 return Limit() - Begin();
311 return byte_ptr >= Begin() && byte_ptr < Limit();
326 uint8_t* begin, uint8_t* end, uint8_t* limit) :
327 Space(name, gc_retention_policy), begin_(begin), end_(end), limit_(limit) {
336 // Limit of the space.
374 // Size of the space without a limit on its growth. By default this is just the Capacity, but
393 MemMapSpace(const std::string& name, MemMap* mem_map, uint8_t* begin, uint8_t* end, uint8_t* limit,
    [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZSelectionDAGInfo.cpp 212 SDValue Limit = DAG.getNode(ISD::ADD, DL, PtrVT, Src, Length);
214 Limit, Src, Char);
253 // Search from Src for a null character, stopping once Src reaches Limit.
257 // This can be used for strlen by setting Limit to 0.
260 SDValue Limit) {
264 Limit, Src, DAG.getConstant(0, DL, MVT::i32));
283 SDValue Limit = DAG.getNode(ISD::ADD, DL, PtrVT, Src, MaxLength);
284 return getBoundedStrlen(DAG, DL, Chain, Src, Limit);
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/io/
coded_stream.h 106 // However, for practicality we set a limit at 64 bits. The maximum encoded
173 // successfully and the stream's byte limit.
309 // limit.
314 typedef int Limit;
316 // Places a limit on the number of bytes that the stream may read,
317 // starting from the current position. Once the stream hits this limit,
322 // shortest limit on the stack is always enforced, even if it is not the
323 // top limit.
327 Limit PushLimit(int byte_limit);
329 // Pops the last limit pushed by PushLimit(). The input must be the valu
    [all...]
  /external/llvm/lib/Target/AMDGPU/
SIRegisterInfo.cpp 97 unsigned Limit = AMDGPUSubtarget::FIXED_SGPR_COUNT_FOR_INIT_BUG - 4;
99 for (unsigned i = Limit; i < NumSGPRs; ++i) {
140 unsigned Limit;
145 Limit = VSLimit;
147 Limit = SGPRLimit / NumSubRegs;
149 Limit = VGPRLimit / NumSubRegs;
156 return Limit;
  /external/pdfium/third_party/lcms2-2.6/src/
cmsvirt.c 395 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)
    [all...]

Completed in 653 milliseconds

1 2 3 4 5