search for: uint80_t

Displaying 3 results from an estimated 3 matches for "uint80_t".

Did you mean: int80_t
2010 Jun 07
2
[LLVMdev] i80 data type
Dear all, Is there anyone who knows well i80 data type? Is there any corresponding data type for X86 processor? uint80_t or int80_t for gcc? PS. I found that the LLVM website is down! -- Hao Shen
2010 Jun 07
0
[LLVMdev] i80 data type
Hi Hao Shen, > Is there anyone who knows well i80 data type? Is there any > corresponding data type > for X86 processor? uint80_t or int80_t for gcc? no, there is no native processor support for i80. GCC does not have a direct equivalent to i80. However if you declare a 80-bit wide C bitfield, then arithmetic on it is done in 80 bits. For example, here gcc should perform i3 arithmetic: #include <stdio.h> struct i3...
2010 Jun 07
2
[LLVMdev] i80 data type
On Mon, Jun 7, 2010 at 5:49 PM, Duncan Sands <baldrick at free.fr> wrote: > Hi Hao Shen, > >> Is there anyone who knows well i80 data type? Is there any >> corresponding data type >> for X86 processor? uint80_t or int80_t for gcc? > > no, there is no native processor support for i80. GCC does not have > a direct equivalent to i80. However if you declare a 80-bit wide C > bitfield, then arithmetic on it is done in 80 bits. For example, > here gcc should perform i3 arithmetic: > > #i...