Rizin
unix-like reverse engineering framework and cli tools
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
z
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
p
r
s
t
u
v
w
Variables
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
z
Enumerations
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
u
v
w
x
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
Enumerator
b
d
e
h
i
k
n
p
r
s
w
Properties
Events
Related Functions
Files
File List
File Members
All
$
.
[
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
[
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
$
.
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Enumerations
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
y
z
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
▼
Rizin
Clone the Rizin project and keep it updated
Contributor Covenant Code of Conduct
How to report issues
DEVELOPERS
README
AVR (arduino, atmega128, ..)
Brainfuck support for rizin
Calling Conventions profiles
Cross-compilation
Rizin Debugger Internals
Conditional breakpoints
ESIL
FLIRT
Connecting rizin with gdb
What is GProbe?
Packaging
RAP protocol
Release process
RzIL
Command parsing and command handling
SIOL - Simple IO Layer
WinDBG
Install Rizin
README
SDB (string database)
Security Policy
README
Capstone Engine
COMPILE
Xcode Project for Capstone
Rizin libdemangle
cabextract
CONTRIBUTING
Project Maintainers
README
Supported platforms
libzip API changes
INSTALL
NEWS
README
Security Policy
Before next release
Projects for various integrated development environments (IDE)
gen_manual - a program for automatic generation of manual from source code
Meson build system for lz4
Snap Packaging
LZ4 Block Format Description
LZ4 Frame Format Description
LZ4 Streaming API Example : Double Buffer
LZ4 Streaming API Example : Line by Line Text Compression
LZ4 API Example : Dictionary Random Access
LZ4 examples
LZ4 Streaming API Basics
LZ4 Windows binary package
LZ4 - Library Files
lz4(1) – lz4, unlz4, lz4cat - Compress or decompress .lz4 files
Command Line Interface for LZ4 library
LZ4 - Extremely fast compression
Programs and scripts for automated testing of LZ4
LICENSE
ptrace-wrap
rizin-shell-parser
spp
<tt>tree-sitter-config</tt>
<tt>tree-sitter-loader</tt>
Tree-sitter CLI
CONTRIBUTING\ilineb
index\ilineb
section-2-using-parsers\ilineb
section-3-creating-parsers\ilineb
section-4-syntax-highlighting\ilineb
section-5-implementation\ilineb
section-6-contributing\ilineb
section-8-code-navigation-systems\ilineb
<tt>tree-sitter-highlight</tt>
Rust Tree-sitter
Web Tree-sitter
Subdirectories
ICU Parts
tree-sitter
<tt>tree-sitter-tags</tt>
tree-sitter-c
tree-sitter-c
xxHash - Extremely fast hash algorithm
Todo List
►
Modules
►
Namespaces
►
Classes
▼
Files
►
File List
►
File Members
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Events
Friends
Macros
Modules
Pages
jemalloc_internal_macros.h
Go to the documentation of this file.
1
/*
2
* JEMALLOC_ALWAYS_INLINE and JEMALLOC_INLINE are used within header files for
3
* functions that are static inline functions if inlining is enabled, and
4
* single-definition library-private functions if inlining is disabled.
5
*
6
* JEMALLOC_ALWAYS_INLINE_C and JEMALLOC_INLINE_C are for use in .c files, in
7
* which case the denoted functions are always static, regardless of whether
8
* inlining is enabled.
9
*/
10
#if defined(JEMALLOC_DEBUG) || defined(JEMALLOC_CODE_COVERAGE)
11
/* Disable inlining to make debugging/profiling easier. */
12
# define JEMALLOC_ALWAYS_INLINE
13
# define JEMALLOC_ALWAYS_INLINE_C static
14
# undef JEMALLOC_INLINE
15
# define JEMALLOC_INLINE_C static
16
# define inline
17
#else
18
// # define JEMALLOC_ENABLE_INLINE
19
# ifdef JEMALLOC_HAVE_ATTR
20
# define JEMALLOC_ALWAYS_INLINE \
21
static inline JEMALLOC_ATTR(unused) JEMALLOC_ATTR(always_inline)
22
# define JEMALLOC_ALWAYS_INLINE_C \
23
static inline JEMALLOC_ATTR(always_inline)
24
# else
25
# define JEMALLOC_ALWAYS_INLINE static inline
26
# define JEMALLOC_ALWAYS_INLINE_C static inline
27
# endif
28
# define JEMALLOC_INLINE static inline
29
# define JEMALLOC_INLINE_C static inline
30
# ifdef _MSC_VER
31
# define inline _inline
32
# endif
33
#endif
34
35
#define ZU(z) ((size_t)z)
36
#define ZI(z) ((ssize_t)z)
37
#define QU(q) ((uint64_t)q)
38
#define QI(q) ((int64_t)q)
39
40
#define KZU(z) ZU(z##ULL)
41
#define KZI(z) ZI(z##LL)
42
#define KQU(q) QU(q##ULL)
43
#define KQI(q) QI(q##LL)
44
45
#ifndef __DECONST
46
# define __DECONST(type, var) ((type)(uintptr_t)(const void *)(var))
47
#endif
48
49
#ifndef JEMALLOC_HAS_RESTRICT
50
# define restrict
51
#endif
subprojects
rzheap
rz_jemalloc
internal
jemalloc_internal_macros.h
Generated by
1.9.1