JUCE
|
An arbitrarily large integer class. More...
Public Member Functions | |
BigInteger () | |
Creates an empty BigInteger. More... | |
BigInteger (uint32 value) | |
Creates a BigInteger containing an integer value in its low bits. More... | |
BigInteger (int32 value) | |
Creates a BigInteger containing an integer value in its low bits. More... | |
BigInteger (int64 value) | |
Creates a BigInteger containing an integer value in its low bits. More... | |
BigInteger (const BigInteger &) | |
Creates a copy of another BigInteger. More... | |
BigInteger (BigInteger &&) noexcept | |
Move constructor. More... | |
BigInteger & | operator= (BigInteger &&) noexcept |
Move assignment operator. More... | |
~BigInteger () | |
Destructor. More... | |
BigInteger & | operator= (const BigInteger &) |
Copies another BigInteger onto this one. More... | |
void | swapWith (BigInteger &) noexcept |
Swaps the internal contents of this with another object. More... | |
bool | operator[] (int bit) const noexcept |
Returns the value of a specified bit in the number. More... | |
bool | isZero () const noexcept |
Returns true if no bits are set. More... | |
bool | isOne () const noexcept |
Returns true if the value is 1. More... | |
int | toInteger () const noexcept |
Attempts to get the lowest 32 bits of the value as an integer. More... | |
int64 | toInt64 () const noexcept |
Attempts to get the lowest 64 bits of the value as an integer. More... | |
void | clear () noexcept |
Resets the value to 0. More... | |
void | clearBit (int bitNumber) noexcept |
Clears a particular bit in the number. More... | |
void | setBit (int bitNumber) |
Sets a specified bit to 1. More... | |
void | setBit (int bitNumber, bool shouldBeSet) |
Sets or clears a specified bit. More... | |
void | setRange (int startBit, int numBits, bool shouldBeSet) |
Sets a range of bits to be either on or off. More... | |
void | insertBit (int bitNumber, bool shouldBeSet) |
Inserts a bit an a given position, shifting up any bits above it. More... | |
BigInteger | getBitRange (int startBit, int numBits) const |
Returns a range of bits as a new BigInteger. More... | |
uint32 | getBitRangeAsInt (int startBit, int numBits) const noexcept |
Returns a range of bits as an integer value. More... | |
void | setBitRangeAsInt (int startBit, int numBits, uint32 valueToSet) |
Sets a range of bits to an integer value. More... | |
void | shiftBits (int howManyBitsLeft, int startBit) |
Shifts a section of bits left or right. More... | |
int | countNumberOfSetBits () const noexcept |
Returns the total number of set bits in the value. More... | |
int | findNextSetBit (int startIndex) const noexcept |
Looks for the index of the next set bit after a given starting point. More... | |
int | findNextClearBit (int startIndex) const noexcept |
Looks for the index of the next clear bit after a given starting point. More... | |
int | getHighestBit () const noexcept |
Returns the index of the highest set bit in the number. More... | |
bool | isNegative () const noexcept |
Returns true if the value is less than zero. More... | |
void | setNegative (bool shouldBeNegative) noexcept |
Changes the sign of the number to be positive or negative. More... | |
void | negate () noexcept |
Inverts the sign of the number. More... | |
BigInteger & | operator+= (const BigInteger &) |
BigInteger & | operator-= (const BigInteger &) |
BigInteger & | operator*= (const BigInteger &) |
BigInteger & | operator/= (const BigInteger &) |
BigInteger & | operator|= (const BigInteger &) |
BigInteger & | operator &= (const BigInteger &) |
BigInteger & | operator^= (const BigInteger &) |
BigInteger & | operator%= (const BigInteger &) |
BigInteger & | operator<<= (int numBitsToShift) |
BigInteger & | operator>>= (int numBitsToShift) |
BigInteger & | operator++ () |
BigInteger & | operator-- () |
BigInteger | operator++ (int) |
BigInteger | operator-- (int) |
BigInteger | operator- () const |
BigInteger | operator+ (const BigInteger &) const |
BigInteger | operator- (const BigInteger &) const |
BigInteger | operator* (const BigInteger &) const |
BigInteger | operator/ (const BigInteger &) const |
BigInteger | operator| (const BigInteger &) const |
BigInteger | operator & (const BigInteger &) const |
BigInteger | operator^ (const BigInteger &) const |
BigInteger | operator% (const BigInteger &) const |
BigInteger | operator<< (int numBitsToShift) const |
BigInteger | operator>> (int numBitsToShift) const |
bool | operator== (const BigInteger &) const noexcept |
bool | operator!= (const BigInteger &) const noexcept |
bool | operator< (const BigInteger &) const noexcept |
bool | operator<= (const BigInteger &) const noexcept |
bool | operator> (const BigInteger &) const noexcept |
bool | operator>= (const BigInteger &) const noexcept |
int | compare (const BigInteger &other) const noexcept |
Does a signed comparison of two BigIntegers. More... | |
int | compareAbsolute (const BigInteger &other) const noexcept |
Compares the magnitudes of two BigIntegers, ignoring their signs. More... | |
void | divideBy (const BigInteger &divisor, BigInteger &remainder) |
Divides this value by another one and returns the remainder. More... | |
BigInteger | findGreatestCommonDivisor (BigInteger other) const |
Returns the largest value that will divide both this value and the argument. More... | |
void | exponentModulo (const BigInteger &exponent, const BigInteger &modulus) |
Performs a combined exponent and modulo operation. More... | |
void | inverseModulo (const BigInteger &modulus) |
Performs an inverse modulo on the value. More... | |
void | montgomeryMultiplication (const BigInteger &other, const BigInteger &modulus, const BigInteger &modulusp, int k) |
Performs the Montgomery Multiplication with modulo. More... | |
void | extendedEuclidean (const BigInteger &a, const BigInteger &b, BigInteger &xOut, BigInteger &yOut) |
Performs the Extended Euclidean algorithm. More... | |
String | toString (int base, int minimumNumCharacters=1) const |
Converts the number to a string. More... | |
void | parseString (StringRef text, int base) |
Reads the numeric value from a string. More... | |
MemoryBlock | toMemoryBlock () const |
Turns the number into a block of binary data. More... | |
void | loadFromMemoryBlock (const MemoryBlock &data) |
Converts a block of raw data into a number. More... | |
An arbitrarily large integer class.
A BigInteger can be used in a similar way to a normal integer, but has no size limit (except for memory and performance constraints).
Negative values are possible, but the value isn't stored as 2s-complement, so be careful if you use negative values and look at the values of individual bits.
BigInteger::BigInteger | ( | ) |
Creates an empty BigInteger.
BigInteger::BigInteger | ( | uint32 | value | ) |
Creates a BigInteger containing an integer value in its low bits.
The low 32 bits of the number are initialised with this value.
BigInteger::BigInteger | ( | int32 | value | ) |
Creates a BigInteger containing an integer value in its low bits.
The low 32 bits of the number are initialised with the absolute value passed in, and its sign is set to reflect the sign of the number.
BigInteger::BigInteger | ( | int64 | value | ) |
Creates a BigInteger containing an integer value in its low bits.
The low 64 bits of the number are initialised with the absolute value passed in, and its sign is set to reflect the sign of the number.
BigInteger::BigInteger | ( | const BigInteger & | ) |
Creates a copy of another BigInteger.
|
noexcept |
Move constructor.
BigInteger::~BigInteger | ( | ) |
Destructor.
|
noexcept |
Move assignment operator.
BigInteger& BigInteger::operator= | ( | const BigInteger & | ) |
Copies another BigInteger onto this one.
|
noexcept |
Swaps the internal contents of this with another object.
|
noexcept |
Returns the value of a specified bit in the number.
If the index is out-of-range, the result will be false.
|
noexcept |
Returns true if no bits are set.
|
noexcept |
Returns true if the value is 1.
|
noexcept |
Attempts to get the lowest 32 bits of the value as an integer.
If the value is bigger than the integer limits, this will return only the lower bits.
|
noexcept |
Attempts to get the lowest 64 bits of the value as an integer.
If the value is bigger than the integer limits, this will return only the lower bits.
|
noexcept |
Resets the value to 0.
|
noexcept |
Clears a particular bit in the number.
void BigInteger::setBit | ( | int | bitNumber | ) |
Sets a specified bit to 1.
void BigInteger::setBit | ( | int | bitNumber, |
bool | shouldBeSet | ||
) |
Sets or clears a specified bit.
Sets a range of bits to be either on or off.
startBit | the first bit to change |
numBits | the number of bits to change |
shouldBeSet | whether to turn these bits on or off |
void BigInteger::insertBit | ( | int | bitNumber, |
bool | shouldBeSet | ||
) |
Inserts a bit an a given position, shifting up any bits above it.
BigInteger BigInteger::getBitRange | ( | int | startBit, |
int | numBits | ||
) | const |
Returns a range of bits as a new BigInteger.
e.g. getBitRangeAsInt (0, 64) would return the lowest 64 bits.
Returns a range of bits as an integer value.
e.g. getBitRangeAsInt (0, 32) would return the lowest 32 bits.
Asking for more than 32 bits isn't allowed (obviously) - for that, use getBitRange().
Sets a range of bits to an integer value.
Copies the given integer onto a range of bits, starting at startBit, and using up to numBits of the available bits.
Shifts a section of bits left or right.
howManyBitsLeft | how far to move the bits (+ve numbers shift it left, -ve numbers shift it right). |
startBit | the first bit to affect - if this is > 0, only bits above that index will be affected. |
|
noexcept |
Returns the total number of set bits in the value.
Looks for the index of the next set bit after a given starting point.
This searches from startIndex (inclusive) upwards for the first set bit, and returns its index. If no set bits are found, it returns -1.
Looks for the index of the next clear bit after a given starting point.
This searches from startIndex (inclusive) upwards for the first clear bit, and returns its index.
|
noexcept |
Returns the index of the highest set bit in the number.
If the value is zero, this will return -1.
|
noexcept |
Returns true if the value is less than zero.
|
noexcept |
Changes the sign of the number to be positive or negative.
|
noexcept |
Inverts the sign of the number.
BigInteger& BigInteger::operator+= | ( | const BigInteger & | ) |
BigInteger& BigInteger::operator-= | ( | const BigInteger & | ) |
BigInteger& BigInteger::operator*= | ( | const BigInteger & | ) |
BigInteger& BigInteger::operator/= | ( | const BigInteger & | ) |
BigInteger& BigInteger::operator|= | ( | const BigInteger & | ) |
BigInteger& BigInteger::operator&= | ( | const BigInteger & | ) |
BigInteger& BigInteger::operator^= | ( | const BigInteger & | ) |
BigInteger& BigInteger::operator%= | ( | const BigInteger & | ) |
BigInteger& BigInteger::operator<<= | ( | int | numBitsToShift | ) |
BigInteger& BigInteger::operator>>= | ( | int | numBitsToShift | ) |
BigInteger& BigInteger::operator++ | ( | ) |
BigInteger& BigInteger::operator-- | ( | ) |
BigInteger BigInteger::operator++ | ( | int | ) |
BigInteger BigInteger::operator-- | ( | int | ) |
BigInteger BigInteger::operator- | ( | ) | const |
BigInteger BigInteger::operator+ | ( | const BigInteger & | ) | const |
BigInteger BigInteger::operator- | ( | const BigInteger & | ) | const |
BigInteger BigInteger::operator* | ( | const BigInteger & | ) | const |
BigInteger BigInteger::operator/ | ( | const BigInteger & | ) | const |
BigInteger BigInteger::operator| | ( | const BigInteger & | ) | const |
BigInteger BigInteger::operator& | ( | const BigInteger & | ) | const |
BigInteger BigInteger::operator^ | ( | const BigInteger & | ) | const |
BigInteger BigInteger::operator% | ( | const BigInteger & | ) | const |
BigInteger BigInteger::operator<< | ( | int | numBitsToShift | ) | const |
BigInteger BigInteger::operator>> | ( | int | numBitsToShift | ) | const |
|
noexcept |
|
noexcept |
|
noexcept |
|
noexcept |
|
noexcept |
|
noexcept |
|
noexcept |
Does a signed comparison of two BigIntegers.
Return values are:
|
noexcept |
Compares the magnitudes of two BigIntegers, ignoring their signs.
Return values are:
void BigInteger::divideBy | ( | const BigInteger & | divisor, |
BigInteger & | remainder | ||
) |
Divides this value by another one and returns the remainder.
This number is divided by other, leaving the quotient in this number, with the remainder being copied to the other BigInteger passed in.
BigInteger BigInteger::findGreatestCommonDivisor | ( | BigInteger | other | ) | const |
Returns the largest value that will divide both this value and the argument.
void BigInteger::exponentModulo | ( | const BigInteger & | exponent, |
const BigInteger & | modulus | ||
) |
Performs a combined exponent and modulo operation.
This BigInteger's value becomes (this ^ exponent) % modulus.
void BigInteger::inverseModulo | ( | const BigInteger & | modulus | ) |
Performs an inverse modulo on the value.
i.e. the result is (this ^ -1) mod (modulus).
void BigInteger::montgomeryMultiplication | ( | const BigInteger & | other, |
const BigInteger & | modulus, | ||
const BigInteger & | modulusp, | ||
int | k | ||
) |
Performs the Montgomery Multiplication with modulo.
This object is left containing the result value: ((this * other) * R1) % modulus. To get this result, we need modulus, modulusp and k such as R = 2^k, with modulus * modulusp - R * R1 = GCD(modulus, R) = 1
void BigInteger::extendedEuclidean | ( | const BigInteger & | a, |
const BigInteger & | b, | ||
BigInteger & | xOut, | ||
BigInteger & | yOut | ||
) |
Performs the Extended Euclidean algorithm.
This method will set the xOut and yOut arguments such that (a * xOut) - (b * yOut) = GCD (a, b). On return, this object is left containing the value of the GCD.
Converts the number to a string.
Specify a base such as 2 (binary), 8 (octal), 10 (decimal), 16 (hex). If minimumNumCharacters is greater than 0, the returned string will be padded with leading zeros to reach at least that length.
Reads the numeric value from a string.
Specify a base such as 2 (binary), 8 (octal), 10 (decimal), 16 (hex). Any invalid characters will be ignored.
MemoryBlock BigInteger::toMemoryBlock | ( | ) | const |
Turns the number into a block of binary data.
The data is arranged as little-endian, so the first byte of data is the low 8 bits of the number, and so on.
void BigInteger::loadFromMemoryBlock | ( | const MemoryBlock & | data | ) |
Converts a block of raw data into a number.
The data is arranged as little-endian, so the first byte of data is the low 8 bits of the number, and so on.