blob: 5defb769b1e344051781a9c17e2b64fdc0ef5194 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
#include "../copyright"
#ifndef _PORT_H_
#define _PORT_H_
#include <limits.h>
#include <string.h>
#include <sys/types.h>
#include <retro_inline.h>
#ifdef PSP
#define PIXEL_FORMAT BGR555
#else
#define PIXEL_FORMAT RGB565
#endif
/* The above is used to disable the 16-bit graphics mode checks sprinkled
* throughout the code, if the pixel format is always 16-bit. */
#include "pixform.h"
#ifndef _WIN32
#ifndef PATH_MAX
#define PATH_MAX 1024
#endif
#ifndef _MAX_DIR
#define _MAX_DIR PATH_MAX
#endif
#ifndef _MAX_DRIVE
#define _MAX_DRIVE 1
#endif
#ifndef _MAX_FNAME
#define _MAX_FNAME PATH_MAX
#endif
#ifndef _MAX_EXT
#define _MAX_EXT PATH_MAX
#endif
#ifndef _MAX_PATH
#define _MAX_PATH PATH_MAX
#endif
#else /* _WIN32 */
#define strcasecmp stricmp
#define strncasecmp strnicmp
#endif
#define SLASH_STR "/"
#define SLASH_CHAR '/'
#if defined(__i386__) || defined(__i486__) || defined(__i586__) || defined(_XBOX1) || defined(__alpha__)
#define FAST_LSB_WORD_ACCESS
#elif defined(__MIPSEL__)
/* On little-endian MIPS, a 16-bit word can be read directly from an address
* only if it's aligned. */
#define FAST_ALIGNED_LSB_WORD_ACCESS
#endif
#include <libretro.h>
#define ABS(X) ((X) < 0 ? -(X) : (X))
#define MIN(A,B) ((A) < (B) ? (A) : (B))
#define MAX(A,B) ((A) > (B) ? (A) : (B))
/* Integer square root by Halleck's method, with Legalize's speedup */
static INLINE int32_t _isqrt(int32_t val)
{
int32_t squaredbit, remainder, root;
if (val < 1)
return 0;
squaredbit = 1 << 30;
remainder = val;
root = 0;
while (squaredbit > 0)
{
if (remainder >= (squaredbit | root))
{
remainder -= (squaredbit | root);
root >>= 1;
root |= squaredbit;
}
else
root >>= 1;
squaredbit >>= 2;
}
return root;
}
#endif
|