Lines Matching refs:__attribute__

114 # define ZEND_FALLTHROUGH __attribute__((__fallthrough__))
216 # define ZEND_ATTRIBUTE_MALLOC __attribute__ ((__malloc__))
224 # define ZEND_ATTRIBUTE_ALLOC_SIZE(X) __attribute__ ((alloc_size(X)))
225 # define ZEND_ATTRIBUTE_ALLOC_SIZE2(X,Y) __attribute__ ((alloc_size(X,Y)))
232 # define ZEND_ATTRIBUTE_CONST __attribute__((const))
238 # define ZEND_ATTRIBUTE_FORMAT(type, idx, first) __attribute__ ((format(type, idx, first)))
244 # define ZEND_ATTRIBUTE_PTR_FORMAT(type, idx, first) __attribute__ ((format(type, idx, first)))
250 # define ZEND_ATTRIBUTE_DEPRECATED __attribute__((deprecated))
258 # define ZEND_ATTRIBUTE_UNUSED __attribute__((unused))
264 # define ZEND_COLD __attribute__((cold))
265 # define ZEND_HOT __attribute__((hot))
267 # define ZEND_OPT_SIZE __attribute__((optimize("Os")))
268 # define ZEND_OPT_SPEED __attribute__((optimize("Ofast")))
281 # define ZEND_ATTRIBUTE_UNUSED_LABEL __attribute__((unused));
282 # define ZEND_ATTRIBUTE_COLD_LABEL __attribute__((cold));
283 # define ZEND_ATTRIBUTE_HOT_LABEL __attribute__((hot));
291 # define ZEND_FASTCALL __attribute__((fastcall))
302 # define ZEND_NORETURN __attribute__((noreturn))
311 # define ZEND_STACK_ALIGNED __attribute__((force_align_arg_pointer))
339 # define zend_always_inline inline __attribute__((always_inline))
340 # define zend_never_inline __attribute__((noinline))
350 # define zend_always_inline inline __attribute__((always_inline))
355 # define zend_never_inline __attribute__((noinline))
547 # define ZEND_INTRIN_SSSE3_FUNC_DECL(func) ZEND_API func __attribute__((target("ssse3")))
572 # define ZEND_INTRIN_SSE4_2_FUNC_DECL(func) ZEND_API func __attribute__((target("sse4.2")))
598 # define ZEND_INTRIN_PCLMUL_FUNC_DECL(func) ZEND_API func __attribute__((target("pclmul")))
624 # define ZEND_INTRIN_SSE4_2_PCLMUL_FUNC_DECL(func) ZEND_API func __attribute__((target("sse4.2,pcl…
647 # define ZEND_INTRIN_AVX2_FUNC_DECL(func) ZEND_API func __attribute__((target("avx2")))
660 # define ZEND_SET_ALIGNED(alignment, decl) decl __attribute__ ((__aligned__ (alignment)))
696 # define ZEND_INDIRECT_RETURN __attribute__((__indirect_return__))