The int128 tag has no wiki summary.
1
vote
2answers
81 views
Is __int128_t arithmetic emulated by GCC, even with SSE?
I've heard that the 128-bit integer data-types like __int128_t provided by GCC are emulated and therefore slow. However, I understand that the various SSE instruction sets (SSE, SSE2, ..., AVX) ...
1
vote
1answer
85 views
Bug with __int128_t in Clang?
This little code compiles with both GCC and Clang, but gives different results:
#include <stdio.h>
int main(){
__int128_t test=10;
while(test>0){
int myTest=(int)test;
...
0
votes
0answers
59 views
GCC alternative for Linux supporting OpenMP and 128-bit integers with +, -, *, /, and %
I have a C code that uses OpenMP and 128-bit integers. For the 128-bit integers, I'm using the __int128_t and __uint128_t extensions provided by GCC. I'm looking for any other compiler that can also ...
1
vote
0answers
84 views
128-bit integers supporting +, -, *, /, and % in the Intel C Compiler?
GCC and Clang have the __int128_t and __uint128_t extensions for 128-bit integer arithmetic.
I was hopeful that __m128i would give something similar for the Intel C Compiler, but (if it's even ...
-1
votes
1answer
277 views
int128 on Linux for Intel compiler
Linux 2.6.32
Intel compiler: icpc version 13.0.1 (gcc version 4.4.6 compatibility)
#include <iostream>
#include <sys/types.h>
int main()
{
std::cerr << sizeof (__uint128_t) ...
0
votes
1answer
143 views
Multiple VC compile errors
I'm using VC++ to write a 128-bit integer "class" in C (wrapped the header in extern "C" block), however, during routine builds to check for errors, I encountered many after adding this function:
/* ...
1
vote
1answer
487 views
How to convert a decimal ascii string to integer array in C?
I have written a program that works with IPv6 addresses, and I needed code that converts a four-integer array to decimal string that represented number of IPv6 addresses[1]. Now I ran into the ...
1
vote
1answer
740 views
128-bit integer in visual studio 6 [duplicate]
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 ...
5
votes
2answers
1k 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. ...
4
votes
2answers
3k 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:
...
1
vote
4answers
848 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 ...
7
votes
4answers
1k views
C# Custom data type! [duplicate]
Possible Duplicate:
Int128 in .Net?
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 ...
1
vote
2answers
1k 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 ...
4
votes
4answers
1k 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 ...
22
votes
8answers
9k 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 ...
