Lines Matching refs:__attribute__

117 # define ZEND_FALLTHROUGH __attribute__((__fallthrough__))
219 # define ZEND_ATTRIBUTE_MALLOC __attribute__ ((__malloc__))
227 # define ZEND_ATTRIBUTE_ALLOC_SIZE(X) __attribute__ ((alloc_size(X)))
228 # define ZEND_ATTRIBUTE_ALLOC_SIZE2(X,Y) __attribute__ ((alloc_size(X,Y)))
235 # define ZEND_ATTRIBUTE_CONST __attribute__((const))
241 # define ZEND_ATTRIBUTE_FORMAT(type, idx, first) __attribute__ ((format(type, idx, first)))
247 # define ZEND_ATTRIBUTE_PTR_FORMAT(type, idx, first) __attribute__ ((format(type, idx, first)))
253 # define ZEND_ATTRIBUTE_DEPRECATED __attribute__((deprecated))
261 # define ZEND_ATTRIBUTE_UNUSED __attribute__((unused))
267 # define ZEND_COLD __attribute__((cold))
269 # define ZEND_OPT_SIZE __attribute__((optimize("Os")))
270 # define ZEND_OPT_SPEED __attribute__((optimize("Ofast")))
282 # define ZEND_ATTRIBUTE_UNUSED_LABEL __attribute__((unused));
283 # define ZEND_ATTRIBUTE_COLD_LABEL __attribute__((cold));
290 # define ZEND_FASTCALL __attribute__((fastcall))
301 # define ZEND_NORETURN __attribute__((noreturn))
310 # define ZEND_STACK_ALIGNED __attribute__((force_align_arg_pointer))
338 # define zend_always_inline inline __attribute__((always_inline))
339 # define zend_never_inline __attribute__((noinline))
349 # define zend_always_inline inline __attribute__((always_inline))
354 # define zend_never_inline __attribute__((noinline))
546 # define ZEND_INTRIN_SSSE3_FUNC_DECL(func) ZEND_API func __attribute__((target("ssse3")))
571 # define ZEND_INTRIN_SSE4_2_FUNC_DECL(func) ZEND_API func __attribute__((target("sse4.2")))
597 # define ZEND_INTRIN_PCLMUL_FUNC_DECL(func) ZEND_API func __attribute__((target("pclmul")))
623 # define ZEND_INTRIN_SSE4_2_PCLMUL_FUNC_DECL(func) ZEND_API func __attribute__((target("sse4.2,pcl…
646 # define ZEND_INTRIN_AVX2_FUNC_DECL(func) ZEND_API func __attribute__((target("avx2")))
666 # define ZEND_INTRIN_AVX512_FUNC_DECL(func) ZEND_API func __attribute__((target("avx512f,avx512cd,…
686 # define ZEND_INTRIN_AVX512_VBMI_FUNC_DECL(func) ZEND_API func __attribute__((target("avx512f,avx5…
699 # define ZEND_SET_ALIGNED(alignment, decl) decl __attribute__ ((__aligned__ (alignment)))
735 # define ZEND_INDIRECT_RETURN __attribute__((__indirect_return__))