Home | History | Annotate | Download | only in fuzz

Lines Matching full:next

30     // next() loads fuzzed bytes into the variable passed in by pointer.
31 // We use this approach instead of T next() because different compilers
32 // evaluate function parameters in different orders. If fuzz->next()
33 // returned 5 and then 7, foo(fuzz->next(), fuzz->next()) would be
36 // next() in a way that does not consume fuzzed bytes in a single
39 void next(T* t);
43 void next(Arg* first, Args... rest);
69 inline void Fuzz::next(bool* b) {
71 this->next(&n);
76 inline void Fuzz::next(T* n) {
88 inline void Fuzz::next(Arg* first, Args... rest) {
89 this->next(first);
90 this->next(rest...);
95 this->next(f);
105 this->next<T>(n);
128 this->next(ptr+i);