Home
last modified time | relevance | path

Searched refs:HALFFRACBITS (Results 1 – 4 of 4) sorted by relevance

/openbsd/src/gnu/usr.bin/gcc/gcc/config/
Dfp-bit.c325 # if defined TFLOAT && defined HALFFRACBITS
329 high = (fraction >> (FRACBITS - HALFFRACBITS));
330 high &= (((fractype)1) << HALFFRACBITS) - 1;
331 high |= ((fractype) (exp & ((1 << EXPBITS) - 1))) << HALFFRACBITS;
332 high |= ((fractype) (sign & 1)) << (HALFFRACBITS | EXPBITS);
335 ((((halffractype)1) << (FRACBITS - HALFFRACBITS)) - 1);
341 exp -= HALFFRACBITS + 1;
344 && low < ((halffractype)1 << HALFFRACBITS))
365 if (low >= ((halffractype)1 << HALFFRACBITS))
373 low &= ((halffractype)1 << HALFFRACBITS) - 1;
[all …]
Dfp-bit.h163 # define HALFFRACBITS 52 macro
/openbsd/src/gnu/gcc/gcc/config/
Dfp-bit.c344 # if defined TFLOAT && defined HALFFRACBITS
349 unity = (halffractype) 1 << HALFFRACBITS;
353 high = (fraction >> (FRACBITS - HALFFRACBITS)) & (unity - 1);
357 lowexp = exp - HALFFRACBITS - 1;
377 high |= (halffractype) exp << HALFFRACBITS;
378 high |= (halffractype) sign << (HALFFRACBITS + EXPBITS);
412 low |= (halffractype) lowexp << HALFFRACBITS;
413 low |= (halffractype) lowsign << (HALFFRACBITS + EXPBITS);
478 # if defined TFLOAT && defined HALFFRACBITS
485 fraction = high & ((((fractype)1) << HALFFRACBITS) - 1);
[all …]
Dfp-bit.h167 # define HALFFRACBITS 52 macro