Home | History | Annotate | Download | only in jemalloc

Lines Matching defs:JEMALLOC_ATTR

61 #  define JEMALLOC_ATTR(s)
91 # define JEMALLOC_ATTR(s) __attribute__((s))
92 # define JEMALLOC_ALIGNED(s) JEMALLOC_ATTR(aligned(s))
94 # define JEMALLOC_ALLOC_SIZE(s) JEMALLOC_ATTR(alloc_size(s))
95 # define JEMALLOC_ALLOC_SIZE2(s1, s2) JEMALLOC_ATTR(alloc_size(s1, s2))
101 # define JEMALLOC_EXPORT JEMALLOC_ATTR(visibility("default"))
104 # define JEMALLOC_FORMAT_ARG(i) JEMALLOC_ATTR(__format_arg__(3))
109 # define JEMALLOC_FORMAT_PRINTF(s, i) JEMALLOC_ATTR(format(gnu_printf, s, i))
111 # define JEMALLOC_FORMAT_PRINTF(s, i) JEMALLOC_ATTR(format(printf, s, i))
116 # define JEMALLOC_FALLTHROUGH JEMALLOC_ATTR(fallthrough)
120 # define JEMALLOC_NOINLINE JEMALLOC_ATTR(noinline)
121 # define JEMALLOC_NOTHROW JEMALLOC_ATTR(nothrow)
122 # define JEMALLOC_SECTION(s) JEMALLOC_ATTR(section(s))
126 # define JEMALLOC_COLD JEMALLOC_ATTR(__cold__)
131 # define JEMALLOC_WARN_ON_USAGE(warning_message) JEMALLOC_ATTR(deprecated(warning_message))
136 # define JEMALLOC_ATTR(s)