Lines Matching full:fuzz
290 struct fuzz;
301 struct fuzz *fuzz_begin(u_int strategies, const void *p, size_t l);
303 /* Free a fuzz context */
304 void fuzz_cleanup(struct fuzz *fuzz);
306 /* Prepare the next fuzz case in the series */
307 void fuzz_next(struct fuzz *fuzz);
310 * Check whether this fuzz case is identical to the original
314 int fuzz_matches_original(struct fuzz *fuzz);
316 /* Determine whether the current fuzz sequence is exhausted (nonzero = yes) */
317 int fuzz_done(struct fuzz *fuzz);
320 size_t fuzz_len(struct fuzz *fuzz);
321 u_char *fuzz_ptr(struct fuzz *fuzz);
323 /* Dump the current fuzz case to stderr */
324 void fuzz_dump(struct fuzz *fuzz);