Home
last modified time | relevance | path

Searched refs:EXPBITS (Results 1 – 7 of 7) sorted by relevance

/openbsd/src/gnu/llvm/compiler-rt/lib/builtins/hexagon/
Ddfmul.S45 #define EXPBITS 11 macro
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)
Ddfaddsub.S46 #define EXPBITS 11 macro
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)
Ddffma.S65 #define EXPBITS 11 macro
119 ATMP = insert(A,#MANTBITS,#EXPBITS-3)
120 BTMP = insert(B,#MANTBITS,#EXPBITS-3)
139 CTMP = insert(C,#MANTBITS,#EXPBITS-3)
150 EXPA = extractu(AH,#EXPBITS,#HI_MANTBITS)
151 EXPB = extractu(BH,#EXPBITS,#HI_MANTBITS)
176 EXPC = extractu(CH,#EXPBITS,#HI_MANTBITS)
359 NEW_EXPB = extractu(AH,#EXPBITS,#HI_MANTBITS)
553 TMP = add(clb(BTMP),#-EXPBITS)
691 CH = insert(TMP,#EXPBITS,#HI_MANTBITS)
/openbsd/src/gnu/gcc/gcc/config/
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));
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))) & 1;
/openbsd/src/gnu/usr.bin/gcc/gcc/config/
Dfp-bit.h146 # define EXPBITS 15 macro
156 # define EXPBITS 11 macro
181 # define EXPBITS 8 macro
204 # define EXPBITS 11 macro
388 unsigned int exp:EXPBITS __attribute__ ((packed));
398 unsigned int exp:EXPBITS __attribute__ ((packed));
406 unsigned int exp:EXPBITS __attribute__ ((packed));
Dfp-bit.c331 high |= ((fractype) (exp & ((1 << EXPBITS) - 1))) << HALFFRACBITS;
332 high |= ((fractype) (sign & 1)) << (HALFFRACBITS | EXPBITS);
374 low |= ((fractype) (exp & ((1 << EXPBITS) - 1))) << HALFFRACBITS;
375 low |= ((fractype) (sign & 1)) << (HALFFRACBITS | EXPBITS);
382 dst.value_raw |= ((fractype) (exp & ((1 << EXPBITS) - 1))) << FRACBITS;
383 dst.value_raw |= ((fractype) (sign & 1)) << (FRACBITS | EXPBITS);
450 exp = ((int)(high >> HALFFRACBITS)) & ((1 << EXPBITS) - 1);
451 sign = ((int)(high >> (((HALFFRACBITS + EXPBITS))))) & 1;
455 int lowexp = ((int)(low >> HALFFRACBITS)) & ((1 << EXPBITS) - 1);
456 int lowsign = ((int)(low >> (((HALFFRACBITS + EXPBITS))))) & 1;
[all …]