Home | History | Annotate | Download | only in fuzzer

Lines Matching defs:Default

40   int   Default;
48 #define FUZZER_FLAG_INT(Name, Default, Description) int Name;
49 #define FUZZER_FLAG_UNSIGNED(Name, Default, Description) unsigned int Name;
61 #define FUZZER_FLAG_INT(Name, Default, Description) \
62 {#Name, Description, Default, &Flags.Name, nullptr, nullptr},
63 #define FUZZER_FLAG_UNSIGNED(Name, Default, Description) \
64 {#Name, Description, static_cast<int>(Default), \
102 Printf("%d\t%s\n", D.Default, D.Description);
182 *FlagDescriptions[F].IntFlag = FlagDescriptions[F].Default;
185 static_cast<unsigned int>(FlagDescriptions[F].Default);