Main Page
+
Namespaces
Namespace List
+
Namespace 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
y
z
+
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
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
+
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
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
y
z
+
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
+
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
+
Properties
_
a
c
d
e
f
l
m
o
p
s
t
u
v
+
Related 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
Package Documentation
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
src
RecoTracker
MkFitCore
src
Matriplex
Memory.h
Go to the documentation of this file.
1
#ifndef RecoTracker_MkFitCore_src_Matriplex_Memory_h
2
#define RecoTracker_MkFitCore_src_Matriplex_Memory_h
3
4
#include <cstdlib>
5
6
namespace
Matriplex
{
7
8
constexpr
std::size_t
round_up_align64
(std::size_t size) {
9
constexpr
std::size_t
mask
= 64 - 1;
10
return
size &
mask
? (size & ~
mask
) + 64 : size;
11
}
12
13
inline
void
*
aligned_alloc64
(std::size_t size) {
return
std::aligned_alloc
(64,
round_up_align64
(size)); }
14
15
}
// namespace Matriplex
16
17
#endif
ALPAKA_ACCELERATOR_NAMESPACE::pixelClustering::pixelStatus::mask
constexpr uint32_t mask
Definition:
PixelClustering.h:35
ALPAKA_ACCELERATOR_NAMESPACE::brokenline::constexpr
if constexpr(n > 3)
Definition:
BrokenLine.h:164
aligned_alloc
void * aligned_alloc(size_t alignment, size_t size) noexcept
Definition:
memory_proxies.cc:166
Matriplex
Definition:
Matriplex.h:6
Matriplex::aligned_alloc64
void * aligned_alloc64(std::size_t size)
Definition:
Memory.h:13
Matriplex::round_up_align64
constexpr std::size_t round_up_align64(std::size_t size)
Definition:
Memory.h:8
Generated for CMSSW Reference Manual by
1.8.14