HomeSort by: relevance | last modified time | path
    Searched refs:DictionaryEntry (Results 1 - 4 of 4) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerDictionary.h 50 class DictionaryEntry {
52 DictionaryEntry() {}
53 DictionaryEntry(Word W) : W(W) {}
54 DictionaryEntry(Word W, size_t PositionHint) : W(W), PositionHint(PositionHint) {}
86 return std::any_of(begin(), end(), [&](const DictionaryEntry &DE) {
90 const DictionaryEntry *begin() const { return &DE[0]; }
91 const DictionaryEntry *end() const { return begin() + Size; }
92 DictionaryEntry & operator[] (size_t Idx) {
96 void push_back(DictionaryEntry DE) {
105 DictionaryEntry DE[kMaxDictSize]
    [all...]
FuzzerMutate.h 112 DictionaryEntry &DE);
115 DictionaryEntry MakeDictionaryEntryFromCMP(T Arg1, T Arg2,
117 DictionaryEntry MakeDictionaryEntryFromCMP(const Word &Arg1, const Word &Arg2,
119 DictionaryEntry MakeDictionaryEntryFromCMP(const void *Arg1, const void *Arg2,
137 Vector<DictionaryEntry *> CurrentDictionaryEntrySequence;
140 DictionaryEntry CmpDictionaryEntriesDeque[kCmpDictionaryEntriesDequeSize];
FuzzerMutate.cpp 168 DictionaryEntry &DE) {
193 DictionaryEntry MutationDispatcher::MakeDictionaryEntryFromCMP(
218 return DictionaryEntry(W, Positions[Rand(NumPositions)]);
220 DictionaryEntry DE(W);
226 DictionaryEntry MutationDispatcher::MakeDictionaryEntryFromCMP(
236 DictionaryEntry MutationDispatcher::MakeDictionaryEntryFromCMP(
245 DictionaryEntry DE;
264 DE = DictionaryEntry(X);
272 DictionaryEntry &DERef =
289 DictionaryEntry &DE = D[Rand(D.size())]
    [all...]
FuzzerDefs.h 150 class DictionaryEntry;

Completed in 45 milliseconds