reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

projects/compiler-rt/lib/fuzzer/FuzzerDefs.h
  165 class DictionaryEntry;

References

projects/compiler-rt/lib/fuzzer/FuzzerDictionary.h
   89   const DictionaryEntry *begin() const { return &DE[0]; }
   90   const DictionaryEntry *end() const { return begin() + Size; }
   91   DictionaryEntry & operator[] (size_t Idx) {
   95   void push_back(DictionaryEntry DE) {
  104   DictionaryEntry DE[kMaxDictSize];
projects/compiler-rt/lib/fuzzer/FuzzerMutate.cpp
  167                                                 DictionaryEntry &DE) {
  192 DictionaryEntry MutationDispatcher::MakeDictionaryEntryFromCMP(
  219   DictionaryEntry DE(W);
  225 DictionaryEntry MutationDispatcher::MakeDictionaryEntryFromCMP(
  235 DictionaryEntry MutationDispatcher::MakeDictionaryEntryFromCMP(
  244   DictionaryEntry DE;
  271   DictionaryEntry &DERef =
  288   DictionaryEntry &DE = D[Rand(D.size())];
projects/compiler-rt/lib/fuzzer/FuzzerMutate.h
  111                               DictionaryEntry &DE);
  114   DictionaryEntry MakeDictionaryEntryFromCMP(T Arg1, T Arg2,
  116   DictionaryEntry MakeDictionaryEntryFromCMP(const Word &Arg1, const Word &Arg2,
  118   DictionaryEntry MakeDictionaryEntryFromCMP(const void *Arg1, const void *Arg2,
  139   DictionaryEntry CmpDictionaryEntriesDeque[kCmpDictionaryEntriesDequeSize];