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

  /external/lzma/CPP/Common/
CommandLineParser.h 30 int MaxLen;
CommandLineParser.cpp 105 int maxLen = kNoLen;
109 if (switchLen <= maxLen || pos + switchLen > len)
118 maxLen = switchLen;
121 if (maxLen == kNoLen)
122 throw "maxLen == kNoLen";
128 pos += maxLen;
177 int maxLen = switchForm.MaxLen;
180 for (int i = minLen; i < maxLen && pos < len; i++, pos++)
  /external/llvm/lib/MC/
SubtargetFeature.cpp 141 size_t MaxLen = 0;
143 MaxLen = std::max(MaxLen, std::strlen(Table[i].Key));
144 return MaxLen;
  /external/lzma/CS/7zip/Common/
CommandLineParser.cs 23 public int MaxLen;
27 int minLen, int maxLen, string postCharSet)
33 MaxLen = maxLen;
84 int maxLen = kNoLen;
88 if (switchLen <= maxLen || pos + switchLen > len)
94 maxLen = switchLen;
97 if (maxLen == kNoLen)
98 throw new Exception("maxLen == kNoLen");
104 pos += maxLen;
    [all...]
  /external/llvm/include/llvm/Transforms/Utils/
BuildLibCalls.h 35 /// specified pointer. Ptr is required to be some pointer type, MaxLen must
37 Value *EmitStrNLen(Value *Ptr, Value *MaxLen, IRBuilder<> &B,
  /external/clang/utils/TableGen/
ClangDiagnosticsEmitter.cpp 621 unsigned MaxLen = 0;
624 MaxLen = std::max(MaxLen, (unsigned)I->first.size());
680 << std::string(MaxLen-I->first.size()+1, ' ');
  /external/llvm/lib/CodeGen/
MachineTraceMetrics.cpp 765 unsigned MaxLen = 0;
776 MaxLen = std::max(MaxLen, Len);
778 return MaxLen;
    [all...]
  /external/llvm/lib/Transforms/Utils/
BuildLibCalls.cpp 62 /// specified pointer. Ptr is required to be some pointer type, MaxLen must
64 Value *llvm::EmitStrNLen(Value *Ptr, Value *MaxLen, IRBuilder<> &B,
84 CallInst *CI = B.CreateCall2(StrNLen, CastToCStr(Ptr, B), MaxLen, "strnlen");

Completed in 108 milliseconds