Top "Int128" questions

Use this tag to refer to the 128-bit integers.

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 …

c++ visual-studio int128
How to print __int128 in g++?

I am using the GCC built-in type __int128 for a few things in my C++ program, nothing really significant, at …

c++ iostream int128
How does Rust's 128-bit integer `i128` work on a 64-bit system?

Rust has 128-bit integers, these are denoted with the data type i128 (and u128 for unsigned ints): let a: i128 = 170141183460469231731687303715884105727; …

rust x86-64 bigint int128 llvm-codegen
Is there hardware support for 128bit integers in modern processors?

Do we still need to emulate 128bit integers in software, or is there hardware support for them in your average …

x86 cpu int128
Efficient way to store IPv4/IPv6 addresses

I am working on a C/C++ networking project that it should be able to both use the IPv4 and …

c++ gcc ipv6 ipv4 int128
An efficient way to do basic 128 bit integer calculations in C++?

Some years ago I needed a way to do some basic 128 bit integer math with Cuda: 128 bit integer on cuda?. …

c++ assembly x86 intel-edison int128