/third_party/json/tests/thirdparty/Fuzzer/ |
D | FuzzerDriver.cpp | 263 int RunOneTest(Fuzzer *F, const char *InputFilePath, size_t MaxLen) { in RunOneTest() argument 265 if (MaxLen && MaxLen < U.size()) in RunOneTest() 266 U.resize(MaxLen); in RunOneTest() 392 Options.MaxLen = Flags.max_len; in FuzzerDriver() 482 RunOneTest(F, Path.c_str(), Options.MaxLen); in FuzzerDriver() 496 if (Options.MaxLen == 0) in FuzzerDriver() 509 size_t TemporaryMaxLen = Options.MaxLen ? Options.MaxLen : kMaxSaneLen; in FuzzerDriver() 518 if (Options.MaxLen == 0) { in FuzzerDriver() 519 size_t MaxLen = 0; in FuzzerDriver() local 521 MaxLen = std::max(U.size(), MaxLen); in FuzzerDriver() [all …]
|
D | FuzzerOptions.h | 21 size_t MaxLen = 0; member
|
D | FuzzerTraceState.cpp | 246 static size_t InternalStrnlen(const char *S, size_t MaxLen) { in InternalStrnlen() argument 248 for (; Len < MaxLen && S[Len]; Len++) {} in InternalStrnlen()
|
D | FuzzerLoop.cpp | 196 MaxInputLen = MaxMutationLen = Options.MaxLen; in Fuzzer()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/NVPTX/MCTargetDesc/ |
D | NVPTXTargetStreamer.cpp | 113 const unsigned MaxLen = 40; in emitRawBytes() 114 unsigned NumChunks = 1 + ((NumElements - 1) / MaxLen); in emitRawBytes() 122 for (auto It = std::next(Data.bytes_begin(), I * MaxLen), in emitRawBytes() 125 : std::next(Data.bytes_begin(), (I + 1) * MaxLen); in emitRawBytes()
|
/third_party/lzma/CPP/7zip/UI/Console/ |
D | PercentPrinter.cpp | 141 if (!FileName.IsEmpty() && _s.Len() < MaxLen) in Print() 148 if (_s.Len() + _temp.Len() > MaxLen) in Print() 162 if (_s.Len() + _temp.Len() <= MaxLen) in Print()
|
D | PercentPrinter.h | 47 unsigned MaxLen; variable 53 MaxLen(80 - 1) in _tickStep()
|
D | ExtractCallbackConsole.h | 66 void SetWindowWidth(unsigned width) { _percent.MaxLen = width - 1; } in SetWindowWidth() 157 void SetWindowWidth(unsigned width) { _percent.MaxLen = width - 1; } in SetWindowWidth()
|
D | UpdateCallbackConsole.h | 65 void SetWindowWidth(unsigned width) { _percent.MaxLen = width - 1; } in SetWindowWidth()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/ |
D | MCSubtargetInfo.cpp | 89 size_t MaxLen = 0; in getLongestEntryLength() local 91 MaxLen = std::max(MaxLen, std::strlen(I.Key)); in getLongestEntryLength() 92 return MaxLen; in getLongestEntryLength()
|
/third_party/lzma/CS/7zip/Common/ |
D | CommandLineParser.cs | 23 public int MaxLen; field in SevenZip.CommandLineParser.SwitchForm 33 MaxLen = maxLen; in SwitchForm() 155 for (int i = minLen; i < switchForm.MaxLen && pos < len; i++, pos++) in ParseString()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/ |
D | AArch64PreLegalizerCombiner.cpp | 72 unsigned MaxLen = EnableOpt ? 0 : 32; in combine() local 74 return (!EnableMinSize) ? Helper.tryCombineMemCpyFamily(MI, MaxLen) in combine()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/GlobalISel/ |
D | CombinerHelper.h | 176 bool tryCombineMemCpyFamily(MachineInstr &MI, unsigned MaxLen = 0);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | MachineTraceMetrics.cpp | 767 unsigned MaxLen = 0; in computeCrossBlockCriticalPath() local 777 MaxLen = std::max(MaxLen, Len); in computeCrossBlockCriticalPath() 779 return MaxLen; in computeCrossBlockCriticalPath()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/ |
D | TypeRecordMapping.cpp | 194 Optional<uint32_t> MaxLen; in visitTypeBegin() local 197 MaxLen = MaxRecordLength - sizeof(RecordPrefix); in visitTypeBegin() 198 error(IO.beginRecord(MaxLen)); in visitTypeBegin()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Utils/ |
D | BuildLibCalls.h | 61 Value *emitStrNLen(Value *Ptr, Value *MaxLen, IRBuilder<> &B,
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/GlobalISel/ |
D | CombinerHelper.cpp | 1291 bool CombinerHelper::tryCombineMemCpyFamily(MachineInstr &MI, unsigned MaxLen) { in tryCombineMemCpyFamily() argument 1330 if (MaxLen && KnownLen > MaxLen) in tryCombineMemCpyFamily()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
D | HexagonISelDAGToDAGHVX.cpp | 885 unsigned MaxLen) { in findStrip() argument 886 assert(A.size() > 0 && A.size() >= MaxLen); in findStrip() 889 for (unsigned I = 1; I != MaxLen; ++I) { in findStrip() 894 return { F, MaxLen }; in findStrip()
|
/third_party/python/Doc/library/ |
D | typing.rst | 971 Vec = Annotated[list[tuple[T, T]], MaxLen(10)] 974 V == Annotated[list[tuple[int, int]], MaxLen(10)]
|