Chopper
Toggle main menu visibility
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
Functions
Variables
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
w
~
Functions
b
c
e
f
g
h
i
o
p
r
s
t
w
~
Variables
b
c
d
e
f
h
i
k
l
m
n
o
p
r
s
t
u
w
Typedefs
Enumerations
Related Functions
Files
File List
File Members
All
Functions
Typedefs
Macros
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
include
chopper
next_multiple_of_64.hpp
Go to the documentation of this file.
1
// ---------------------------------------------------------------------------------------------------
2
// Copyright (c) 2006-2023, Knut Reinert & Freie Universität Berlin
3
// Copyright (c) 2016-2023, Knut Reinert & MPI für molekulare Genetik
4
// This file may be used, modified and/or redistributed under the terms of the 3-clause BSD-License
5
// shipped with this file and also available at: https://github.com/seqan/chopper/blob/main/LICENSE.md
6
// ---------------------------------------------------------------------------------------------------
7
8
#pragma once
9
10
#include <cstddef>
11
12
namespace
chopper
13
{
14
18
[[nodiscard]]
constexpr
size_t
next_multiple_of_64
(
size_t
const
value)
noexcept
19
{
20
return
((value + 63) >> 6) << 6;
21
}
22
23
}
// namespace chopper
chopper
Definition:
adjust_seed.hpp:18
chopper::next_multiple_of_64
constexpr size_t next_multiple_of_64(size_t const value) noexcept
Returns the smallest natural number that is greater or equal to value and a multiplicative of 64.
Definition:
next_multiple_of_64.hpp:18
Generated by
1.9.4