blob: 84d6bd03ccaae9e1b328385e7c3232e933d0fc6f (
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
|
#pragma once
#if defined _MSC_VER
# define never_inline __declspec(noinline)
#elif defined __GNUG__
# define never_inline __attribute__((noinline))
#else
# define never_inline
#endif
#if defined _MSC_VER || defined __GNUG__
# define restrict __restrict
#else
# define restrict
#endif
#if defined _MSC_VER
# define restrict_ref restrict
#elif defined __GNUG__
# define restrict_ref restrict
#else
# define restrict_ref
#endif
#if defined _MSC_VER
# define force_inline __forceinline
#elif defined __GNUG__
# define force_inline __attribute__((always_inline, gnu_inline)) inline
#else
# define force_inline inline
#endif
#if defined __GNUG__
# define flatten __attribute__((flatten, noinline))
#else
# define flatten
#endif
#ifdef Q_CREATOR_RUN
# define DEFUN_WARN_UNUSED
#elif defined(_MSC_VER)
# define DEFUN_WARN_UNUSED _Check_return_
#else
# define DEFUN_WARN_UNUSED __attribute__((warn_unused_result))
#endif
#if defined(__GNUG__)
# define unused(t, i) t __attribute__((unused)) i
#else
# define unused(t, i) t
#endif
#if !defined(_WIN32)
# define unused_on_unix(t, i) unused(t, i)
#else
# define unused_on_unix(t, i) t i
#endif
#if defined __GNUC__
# define likely(x) __builtin_expect(!!(x),1)
# define unlikely(x) __builtin_expect(!!(x),0)
#else
# define likely(x) (x)
# define unlikely(x) (x)
#endif
|