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

  /external/protobuf/src/google/protobuf/io/
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...]
  /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/lib/Target/ARM/
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)
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...]
  /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/
SelectionDAG.cpp     [all...]

Completed in 1864 milliseconds