Rizin
unix-like reverse engineering framework and cli tools
jemalloc_macros.h File Reference
#include <stdlib.h>
#include <stdbool.h>
#include <stdint.h>
#include <limits.h>
#include <strings.h>

Go to the source code of this file.

Macros

#define JEMALLOC_VERSION   "4.5.0-0-g04380e79f1e2428bd0ad000bbc6e3d2dfc6b66a5"
 
#define JEMALLOC_VERSION_MAJOR   4
 
#define JEMALLOC_VERSION_MINOR   5
 
#define JEMALLOC_VERSION_BUGFIX   0
 
#define JEMALLOC_VERSION_NREV   0
 
#define JEMALLOC_VERSION_GID   "04380e79f1e2428bd0ad000bbc6e3d2dfc6b66a5"
 
#define MALLOCX_LG_ALIGN(la)   ((int)(la))
 
#define MALLOCX_ALIGN(a)
 
#define MALLOCX_ZERO   ((int)0x40)
 
#define MALLOCX_TCACHE(tc)   ((int)(((tc)+2) << 8))
 
#define MALLOCX_TCACHE_NONE   MALLOCX_TCACHE(-1)
 
#define MALLOCX_ARENA(a)   ((((int)(a))+1) << 20)
 
#define JEMALLOC_CXX_THROW
 
#define JEMALLOC_ATTR(s)
 
#define JEMALLOC_ALIGNED(s)
 
#define JEMALLOC_ALLOC_SIZE(s)
 
#define JEMALLOC_ALLOC_SIZE2(s1, s2)
 
#define JEMALLOC_EXPORT
 
#define JEMALLOC_FORMAT_PRINTF(s, i)
 
#define JEMALLOC_NOINLINE
 
#define JEMALLOC_NOTHROW
 
#define JEMALLOC_SECTION(s)
 
#define JEMALLOC_RESTRICT_RETURN
 
#define JEMALLOC_ALLOCATOR
 

Macro Definition Documentation

◆ JEMALLOC_ALIGNED

#define JEMALLOC_ALIGNED (   s)

Definition at line 93 of file jemalloc_macros.h.

◆ JEMALLOC_ALLOC_SIZE

#define JEMALLOC_ALLOC_SIZE (   s)

Definition at line 94 of file jemalloc_macros.h.

◆ JEMALLOC_ALLOC_SIZE2

#define JEMALLOC_ALLOC_SIZE2 (   s1,
  s2 
)

Definition at line 95 of file jemalloc_macros.h.

◆ JEMALLOC_ALLOCATOR

#define JEMALLOC_ALLOCATOR

Definition at line 102 of file jemalloc_macros.h.

◆ JEMALLOC_ATTR

#define JEMALLOC_ATTR (   s)

Definition at line 92 of file jemalloc_macros.h.

◆ JEMALLOC_CXX_THROW

#define JEMALLOC_CXX_THROW

Definition at line 37 of file jemalloc_macros.h.

◆ JEMALLOC_EXPORT

#define JEMALLOC_EXPORT

Definition at line 96 of file jemalloc_macros.h.

◆ JEMALLOC_FORMAT_PRINTF

#define JEMALLOC_FORMAT_PRINTF (   s,
  i 
)

Definition at line 97 of file jemalloc_macros.h.

◆ JEMALLOC_NOINLINE

#define JEMALLOC_NOINLINE

Definition at line 98 of file jemalloc_macros.h.

◆ JEMALLOC_NOTHROW

#define JEMALLOC_NOTHROW

Definition at line 99 of file jemalloc_macros.h.

◆ JEMALLOC_RESTRICT_RETURN

#define JEMALLOC_RESTRICT_RETURN

Definition at line 101 of file jemalloc_macros.h.

◆ JEMALLOC_SECTION

#define JEMALLOC_SECTION (   s)

Definition at line 100 of file jemalloc_macros.h.

◆ JEMALLOC_VERSION

#define JEMALLOC_VERSION   "4.5.0-0-g04380e79f1e2428bd0ad000bbc6e3d2dfc6b66a5"

Definition at line 7 of file jemalloc_macros.h.

◆ JEMALLOC_VERSION_BUGFIX

#define JEMALLOC_VERSION_BUGFIX   0

Definition at line 10 of file jemalloc_macros.h.

◆ JEMALLOC_VERSION_GID

#define JEMALLOC_VERSION_GID   "04380e79f1e2428bd0ad000bbc6e3d2dfc6b66a5"

Definition at line 12 of file jemalloc_macros.h.

◆ JEMALLOC_VERSION_MAJOR

#define JEMALLOC_VERSION_MAJOR   4

Definition at line 8 of file jemalloc_macros.h.

◆ JEMALLOC_VERSION_MINOR

#define JEMALLOC_VERSION_MINOR   5

Definition at line 9 of file jemalloc_macros.h.

◆ JEMALLOC_VERSION_NREV

#define JEMALLOC_VERSION_NREV   0

Definition at line 11 of file jemalloc_macros.h.

◆ MALLOCX_ALIGN

#define MALLOCX_ALIGN (   a)
Value:
((int)(((size_t)(a) < (size_t)INT_MAX) ? ffs((int)(a))-1 : \
ffs((int)(((size_t)(a))>>32))+31))
#define INT_MAX
Definition: cp-demangle.c:131
static int
Definition: sfsocketcall.h:114
#define a(i)
Definition: sha256.c:41

Definition at line 18 of file jemalloc_macros.h.

◆ MALLOCX_ARENA

#define MALLOCX_ARENA (   a)    ((((int)(a))+1) << 20)

Definition at line 32 of file jemalloc_macros.h.

◆ MALLOCX_LG_ALIGN

#define MALLOCX_LG_ALIGN (   la)    ((int)(la))

Definition at line 14 of file jemalloc_macros.h.

◆ MALLOCX_TCACHE

#define MALLOCX_TCACHE (   tc)    ((int)(((tc)+2) << 8))

Definition at line 27 of file jemalloc_macros.h.

◆ MALLOCX_TCACHE_NONE

#define MALLOCX_TCACHE_NONE   MALLOCX_TCACHE(-1)

Definition at line 28 of file jemalloc_macros.h.

◆ MALLOCX_ZERO

#define MALLOCX_ZERO   ((int)0x40)

Definition at line 22 of file jemalloc_macros.h.