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

12 3 4 5

  /art/runtime/gc/accounting/
read_barrier_table.h 48 uint8_t* entry_end = EntryFromAddr(space->Limit());
remembered_set.cc 178 DCHECK_LE(end, space_->Limit());
  /art/runtime/gc/collector/
immune_spaces.cc 46 uintptr_t space_end = reinterpret_cast<uintptr_t>(space->Limit());
  /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;
  /hardware/intel/img/psb_video/src/
tng_jpegES.h 59 IMG_UINT32 Limit;
  /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/check/
LimitTest.java 25 * Unit tests for {@link Limit}.
29 private Limit limit; field in class:LimitTest
33 limit = new Limit();
38 assertNull(limit.getMinimum());
39 assertNull(limit.getMaximum());
40 assertEquals(CounterEntity.INSTRUCTION, limit.getEntity());
41 assertEquals(CounterValue.COVEREDRATIO, limit.getValue());
46 limit.setValue(CounterValue.TOTALCOUNT.name())
    [all...]
  /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/protobuf/src/google/protobuf/io/
coded_stream_unittest.cc 1002 CodedInputStream::Limit limit = coded_input.PushLimit(8); local
1113 CodedInputStream::Limit limit = coded_input.PushLimit(4); local
1128 CodedInputStream::Limit limit = coded_input.PushLimit(-1234); local
1141 CodedInputStream::Limit limit = coded_input.PushLimit(-64); local
1155 CodedInputStream::Limit limit = coded_input.PushLimit(INT_MAX); local
1198 CodedInputStream::Limit limit = coded_input.PushLimit(16); local
    [all...]
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...]
coded_stream.cc 107 // The limit position is in the current buffer. We must adjust
116 CodedInputStream::Limit CodedInputStream::PushLimit(int byte_limit) {
120 Limit old_limit = current_limit_;
133 // limit was before the new requested limit, we continue to enforce the
134 // previous limit.
141 void CodedInputStream::PopLimit(Limit limit) {
142 // The limit passed in is actually the *old* limit, which we returned fro
    [all...]
  /art/runtime/gc/space/
region_space.cc 71 CHECK_EQ(regions_[num_regions_ - 1].End(), Limit());
285 << reinterpret_cast<void*>(Begin()) << "-" << reinterpret_cast<void*>(Limit());
305 if (end_addr < Limit()) {
bump_pointer_space.h 77 // Removes the fork time growth limit on capacity, allowing the application to allocate up to the
80 growth_end_ = Limit();
131 BumpPointerSpace(const std::string& name, uint8_t* begin, uint8_t* limit);
  /external/compiler-rt/lib/ubsan/
ubsan_diag.cc 251 const uptr Limit = (uptr)-1;
252 return (LHS > Limit - RHS) ? Limit : LHS + RHS;
  /external/ppp/pppd/plugins/radius/etc/
dictionary 38 # 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
126 # What to assume as limit - 0 in+out, 1 in, 2 out, 3 max(in,out)
dictionary.microsoft 26 ATTRIBUTE MS-Link-Drop-Time-Limit 15 integer Microsoft
dictionary.ascend 17 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
  /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/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/include/clang/Basic/
Diagnostic.h 182 unsigned ErrorLimit; // Cap of # errors emitted, 0 -> no limit.
184 // 0 -> no limit.
186 // backtrace stack, 0 -> no limit.
407 /// \brief Specify a limit for the number of errors we should
410 /// Zero disables the limit.
411 void setErrorLimit(unsigned Limit) { ErrorLimit = Limit; }
415 void setTemplateBacktraceLimit(unsigned Limit) {
416 TemplateBacktraceLimit = Limit;
427 void setConstexprBacktraceLimit(unsigned Limit) {
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64LoadStoreOptimizer.cpp 47 static cl::opt<unsigned> ScanLimit("aarch64-load-store-scan-limit",
95 unsigned Limit);
109 findMatchingUpdateInsnForward(MachineBasicBlock::iterator I, unsigned Limit,
116 findMatchingUpdateInsnBackward(MachineBasicBlock::iterator I, unsigned Limit);
870 LdStPairFlags &Flags, unsigned Limit) {
910 for (unsigned Count = 0; MBBI != E && Count < Limit; ++MBBI) {
    [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...]
  /external/jacoco/org.jacoco.ant/src/org/jacoco/ant/
ReportTask.java 49 import org.jacoco.report.check.Limit;
395 final Limit limit, final String message) {

Completed in 941 milliseconds

12 3 4 5