| /dragonfly/contrib/gcc-4.7/libgcc/ |
| HD | libgcc2.h | 130 typedef int SItype __attribute__ ((mode (SI))); typedef 206 #define Wtype SItype 208 #define HWtype SItype 225 #define DWtype SItype 403 extern SItype __bswapsi2 (SItype); 427 extern SItype __absvsi2 (SItype); 428 extern SItype __addvsi3 (SItype, SItype); 429 extern SItype __subvsi3 (SItype, SItype); 430 extern SItype __mulvsi3 (SItype, SItype); 431 extern SItype __negvsi2 (SItype);
|
| HD | floatunsisf.c | 2 typedef int SItype __attribute__ ((mode (SI))); typedef 9 SItype s = (SItype) u; in __floatunsisf() 14 return (SFtype) 2.0 * (SFtype) (SItype) ((u & 1) | (u >> 1)); in __floatunsisf()
|
| HD | fixed-bit.h | 85 typedef int SItype __attribute__ ((mode (SI))); typedef 170 #define DINT_C_TYPE SItype 202 #define INT_C_TYPE SItype 245 #define HINT_C_TYPE SItype 300 #define DINT_C_TYPE SItype 332 #define INT_C_TYPE SItype 375 #define HINT_C_TYPE SItype 595 #define FROM_INT_C_TYPE SItype 596 #define FROM_SINT_C_TYPE SItype 636 #define FROM_SINT_C_TYPE SItype [all …]
|
| HD | floatunsixf.c | 2 typedef int SItype __attribute__ ((mode (SI))); typedef 9 SItype s = (SItype) u; in __floatunsixf()
|
| HD | floatunsitf.c | 2 typedef int SItype __attribute__ ((mode (SI))); typedef 9 SItype s = (SItype) u; in __floatunsitf()
|
| HD | floatunsidf.c | 2 typedef int SItype __attribute__ ((mode (SI))); typedef 9 SItype s = (SItype) u; in __floatunsidf()
|
| HD | libgcc2.c | 88 SItype 89 __addvsi3 (SItype a, SItype b) in __addvsi3() 91 const SItype w = (USItype) a + (USItype) b; in __addvsi3() 126 SItype 127 __subvsi3 (SItype a, SItype b) in __subvsi3() 129 const SItype w = (USItype) a - (USItype) b; in __subvsi3() 165 #define WORD_SIZE (sizeof (SItype) * BITS_PER_UNIT) 166 SItype 167 __mulvsi3 (SItype a, SItype b) in __mulvsi3() 171 if ((SItype) (w >> WORD_SIZE) != (SItype) w >> (WORD_SIZE-1)) in __mulvsi3() [all …]
|
| HD | fp-bit.h | 100 typedef int SItype __attribute__ ((mode (SI))); typedef 120 #define MAX_SI_INT ((SItype) (MAX_USI_INT >> 1)) 203 typedef SItype intfrac; 444 extern FLO_type si_to_float (SItype); 448 extern SItype float_to_si (FLO_type);
|
| HD | longlong.h | 368 register SItype __r0 __asm__ ("0"); \ 369 register SItype __r1 __asm__ ("1") = (m0); \ 379 register SItype __r0 __asm__ ("0") = (n1); \ 380 register SItype __r1 __asm__ ("1") = (n0); \ 896 SItype __m0 = (m0), __m1 = (m1); \ 1014 (ph) += ((((SItype) __m0 >> 31) & __m1) \ 1015 + (((SItype) __m1 >> 31) & __m0)); \ 1086 SItype c_; \ 1378 (xh) += ((((SItype) __m0 >> 31) & __m1) \ 1379 + (((SItype) __m1 >> 31) & __m0)); \ [all …]
|
| HD | dfp-bit.h | 207 #define INT_TYPE SItype 537 typedef int SItype __attribute__ ((mode (SI))); typedef
|
| /dragonfly/contrib/gcc-8.0/libgcc/ |
| HD | libgcc2.h | 128 typedef int SItype __attribute__ ((mode (SI))); typedef 208 #define Wtype SItype 210 #define HWtype SItype 227 #define DWtype SItype 408 extern SItype __bswapsi2 (SItype); 432 extern SItype __absvsi2 (SItype); 433 extern SItype __addvsi3 (SItype, SItype); 434 extern SItype __subvsi3 (SItype, SItype); 435 extern SItype __mulvsi3 (SItype, SItype); 436 extern SItype __negvsi2 (SItype);
|
| HD | libgcc2.c | 86 SItype 87 __addvsi3 (SItype a, SItype b) in __addvsi3() 89 const SItype w = (USItype) a + (USItype) b; in __addvsi3() 124 SItype 125 __subvsi3 (SItype a, SItype b) in __subvsi3() 127 const SItype w = (USItype) a - (USItype) b; in __subvsi3() 163 #define WORD_SIZE (sizeof (SItype) * __CHAR_BIT__) 164 SItype 165 __mulvsi3 (SItype a, SItype b) in __mulvsi3() 169 if ((SItype) (w >> WORD_SIZE) != (SItype) w >> (WORD_SIZE-1)) in __mulvsi3() [all …]
|
| /dragonfly/contrib/gcc-4.7/libgcc/soft-fp/ |
| HD | soft-fp.h | 190 typedef int SItype __attribute__((mode(SI))); typedef 205 #define SI_BITS (__CHAR_BIT__ * (int)sizeof(SItype))
|
| HD | fixdfsi.c | 34 SItype __fixdfsi(DFtype a) in __fixdfsi()
|
| HD | fixtfsi.c | 34 SItype __fixtfsi(TFtype a) in __fixtfsi()
|
| HD | fixsfsi.c | 34 SItype __fixsfsi(SFtype a) in __fixsfsi()
|
| HD | floatsidf.c | 34 DFtype __floatsidf(SItype i) in __floatsidf()
|
| HD | floatsisf.c | 34 SFtype __floatsisf(SItype i) in __floatsisf()
|
| HD | floatsitf.c | 34 TFtype __floatsitf(SItype i) in __floatsitf()
|
| /dragonfly/contrib/binutils-2.27/include/ |
| HD | longlong.h | 217 SItype c_; \ 432 register SItype __r0 __asm__ ("0"); \ 433 register SItype __r1 __asm__ ("1") = (m0); \ 443 register SItype __r0 __asm__ ("0") = (n1); \ 444 register SItype __r1 __asm__ ("1") = (n0); \ 958 SItype __m0 = (m0), __m1 = (m1); \ 1068 (ph) += ((((SItype) __m0 >> 31) & __m1) \ 1069 + (((SItype) __m1 >> 31) & __m0)); \ 1168 SItype c_; \ 1490 (xh) += ((((SItype) __m0 >> 31) & __m1) \ [all …]
|
| /dragonfly/contrib/gcc-8.0/libgcc/soft-fp/ |
| HD | soft-fp.h | 328 typedef int SItype __attribute__ ((mode (SI))); typedef 343 #define SI_BITS (__CHAR_BIT__ * (int) sizeof (SItype))
|
| HD | floatsitf.c | 36 __floatsitf (SItype i) in __floatsitf()
|
| HD | fixtfsi.c | 34 SItype
|
| /dragonfly/contrib/gcc-8.0/include/ |
| HD | longlong.h | 219 SItype c_; \ 434 register SItype __r0 __asm__ ("0"); \ 435 register SItype __r1 __asm__ ("1") = (m0); \ 445 register SItype __r0 __asm__ ("0") = (n1); \ 446 register SItype __r1 __asm__ ("1") = (n0); \ 924 SItype __m0 = (m0), __m1 = (m1); \ 1034 (ph) += ((((SItype) __m0 >> 31) & __m1) \ 1035 + (((SItype) __m1 >> 31) & __m0)); \ 1491 (xh) += ((((SItype) __m0 >> 31) & __m1) \ 1492 + (((SItype) __m1 >> 31) & __m0)); \ [all …]
|
| /dragonfly/contrib/mpfr/src/ |
| HD | mpfr-gmp.h | 178 typedef int SItype __attribute__ ((mode (SI))); typedef 184 typedef long SItype; typedef
|