Searched refs:MaxLen (Results 1 - 10 of 10) sorted by relevance

/external/llvm/lib/MC/
H A DSubtargetFeature.cpp86 size_t MaxLen = 0; local
88 MaxLen = std::max(MaxLen, std::strlen(I.Key));
89 return MaxLen;
/external/lzma/CS/7zip/Common/
H A DCommandLineParser.cs23 public int MaxLen; field in class:SevenZip.CommandLineParser.SwitchForm
33 MaxLen = maxLen;
155 for (int i = minLen; i < switchForm.MaxLen && pos < len; i++, pos++)
/external/tpm2/
H A DTcpServer.c16 BOOL ReadVarBytes(SOCKET s, char* buffer, UINT32* BytesReceived, int MaxLen);
404 int MaxLen
413 if(length>MaxLen)
/external/llvm/include/llvm/Transforms/Utils/
H A DBuildLibCalls.h35 /// specified pointer. Ptr is required to be some pointer type, MaxLen must
37 Value *EmitStrNLen(Value *Ptr, Value *MaxLen, IRBuilder<> &B,
/external/llvm/lib/Fuzzer/
H A DFuzzerLoop.cpp159 if (X.size() > (size_t)Options.MaxLen)
160 X.resize(Options.MaxLen);
191 size_t Last = std::min(First + Options.MaxLen, C.size());
379 U.resize(Options.MaxLen);
382 assert(NewSize <= (size_t)Options.MaxLen &&
H A DFuzzerTraceState.cpp353 for (size_t i = 0; i < static_cast<size_t>(Options.MaxLen); i++)
371 CurrentUnit.resize(Options.MaxLen);
374 for (size_t i = 0; i < static_cast<size_t>(Options.MaxLen); i++) {
384 static size_t InternalStrnlen(const char *S, size_t MaxLen) { argument
386 for (; Len < MaxLen && S[Len]; Len++) {}
H A DFuzzerInternal.h74 int MaxLen = 0; member in struct:fuzzer::Fuzzer::FuzzingOptions
H A DFuzzerDriver.cpp248 Options.MaxLen = Flags.max_len;
/external/clang/utils/TableGen/
H A DClangDiagnosticsEmitter.cpp747 unsigned MaxLen = 0; local
750 MaxLen = std::max(MaxLen, (unsigned)I.first.size());
763 OS << I.first << " */ " << std::string(MaxLen - I.first.size(), ' ');
/external/llvm/lib/CodeGen/
H A DMachineTraceMetrics.cpp757 unsigned MaxLen = 0;
767 MaxLen = std::max(MaxLen, Len);
769 return MaxLen;

Completed in 1301 milliseconds