Searched refs:EXPBITS (Results 1 - 5 of 5) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/builtins/hexagon/
H A Ddfmul.S45 #define EXPBITS 11 define
73 ATMP = insert(A,#MANTBITS,#EXPBITS-1)
74 BTMP = asl(B,#EXPBITS-1)
113 EXP0 = extractu(AH,#EXPBITS,#HI_MANTBITS)
114 EXP1 = extractu(BH,#EXPBITS,#HI_MANTBITS)
178 EXP1 = extractu(AH,#EXPBITS,#HI_MANTBITS)
232 AH = insert(S_ZERO,#EXPBITS,#HI_MANTBITS)
253 AH = insert(S_ZERO,#EXPBITS-1,#HI_MANTBITS+1) // Insert correct exponent
335 TMP = add(TMP,#-EXPBITS)
H A Ddfaddsub.S46 #define EXPBITS 11 define
79 EXPA = extractu(AH,#EXPBITS,#HI_MANTBITS)
80 EXPB = extractu(BH,#EXPBITS,#HI_MANTBITS)
96 ATMP = insert(A,#MANTBITS,#EXPBITS-2) // Q1.62
97 BTMP = insert(B,#MANTBITS,#EXPBITS-2) // Q1.62
199 TMP = extractu(AH,#EXPBITS,#HI_MANTBITS)
292 EXPA = extractu(AH,#EXPBITS,#HI_MANTBITS)
295 BTMP = asl(BTMP,#EXPBITS-2)
301 ATMP = insert(A,#MANTBITS,#EXPBITS-2)
H A Ddffma.S65 #define EXPBITS 11 define
121 ATMP = insert(A,#MANTBITS,#EXPBITS-3)
122 BTMP = insert(B,#MANTBITS,#EXPBITS-3)
141 CTMP = insert(C,#MANTBITS,#EXPBITS-3)
152 EXPA = extractu(AH,#EXPBITS,#HI_MANTBITS)
153 EXPB = extractu(BH,#EXPBITS,#HI_MANTBITS)
178 EXPC = extractu(CH,#EXPBITS,#HI_MANTBITS)
361 NEW_EXPB = extractu(AH,#EXPBITS,#HI_MANTBITS)
555 TMP = add(clb(BTMP),#-EXPBITS)
693 CH = insert(TMP,#EXPBITS,#HI_MANTBIT
[all...]
/freebsd-12-stable/contrib/gcc/config/
H A Dfp-bit.h150 # define EXPBITS 15 macro
160 # define EXPBITS 11 macro
185 # define EXPBITS 8 macro
208 # define EXPBITS 11 macro
392 unsigned int exp:EXPBITS __attribute__ ((packed));
402 unsigned int exp:EXPBITS __attribute__ ((packed));
410 unsigned int exp:EXPBITS __attribute__ ((packed));
H A Dfp-bit.c378 high |= (halffractype) sign << (HALFFRACBITS + EXPBITS);
413 low |= (halffractype) lowsign << (HALFFRACBITS + EXPBITS);
419 dst.value_raw |= ((fractype) (exp & ((1 << EXPBITS) - 1))) << FRACBITS;
420 dst.value_raw |= ((fractype) (sign & 1)) << (FRACBITS | EXPBITS);
487 exp = ((int)(high >> HALFFRACBITS)) & ((1 << EXPBITS) - 1);
488 sign = ((int)(high >> (((HALFFRACBITS + EXPBITS))))) & 1;
492 int lowexp = ((int)(low >> HALFFRACBITS)) & ((1 << EXPBITS) - 1);
493 int lowsign = ((int)(low >> (((HALFFRACBITS + EXPBITS))))) & 1;
523 exp = ((int)(src->value_raw >> FRACBITS)) & ((1 << EXPBITS) - 1);
524 sign = ((int)(src->value_raw >> (FRACBITS + EXPBITS)))
[all...]

Completed in 115 milliseconds