STORMM Source Documentation
Loading...
Searching...
No Matches
host_bit_counting.h
1// -*-c++-*-
2#ifndef STORMM_HOSE_POPC_H
3#define STORMM_HOSE_POPC_H
4
5#include "copyright.h"
6#include "DataTypes/common_types.h"
7
8namespace stormm {
9namespace numerics {
10
14int hostPopcs(ushort x);
15
19int hostPopc(uint x);
20
24int hostPopcll(ullint x);
25
29int hostFfss(ushort x);
30
34int hostFfs(uint x);
35
39int hostFfsll(ullint x);
40
41} // namespace numerics
42} // namespace stormm
43
44#endif