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

1 2 3

  /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/llvm/lib/Analysis/
CFG.cpp 138 // Limit the number of blocks we visit. The goal is to avoid run-away compile
140 unsigned Limit = 32;
153 if (!--Limit) {
MemoryDependenceAnalysis.cpp 53 // Limit for the number of instructions to scan in a block.
56 "memdep-block-scan-limit", cl::Hidden, cl::init(100),
60 // Limit on the number of memdep results to process.
209 unsigned Limit = BlockScanLimit;
213 // Limit the amount of scanning we do so we don't end up with quadratic
215 --Limit;
216 if (!Limit)
454 unsigned Limit = BlockScanLimit;
511 // Limit the amount of scanning we do so we don't end up with quadratic
513 --Limit;
    [all...]
  /external/llvm/lib/CodeGen/
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)
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...]
MachineLICM.cpp 103 // Register pressure "limit" per register pressure set. If the pressure
104 // is higher than the limit, then it's considered high.
    [all...]
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/check/
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() {
  /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);
  /external/compiler-rt/lib/ubsan/
ubsan_diag.cc 251 const uptr Limit = (uptr)-1;
252 return (LHS > Limit - RHS) ? Limit : LHS + RHS;
  /external/llvm/lib/Target/AMDGPU/
SIInsertWaits.cpp 254 Counters Limit = ZeroCounts;
260 Limit.Array[i] = LastIssued.Array[i];
311 DefinedRegs[j] = Limit;
315 UsedRegs[j] = Limit;
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/llvm/lib/Target/PowerPC/
PPCCTRLoops.cpp 452 // Stop trying after reaching the limit (if any).
453 int Limit = CTRLoopLimit;
454 if (Limit >= 0) {
  /external/v8/src/heap/
store-buffer.h 73 Object*** Limit() { return reinterpret_cast<Object***>(old_limit_); }
78 DCHECK(top <= Limit());
  /art/runtime/gc/space/
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/protobuf/src/google/protobuf/io/
coded_stream.h 106 // However, for practicality we set a limit at 64 bits. The maximum encoded
170 // successfully and the stream's byte limit.
302 // limit.
307 typedef int Limit;
309 // Places a limit on the number of bytes that the stream may read,
310 // starting from the current position. Once the stream hits this limit,
315 // shortest limit on the stack is always enforced, even if it is not the
316 // top limit.
320 Limit PushLimit(int byte_limit);
322 // Pops the last limit pushed by PushLimit(). The input must be the valu
    [all...]
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/io/
coded_stream.h 106 // However, for practicality we set a limit at 64 bits. The maximum encoded
170 // successfully and the stream's byte limit.
291 // limit.
296 typedef int Limit;
298 // Places a limit on the number of bytes that the stream may read,
299 // starting from the current position. Once the stream hits this limit,
304 // shortest limit on the stack is always enforced, even if it is not the
305 // top limit.
309 Limit PushLimit(int byte_limit);
311 // Pops the last limit pushed by PushLimit(). The input must be the valu
    [all...]
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/io/
coded_stream.h 106 // However, for practicality we set a limit at 64 bits. The maximum encoded
170 // successfully and the stream's byte limit.
291 // limit.
296 typedef int Limit;
298 // Places a limit on the number of bytes that the stream may read,
299 // starting from the current position. Once the stream hits this limit,
304 // shortest limit on the stack is always enforced, even if it is not the
305 // top limit.
309 Limit PushLimit(int byte_limit);
311 // Pops the last limit pushed by PushLimit(). The input must be the valu
    [all...]
  /prebuilts/misc/windows/protobuf2.5/include/google/protobuf/io/
coded_stream.h 106 // However, for practicality we set a limit at 64 bits. The maximum encoded
170 // successfully and the stream's byte limit.
291 // limit.
296 typedef int Limit;
298 // Places a limit on the number of bytes that the stream may read,
299 // starting from the current position. Once the stream hits this limit,
304 // shortest limit on the stack is always enforced, even if it is not the
305 // top limit.
309 Limit PushLimit(int byte_limit);
311 // Pops the last limit pushed by PushLimit(). The input must be the valu
    [all...]
  /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...]
  /prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/io/
coded_stream.h 106 // However, for practicality we set a limit at 64 bits. The maximum encoded
170 // successfully and the stream's byte limit.
291 // limit.
296 typedef int Limit;
298 // Places a limit on the number of bytes that the stream may read,
299 // starting from the current position. Once the stream hits this limit,
304 // shortest limit on the stack is always enforced, even if it is not the
305 // top limit.
309 Limit PushLimit(int byte_limit);
311 // Pops the last limit pushed by PushLimit(). The input must be the valu
    [all...]
  /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...]
  /external/llvm/lib/Target/ARM/
Thumb2SizeReduction.cpp 34 static cl::opt<int> ReduceLimit("t2-reduce-limit",
48 uint8_t Imm1Limit; // Limit of immediate field (bits)
49 uint8_t Imm2Limit; // Limit of immediate field when it's two-address
693 unsigned Limit = (1 << Entry.Imm2Limit) - 1;
694 if (Imm > Limit)
776 unsigned Limit = ~0U;
778 Limit = (1 << Entry.Imm1Limit) - 1;
793 if (((unsigned)MO.getImm()) > Limit)
    [all...]
  /hardware/intel/img/psb_video/src/
tng_jpegES.h 59 IMG_UINT32 Limit;
  /external/llvm/lib/Target/Hexagon/
HexagonSplitDouble.cpp     [all...]

Completed in 460 milliseconds

1 2 3