How can I add and subtract 128 bit integers in C or C++ if my compiler does not support them?

后端 未结 7 708
我在风中等你
我在风中等你 2020-11-28 11:07

I\'m writing a compressor for a long stream of 128 bit numbers. I would like to store the numbers as differences -- storing only the difference between the numbers rather th

相关标签:
7条回答
  • 2020-11-28 11:55

    TomsFastMath is a bit like GMP (mentioned above), but is public domain, and was designed from the ground up to be extremely fast (it even contains assembly code optimizations for x86, x86-64, ARM, SSE2, PPC32, and AVR32).

    0 讨论(0)
提交回复
热议问题