Integer storage optimization
This commit is contained in:
parent
4fa47153ba
commit
65c3ca14ec
File diff suppressed because it is too large
Load Diff
@ -90,18 +90,19 @@ body
|
|||||||
size_t i;
|
size_t i;
|
||||||
auto tmp1 = Integer(x, x.allocator);
|
auto tmp1 = Integer(x, x.allocator);
|
||||||
auto result = Integer(x.allocator);
|
auto result = Integer(x.allocator);
|
||||||
|
bool firstBit;
|
||||||
|
|
||||||
if (x.length == 0 && y.length != 0)
|
if (x.size == 0 && y.size != 0)
|
||||||
{
|
{
|
||||||
i = y.length;
|
i = y.size;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
result = 1;
|
result = 1;
|
||||||
}
|
}
|
||||||
while (i < y.length)
|
while (i < y.size)
|
||||||
{
|
{
|
||||||
for (ubyte mask = 0x01; mask; mask <<= 1)
|
for (uint mask = 0x01; mask != 0x10000000; mask <<= 1)
|
||||||
{
|
{
|
||||||
if (y.rep[i] & mask)
|
if (y.rep[i] & mask)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user