feat(big): add 64-bit-centric ops

This commit is contained in:
fallenoak 2023-01-23 22:10:24 -06:00 committed by GitHub
parent 23fb94c19d
commit d3fd03d67e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 105 additions and 0 deletions

12
storm/big/Ops.hpp Normal file
View 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