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
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
findQualityFiles.size
size
Write out results.
Definition:
findQualityFiles.py:443
gpuClustering::pixelStatus::mask
constexpr uint32_t mask
Definition:
gpuClustering.h:24
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