Searched refs:USItype (Results 1 - 25 of 32) sorted by relevance

12

/freebsd-10.0-release/contrib/gcc/config/
H A Dfixunssfsi.c2 typedef unsigned int USItype __attribute__ ((mode (SI))); typedef
6 USItype __fixunssfsi (SFtype);
9 (- ((SItype) (((USItype) 1 << ((sizeof (SItype) * 8) - 1)) - 1)) - 1)
11 USItype
H A Dfloatundidf.c2 typedef unsigned int USItype __attribute__ ((mode (SI))); typedef
12 DFtype f = (USItype) (u >> (sizeof (USItype) * 8));
14 f += (USItype) u;
H A Dfloatunsidf.c3 typedef unsigned int USItype __attribute__ ((mode (SI))); typedef
7 __floatunsidf (USItype u)
12 r += (DFtype)2.0 * (DFtype) ((USItype) 1
13 << (sizeof (USItype) * __CHAR_BIT__ - 1));
H A Dfloatunsitf.c3 typedef unsigned int USItype __attribute__ ((mode (SI))); typedef
7 __floatunsitf (USItype u)
12 r += (TFtype)2.0 * (TFtype) ((USItype) 1
13 << (sizeof (USItype) * __CHAR_BIT__ - 1));
H A Dfloatunsixf.c3 typedef unsigned int USItype __attribute__ ((mode (SI))); typedef
7 __floatunsixf (USItype u)
12 r += (XFtype)2.0 * (XFtype) ((USItype) 1
13 << (sizeof (USItype) * __CHAR_BIT__ - 1));
H A Dfixunsdfsi.c2 typedef unsigned int USItype __attribute__ ((mode (SI))); typedef
7 USItype __fixunsdfsi (DFtype);
10 (- ((SItype) (((USItype) 1 << ((sizeof (SItype) * 8) - 1)) - 1)) - 1)
12 USItype
H A Dfixdfdi.c2 typedef unsigned int USItype __attribute__ ((mode (SI))); typedef
15 USItype hi, lo;
17 hi = a / (((UDItype) 1) << (sizeof (USItype) * 8));
18 lo = a - ((DFtype) hi) * (((UDItype) 1) << (sizeof (USItype) * 8));
19 return ((UDItype) hi << (sizeof (USItype) * 8)) | lo;
H A Dfixsfdi.c2 typedef unsigned int USItype __attribute__ ((mode (SI))); typedef
17 USItype hi, lo;
19 hi = a / (((UDItype) 1) << (sizeof (USItype) * 8));
20 lo = a - ((DFtype) hi) * (((UDItype) 1) << (sizeof (USItype) * 8));
21 return ((UDItype) hi << (sizeof (USItype) * 8)) | lo;
H A Dfloatundisf.c4 typedef unsigned int USItype __attribute__ ((mode (SI))); typedef
32 DFtype f = (USItype) (u >> (sizeof (USItype) * 8));
34 f += (USItype) u;
H A Dfloatunsisf.c3 typedef unsigned int USItype __attribute__ ((mode (SI))); typedef
7 __floatunsisf (USItype u)
H A Dfloatdidf.c3 typedef unsigned int USItype __attribute__ ((mode (SI))); typedef
15 f += (USItype) u;
/freebsd-10.0-release/contrib/gcc/config/soft-fp/
H A Dfixunsdfsi.c35 USItype __fixunsdfsi(DFtype a)
39 USItype r;
H A Dfixunssfsi.c35 USItype __fixunssfsi(SFtype a)
39 USItype r;
H A Dfixunstfsi.c35 USItype __fixunstfsi(TFtype a)
39 USItype r;
H A Dfloatunsidf.c35 DFtype __floatunsidf(USItype i)
41 FP_FROM_INT_D(A, i, SI_BITS, USItype);
H A Dfloatunsisf.c35 SFtype __floatunsisf(USItype i)
41 FP_FROM_INT_S(A, i, SI_BITS, USItype);
H A Dfloatunsitf.c36 __floatunsitf(USItype i)
42 FP_FROM_INT_Q(A, i, SI_BITS, USItype);
H A Dfixdfsi.c39 USItype r;
H A Dfixsfsi.c39 USItype r;
H A Dfixtfsi.c39 USItype r;
H A Dfloatsidf.c41 FP_FROM_INT_D(A, i, SI_BITS, USItype);
H A Dfloatsisf.c41 FP_FROM_INT_S(A, i, SI_BITS, USItype);
H A Dfloatsitf.c41 FP_FROM_INT_Q(A, i, SI_BITS, USItype);
/freebsd-10.0-release/contrib/gcc/
H A Dlonglong.h28 SItype, USItype -- Signed and unsigned 32 bit types.
31 On a 32 bit machine UWtype should typically be USItype;
41 #define UWtype USItype
42 #define UHWtype USItype
163 : "=r" ((USItype) (sh)), \
164 "=&r" ((USItype) (sl)) \
165 : "%r" ((USItype) (ah)), \
166 "rIJ" ((USItype) (bh)), \
167 "%r" ((USItype) (al)), \
168 "rIJ" ((USItype) (b
[all...]
/freebsd-10.0-release/contrib/gcc/config/rs6000/
H A Dppc64-fp.c40 extern USItype __fixunsdfsi (DFtype);
41 extern USItype __fixunssfsi (SFtype);
77 USItype
80 if (a >= - (DFtype) (- ((SItype)(((USItype)1 << ((4 * 8) - 1)) - 1)) - 1))
81 return (SItype) (a + (- ((SItype)(((USItype)1 << ((4 * 8) - 1)) - 1)) - 1))
82 - (- ((SItype)(((USItype)1 << ((4 * 8) - 1)) - 1)) - 1);
86 USItype
89 if (a >= - (SFtype) (- ((SItype)(((USItype)1 << ((4 * 8) - 1)) - 1)) - 1))
90 return (SItype) (a + (- ((SItype)(((USItype)1 << ((4 * 8) - 1)) - 1)) - 1))
91 - (- ((SItype)(((USItype)
[all...]

Completed in 137 milliseconds

12