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

  /external/protobuf/src/google/protobuf/io/
coded_stream_unittest.cc 786 CodedInputStream::Limit limit = coded_input.PushLimit(8); local
788 // Read until we hit the limit.
798 coded_input.PopLimit(limit);
816 CodedInputStream::Limit limit1 = coded_input.PushLimit(8);
818 CodedInputStream::Limit limit2 = coded_input.PushLimit(4);
822 // Read until we hit limit2, the top and shortest limit.
849 // longer. In this case, the top limit is shortened to match the previous
850 // limit.
858 CodedInputStream::Limit limit1 = coded_input.PushLimit(4)
897 CodedInputStream::Limit limit = coded_input.PushLimit(4); local
912 CodedInputStream::Limit limit = coded_input.PushLimit(-1234); local
925 CodedInputStream::Limit limit = coded_input.PushLimit(-64); local
939 CodedInputStream::Limit limit = coded_input.PushLimit(INT_MAX); local
978 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
157 // successfully and the stream's byte limit.
275 // limit.
280 typedef int Limit;
282 // Places a limit on the number of bytes that the stream may read,
283 // starting from the current position. Once the stream hits this limit,
288 // shortest limit on the stack is always enforced, even if it is not the
289 // top limit.
293 Limit PushLimit(int byte_limit);
295 // Pops the last limit pushed by PushLimit(). The input must be the valu
    [all...]
coded_stream.cc 81 // The limit position is in the current buffer. We must adjust
90 CodedInputStream::Limit CodedInputStream::PushLimit(int byte_limit) {
95 Limit old_limit = current_limit_;
108 // limit was before the new requested limit, we continue to enforce the
109 // previous limit.
116 void CodedInputStream::PopLimit(Limit limit) {
117 // The limit passed in is actually the *old* limit, which we returned fro
    [all...]
  /external/llvm/lib/Target/ARM/
ARMLoadStoreOptimizer.cpp 454 unsigned Limit = ~0U;
456 // vldm / vstm limit are 32 for S variants, 16 for D variants.
461 Limit = 32;
464 Limit = 16;
467 Limit = 16;
470 Limit = 32;
482 // limit on the number of registers per instruction.
486 ((Count < Limit) && RegNum == PRegNum+1))) {
510 unsigned Bytes, unsigned Limit,
521 if (Bytes == 0 || (Limit && Bytes >= Limit)
    [all...]
ARMFrameLowering.cpp 793 /// frames and return the stack size limit beyond which some of these
799 unsigned Limit = (1 << 12) - 1;
809 Limit = std::min(Limit, (1U << 8) - 1);
817 Limit = std::min(Limit, (1U << 8) - 1);
821 Limit = std::min(Limit, ((1U << 8) - 1) * 4);
    [all...]
Thumb2SizeReduction.cpp 31 static cl::opt<int> ReduceLimit("t2-reduce-limit",
45 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;
604 if (Imm > Limit)
681 unsigned Limit = ~0U;
683 Limit = (1 << Entry.Imm1Limit) - 1;
698 if (((unsigned)MO.getImm()) > Limit)
  /external/clang/include/clang/Basic/
Diagnostic.h 158 unsigned ErrorLimit; // Cap of # errors emitted, 0 -> no limit.
160 // 0 -> no limit.
357 /// setErrorLimit - Specify a limit for the number of errors we should
358 /// emit before giving up. Zero disables the limit.
359 void setErrorLimit(unsigned Limit) { ErrorLimit = Limit; }
363 void setTemplateBacktraceLimit(unsigned Limit) {
364 TemplateBacktraceLimit = Limit;
    [all...]
  /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
  /external/llvm/lib/Analysis/
MemoryDependenceAnalysis.cpp 50 // Limit for the number of instructions to scan in a block.
194 unsigned Limit = BlockScanLimit;
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;
349 // Limit the amount of scanning we do so we don't end up with quadratic
351 --Limit;
352 if (!Limit)
    [all...]
  /external/llvm/include/llvm/
Constants.h 210 /// getLimitedValue - If the value is smaller than the specified limit,
211 /// return it, otherwise return the limit value. This causes the value
212 /// to saturate to the limit.
214 /// @brief Get the constant's value with a saturation limit
215 uint64_t getLimitedValue(uint64_t Limit = ~0ULL) const {
216 return Val.getLimitedValue(Limit);
    [all...]
  /external/protobuf/src/google/protobuf/
wire_format_lite.cc 194 io::CodedInputStream::Limit limit = input->PushLimit(length);
205 input->PopLimit(limit);
wire_format_lite_inl.h 327 io::CodedInputStream::Limit limit = input->PushLimit(length);
333 input->PopLimit(limit);
361 io::CodedInputStream::Limit limit = input->PushLimit(length);
363 // Make sure that parsing stopped when the limit was hit, not at an endgroup
366 input->PopLimit(limit);
390 io::CodedInputStream::Limit limit = input->PushLimit(length);
392 // Make sure that parsing stopped when the limit was hit, not at an endgrou
    [all...]
wire_format.cc 450 io::CodedInputStream::Limit limit = input->PushLimit(length);
508 input->PopLimit(limit);
    [all...]
extension_set.cc 729 io::CodedInputStream::Limit limit = input->PushLimit(size);
    [all...]
  /external/llvm/include/llvm/ADT/
APInt.h 382 /// getLimitedValue - If this value is smaller than the specified limit,
383 /// return it, otherwise return the limit value. This causes the value
384 /// to saturate to the limit.
385 uint64_t getLimitedValue(uint64_t Limit = ~0ULL) const {
386 return (getActiveBits() > 64 || getZExtValue() > Limit) ?
387 Limit : getZExtValue();
    [all...]
  /external/clang/lib/Sema/
SemaTemplateInstantiate.cpp 424 unsigned Limit = Diags.getTemplateBacktraceLimit();
425 if (Limit && Limit < ActiveTemplateInstantiations.size()) {
426 SkipStart = Limit / 2 + Limit % 2;
427 SkipEnd = ActiveTemplateInstantiations.size() - Limit / 2;
443 << unsigned(ActiveTemplateInstantiations.size() - Limit);
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGRRList.cpp     [all...]
SelectionDAG.cpp     [all...]
  /external/v8/tools/
tickprocessor.js 553 // Limit backtrace depth.
  /external/v8/src/
mirror-debugger.js 615 * @param {number} limit Limit the number of names returend to the specified
619 ObjectMirror.prototype.propertyNames = function(kind, limit) {
620 // Find kind and limit and allocate array for the result
660 limit = Math.min(limit || total, total);
662 var names = new Array(limit);
667 for (var i = 0; index < limit && i < propertyNames.length; i++) {
674 for (var i = 0; index < limit && i < elementNames.length; i++) {
687 * @param {number} limit Limit the number of properties returend to th
    [all...]

Completed in 396 milliseconds