32 #if defined(_MSC_VER) && _MSC_VER <= 1500
33 #define UINT8_MAX _UI8_MAX
34 #define UINT16_MAX _UI16_MAX
35 #define UINT32_MAX _UI32_MAX
36 #define INT64_MIN _I64_MIN
37 #define INT64_MAX _I64_MAX
38 #define UINT64_MAX _UI64_MAX
65 Uint32 a = (execKey >> 32) & 0x00000000FFFFFFFF;
66 Uint32 b = execKey & 0x00000000FFFFFFFF;
174 }
else if(pMin == pMax) {
181 return (
Sint32)((number % ((max + 1) - min)) + min);
216 if (boundary1 > boundary2) {
236 }
while (index < delta);
240 tempBuf[
index] = b1 + 1;
242 tempBuf[
index] = b2 - 1;
250 tempBuf[
index] = b1 - 1;
255 tempBuf[
index] = b2 + 1;
274 const Uint64 maxValue = UCHAR_MAX;
284 const Uint64 maxValue = USHRT_MAX;
294 #if ((ULONG_MAX) == (UINT_MAX))
295 const Uint64 maxValue = ULONG_MAX;
297 const Uint64 maxValue = UINT_MAX;
348 if (boundary1 > boundary2) {
368 }
while (index < delta);
372 tempBuf[
index] = b1 + 1;
374 tempBuf[
index] = b2 - 1;
382 tempBuf[
index] = b1 - 1;
387 tempBuf[
index] = b2 + 1;
406 const Sint64 maxValue = SCHAR_MAX;
407 const Sint64 minValue = SCHAR_MIN;
417 const Sint64 maxValue = SHRT_MAX;
418 const Sint64 minValue = SHRT_MIN;
428 #if ((ULONG_MAX) == (UINT_MAX))
429 const Sint64 maxValue = LONG_MAX;
430 const Sint64 minValue = LONG_MIN;
432 const Sint64 maxValue = INT_MAX;
433 const Sint64 minValue = INT_MIN;
444 const Sint64 maxValue = INT64_MAX;
445 const Sint64 minValue = INT64_MIN;
447 boundary1, boundary2,
477 }
while (s > DBL_EPSILON);
518 string = (
char *)
SDL_malloc((size + 1) *
sizeof(char));