zenilib  0.5.3.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
SDL_test_fuzzer.h
Go to the documentation of this file.
1 /*
2  Simple DirectMedia Layer
3  Copyright (C) 1997-2013 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 
356 
357 
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: */
Uint64 SDLTest_RandomUint64BoundaryValue(Uint64 boundary1, Uint64 boundary2, SDL_bool validDomain)
int32_t Sint32
A signed 32-bit integer type.
Definition: SDL_stdinc.h:141
Sint32 SDLTest_RandomIntegerInRange(Sint32 min, Sint32 max)
Sint32 SDLTest_RandomSint32()
SDL_bool
Definition: SDL_stdinc.h:116
Sint16 SDLTest_RandomSint16()
Uint32 SDLTest_RandomUint32BoundaryValue(Uint32 boundary1, Uint32 boundary2, SDL_bool validDomain)
char * SDLTest_RandomAsciiString()
uint32_t Uint32
An unsigned 32-bit integer type.
Definition: SDL_stdinc.h:145
double SDLTest_RandomUnitDouble()
Uint8 SDLTest_RandomUint8()
Sint8 SDLTest_RandomSint8()
char * SDLTest_RandomAsciiStringOfSize(int size)
Uint32 SDLTest_RandomUint32()
char * SDLTest_RandomAsciiStringWithMaximumLength(int maxLength)
Uint16 SDLTest_RandomUint16BoundaryValue(Uint16 boundary1, Uint16 boundary2, SDL_bool validDomain)
Sint32 SDLTest_RandomSint32BoundaryValue(Sint32 boundary1, Sint32 boundary2, SDL_bool validDomain)
GLuint GLsizei maxLength
Definition: glew.h:1811
uint64_t Uint64
An unsigned 64-bit integer type.
Definition: SDL_stdinc.h:154
Sint16 SDLTest_RandomSint16BoundaryValue(Sint16 boundary1, Sint16 boundary2, SDL_bool validDomain)
Uint16 SDLTest_RandomUint16()
Sint64 SDLTest_RandomSint64()
Sint8 SDLTest_RandomSint8BoundaryValue(Sint8 boundary1, Sint8 boundary2, SDL_bool validDomain)
int SDLTest_GetFuzzerInvocationCount()
Sint64 SDLTest_RandomSint64BoundaryValue(Sint64 boundary1, Sint64 boundary2, SDL_bool validDomain)
uint8_t Uint8
An unsigned 8-bit integer type.
Definition: SDL_stdinc.h:129
Uint64 SDLTest_RandomUint64()
float SDLTest_RandomFloat()
int16_t Sint16
A signed 16-bit integer type.
Definition: SDL_stdinc.h:133
float SDLTest_RandomUnitFloat()
uint16_t Uint16
An unsigned 16-bit integer type.
Definition: SDL_stdinc.h:137
void SDLTest_FuzzerInit(Uint64 execKey)
#define min(x, y)
Definition: os.h:75
Uint8 SDLTest_RandomUint8BoundaryValue(Uint8 boundary1, Uint8 boundary2, SDL_bool validDomain)
#define max(x, y)
Definition: os.h:79
int64_t Sint64
A signed 64-bit integer type.
Definition: SDL_stdinc.h:150
int8_t Sint8
A signed 8-bit integer type.
Definition: SDL_stdinc.h:125
double SDLTest_RandomDouble()
GLsizei size
Definition: gl2ext.h:1467