Lines Matching defs:restrict
55 * `__declspec(restrict)` modifier, so it is impossible to define a
56 * `restrict` macro without interfering with the latter. Furthermore the
57 * MSVC standard library uses __declspec(restrict) under the _CRTRESTRICT
59 * forward we should probably should stop using restrict, especially
93 * C99 restrict keyword
96 * - http://cellperformance.beyond3d.com/articles/2006/05/demystifying-the-restrict-keyword.html
98 #ifndef restrict
102 # define restrict __restrict__
104 # define restrict __restrict
106 # define restrict /* */
130 test_c99_compat_h(const void * restrict a,
131 const void * restrict b)