Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
8answers
4k views

Int128 in .Net?

I need to do some large integer math. Are there any classes or structs out there that represent a 128-bit integer and implement all of the usual operators? BTW, I realize that decimal can be used to ...
7
votes
5answers
727 views

C# Custom data type!

After I decided to implement my Int128 in C#, I thought it would be nice to make it look like other dotNet data types.. But I could not implement the following feature: suffix initialization: such ...
3
votes
2answers
240 views

__uint128_t on mingw gcc

I'm trying to compile a c program under mingw gcc. This program is using an __uint128_t integer. When I try to compile it under the standard ubuntu gcc on the same 64-bit machine, it perfectly works. ...
3
votes
2answers
673 views

How to enable __int128 on Visual Studio?

When I type __int128 in a C++ project in Visual Studio, the editor changes color of __int128 to blue (like keyword). But when I compile the source, the folowing error appears: error C4235: ...
3
votes
4answers
780 views

Arithmetic with IPv6 addresses (large integers)

I'm working with IPv6 addresses in the form: FFFF:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF Internally, I store them in an array: TIp6Bytes = array [0..15] of Byte; I need to manipulate the IPv6 ...
1
vote
1answer
193 views

128-bit integer in visual studio 6 [closed]

Possible Duplicate: How to enable __int128 on Visual Studio? In Visual Studio 6, I've __int32 and __int64 integer data types but I can't have __int128 although I'm working on 64-bit ...
1
vote
4answers
328 views

How to properly add/subtract to a 128-bit number (as two u_int64_t)

I'm working in C and have need to add and subtract a 64-bit number and a 128-bit number. The result will be held in the 128-bit number. I am using an integer array to store the upper and lower halves ...
1
vote
2answers
473 views

How can I use a custom type for keys in a boost::unordered_map?

I'm using Boost's implementation of a hash map in a project right now, and I'm trying to implement a custom type for keys. I have four unsigned integers which I'd like to combine into a single 128-bit ...