mirror of
https://github.com/thunderbrewhq/squall.git
synced 2025-12-12 10:32:29 +00:00
feat(big): add 64-bit-centric ops
This commit is contained in:
parent
23fb94c19d
commit
d3fd03d67e
4 changed files with 105 additions and 0 deletions
12
storm/big/Ops.hpp
Normal file
12
storm/big/Ops.hpp
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
#ifndef STORM_BIG_OPS_HPP
|
||||
#define STORM_BIG_OPS_HPP
|
||||
|
||||
#include <cstdint>
|
||||
|
||||
uint32_t ExtractLowPart(uint64_t& value);
|
||||
|
||||
uint32_t ExtractLowPartSx(uint64_t& value);
|
||||
|
||||
uint64_t MakeLarge(uint32_t low, uint32_t high);
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue