Graphviz
13.0.0~dev.20250406.1145
Toggle main menu visibility
Main Page
Topics
Namespaces
Namespace List
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
Data Fields
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
n
o
p
r
s
t
u
v
w
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
Related Symbols
Files
File List
Globals
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
l
m
n
o
p
q
r
s
t
u
v
w
x
y
Enumerations
a
b
c
e
f
g
h
i
l
m
o
p
r
s
t
x
Enumerator
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
x
y
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
•
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
Loading...
Searching...
No Matches
asan.h
Go to the documentation of this file.
1
3
4
#pragma once
5
6
#ifdef __has_feature
7
#if __has_feature(address_sanitizer)
8
#include <sanitizer/asan_interface.h>
9
#define ASAN_POISON(addr, size) ASAN_POISON_MEMORY_REGION((addr), (size))
10
#define ASAN_UNPOISON(addr, size) ASAN_UNPOISON_MEMORY_REGION((addr), (size))
11
#endif
12
#endif
13
14
#ifndef ASAN_POISON
15
#define ASAN_POISON(addr, size) \
16
do { \
17
} while (0)
15
#define ASAN_POISON(addr, size) \
…
18
#endif
19
#ifndef ASAN_UNPOISON
20
#define ASAN_UNPOISON(addr, size) \
21
do { \
22
} while (0)
20
#define ASAN_UNPOISON(addr, size) \
…
23
#endif
lib
util
asan.h
Generated by
1.9.8