GMP 变量的位大小

发布于 2024-08-27 05:21:40 字数 212 浏览 9 评论 0原文

在 GMP 库中,

_mp_size 保存整数的肢体数量。

我们可以创建 size 的整数 1肢(32位),2肢(64位),3肢(96位)...依此类推。使用 mpz_init 或 mpz_random 函数..

我们不能创建一个大小为 8 位或 16 位的整数变量..而不是 32 位大小的倍数???

你能编码吗?

谢谢 ..

In GMP library,

_mp_size holds the number of limbs of an integer..

we can create integers of size
1 limb(32bits),2 limbs(64bits),3 limbs(96bits)...so on. using mpz_init or mpz_random functions..

cant we create an integer variable of size 8bit or 16 bit.. other than multiples of 32 bit size ???

can you code for that??

thank you ..

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

临走之时 2024-09-03 05:21:40

GNU GMP 库适用于超出标准 C 类型提供的范围的数字。分别使用(无符号)char 或(无符号)short 表示 8 位和 16 位整数。

The GNU GMP library is for numbers that exceed the ranges provided by the standard C types. Use (unsigned) char or (unsigned) short for 8 and 16 bit integers, respectively.

一桥轻雨一伞开 2024-09-03 05:21:40

这的实用性有限,因为大多数现代处理器至少使用 32 位字长。

This would be of limited utility, because most modern processors use at least a 32-bit word size.

最近可好 2024-09-03 05:21:40

我认为你不能。以下是 http://gmplib.org 上的讨论摘录/list-archives/gmp-discuss/2004-June/001200.html

肢体尺寸被编译成
库,并且由
tghe [原文如此] 处理器的可用类型和
主机环境。

I don't think you can. Here's an excerpt from a discussion at http://gmplib.org/list-archives/gmp-discuss/2004-June/001200.html:

The limb size is compiled into the
library, and is determined from the
available types of tghe [sic] processor and
the host environment.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文