My Project
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
SDL_test_fuzzer.h
Go to the documentation of this file.
1 /*
2  Simple DirectMedia Layer
3  Copyright (C) 1997-2016 Sam Lantinga <slouken@libsdl.org>
4 
5  This software is provided 'as-is', without any express or implied
6  warranty. In no event will the authors be held liable for any damages
7  arising from the use of this software.
8 
9  Permission is granted to anyone to use this software for any purpose,
10  including commercial applications, and to alter it and redistribute it
11  freely, subject to the following restrictions:
12 
13  1. The origin of this software must not be misrepresented; you must not
14  claim that you wrote the original software. If you use this software
15  in a product, an acknowledgment in the product documentation would be
16  appreciated but is not required.
17  2. Altered source versions must be plainly marked as such, and must not be
18  misrepresented as being the original software.
19  3. This notice may not be removed or altered from any source distribution.
20 */
21 
30 /*
31 
32  Data generators for fuzzing test data in a reproducible way.
33 
34 */
35 
36 #ifndef _SDL_test_fuzzer_h
37 #define _SDL_test_fuzzer_h
38 
39 #include "begin_code.h"
40 /* Set up for C function definitions, even when using C++ */
41 #ifdef __cplusplus
42 extern "C" {
43 #endif
44 
45 
46 /*
47  Based on GSOC code by Markus Kauppila <markus.kauppila@gmail.com>
48 */
49 
50 
63 void SDLTest_FuzzerInit(Uint64 execKey);
64 
65 
72 
79 
80 
87 
94 
95 
102 
103 
110 
117 
118 
125 
130 
134 double SDLTest_RandomUnitDouble();
135 
140 float SDLTest_RandomFloat();
141 
146 double SDLTest_RandomDouble();
147 
167 Uint8 SDLTest_RandomUint8BoundaryValue(Uint8 boundary1, Uint8 boundary2, SDL_bool validDomain);
168 
188 Uint16 SDLTest_RandomUint16BoundaryValue(Uint16 boundary1, Uint16 boundary2, SDL_bool validDomain);
189 
209 Uint32 SDLTest_RandomUint32BoundaryValue(Uint32 boundary1, Uint32 boundary2, SDL_bool validDomain);
210 
230 Uint64 SDLTest_RandomUint64BoundaryValue(Uint64 boundary1, Uint64 boundary2, SDL_bool validDomain);
231 
251 Sint8 SDLTest_RandomSint8BoundaryValue(Sint8 boundary1, Sint8 boundary2, SDL_bool validDomain);
252 
253 
273 Sint16 SDLTest_RandomSint16BoundaryValue(Sint16 boundary1, Sint16 boundary2, SDL_bool validDomain);
274 
294 Sint32 SDLTest_RandomSint32BoundaryValue(Sint32 boundary1, Sint32 boundary2, SDL_bool validDomain);
295 
315 Sint64 SDLTest_RandomSint64BoundaryValue(Sint64 boundary1, Sint64 boundary2, SDL_bool validDomain);
316 
317 
330 
331 
342 
343 
355 char * SDLTest_RandomAsciiStringWithMaximumLength(int maxLength);
356 
357 
369 char * SDLTest_RandomAsciiStringOfSize(int size);
370 
375 
376 /* Ends C function definitions when using C++ */
377 #ifdef __cplusplus
378 }
379 #endif
380 #include "close_code.h"
381 
382 #endif /* _SDL_test_fuzzer_h */
383 
384 /* vi: set ts=4 sw=4 expandtab: */
uint8_t Uint8
An unsigned 8-bit integer type.
Definition: SDL_stdinc.h:139
uint64_t Uint64
An unsigned 64-bit integer type.
Definition: SDL_stdinc.h:164
float SDLTest_RandomUnitFloat()
double SDLTest_RandomDouble()
int64_t Sint64
A signed 64-bit integer type.
Definition: SDL_stdinc.h:160
uint32_t Uint32
An unsigned 32-bit integer type.
Definition: SDL_stdinc.h:155
double SDLTest_RandomUnitDouble()
uint16_t Uint16
An unsigned 16-bit integer type.
Definition: SDL_stdinc.h:147
Sint32 SDLTest_RandomIntegerInRange(Sint32 min, Sint32 max)
Sint16 SDLTest_RandomSint16BoundaryValue(Sint16 boundary1, Sint16 boundary2, SDL_bool validDomain)
Sint32 SDLTest_RandomSint32BoundaryValue(Sint32 boundary1, Sint32 boundary2, SDL_bool validDomain)
char * SDLTest_RandomAsciiStringWithMaximumLength(int maxLength)
Uint32 SDLTest_RandomUint32()
Uint16 SDLTest_RandomUint16()
int8_t Sint8
A signed 8-bit integer type.
Definition: SDL_stdinc.h:135
int32_t Sint32
A signed 32-bit integer type.
Definition: SDL_stdinc.h:151
int SDLTest_GetFuzzerInvocationCount()
Sint8 SDLTest_RandomSint8()
Sint64 SDLTest_RandomSint64BoundaryValue(Sint64 boundary1, Sint64 boundary2, SDL_bool validDomain)
Sint64 SDLTest_RandomSint64()
Uint64 SDLTest_RandomUint64()
char * SDLTest_RandomAsciiString()
Uint8 SDLTest_RandomUint8BoundaryValue(Uint8 boundary1, Uint8 boundary2, SDL_bool validDomain)
char * SDLTest_RandomAsciiStringOfSize(int size)
Sint8 SDLTest_RandomSint8BoundaryValue(Sint8 boundary1, Sint8 boundary2, SDL_bool validDomain)
Sint32 SDLTest_RandomSint32()
Sint16 SDLTest_RandomSint16()
int16_t Sint16
A signed 16-bit integer type.
Definition: SDL_stdinc.h:143
Uint16 SDLTest_RandomUint16BoundaryValue(Uint16 boundary1, Uint16 boundary2, SDL_bool validDomain)
Uint64 SDLTest_RandomUint64BoundaryValue(Uint64 boundary1, Uint64 boundary2, SDL_bool validDomain)
float SDLTest_RandomFloat()
void SDLTest_FuzzerInit(Uint64 execKey)
Uint32 SDLTest_RandomUint32BoundaryValue(Uint32 boundary1, Uint32 boundary2, SDL_bool validDomain)
Uint8 SDLTest_RandomUint8()