35typedef unsigned int U32;
38typedef unsigned long long U64;
58#define SIGN_MASK_32 0x80000000
59#define MANTISSA_MASK_32 0x007fffff
60#define EXPONENT_MASK_32 0x7f800000
61#define QNAN_MASK_32 0x00400000
63#define INF_POS_32 0x7f800000
64#define INF_NEG_32 0xff800000
65#define QNAN_POS_32 0x7fc00000
66#define QNAN_NEG_32 0xffc00000
67#define IND_32 0xffc00000
69#define EXPONENT_FULL_32 0x7f800000
70#define SIGN_SET_32 0x80000000
71#define QNAN_SET_32 0x00400000
73#define INF_POS_64 0x7ff0000000000000
74#define INF_NEG_64 0xfff0000000000000
76#define MANTISSA_MASK_64 0x000fffffffffffff
77#define SIGN_MASK_64 0x8000000000000000
78#define IND_64 0xfff8000000000000
79#define QNAN_MASK_64 0x0008000000000000
82#define AMD_F_INEXACT 0x00000010
83#define AMD_F_OVERFLOW 0x00000001
84#define AMD_F_UNDERFLOW 0x00000002
85#define AMD_F_DIVBYZERO 0x00000004
86#define AMD_F_INVALID 0x00000008
101 unsigned long long value,
112 unsigned long long value,
GLuint GLuint GLsizei GLenum type
GLuint GLuint GLuint GLuint arg1
GLuint GLuint GLuint GLuint GLuint GLuint GLuint arg2
float _handle_errorf(char *fname, int opcode, unsigned long long value, int type, int flags, int error, float arg1, float arg2, int nargs)
double _handle_error(char *fname, int opcode, unsigned long long value, int type, int flags, int error, double arg1, double arg2, int nargs)
Handles an error condition.