Lines Matching refs:FP80
299 if ( VALUE_GT_80(FP80(xhi),FP80(yhi)) ) { \
327 FP80(t1)->sign = 0; \
328 FP80(t1)->exponent = BIAS_80 + (x)->ex-(y)->ex; \
340 FP80(t1)->hi_significand = 0x80000000; \
341 FP80(t1)->lo_significand = 0x00000000; \
374 FP80(t1)->sign = 0; \
375 FP80(t1)->exponent = BIAS_80 + (x)->ex-(y)->ex; \
387 FP80(t1)->significand = 0x8000000000000000; \
444 if ( VALUE_GT_80(FP80(xhi),FP80(yhi)) ) { \
472 FP80(t1)->sign = 0; \
473 FP80(t1)->exponent = BIAS_80 + (x)->ex-(y)->ex; \
485 FP80(t1)->hi_significand = 0x80000000; \
486 FP80(t1)->lo_significand = 0x00000000; \
521 FP80(t1)->sign = 0; \
522 FP80(t1)->exponent = BIAS_80 + (x)->ex-(y)->ex; \
534 FP80(t1)->significand = 0x8000000000000000; \
763 #define FP80(ld) ((struct fp80 *)&ld) macro
768 # define HI_DWORD_80(ld) ((((FP80(ld)->sign << 15) | FP80(ld)->exponent) << 16) | \
769 ((FP80(ld)->hi_significand >> 16) & 0xFFFF))
770 # define LO_DWORD_80(ld) SIGN_EXPAND(FP80(ld)->lo_significand, 32)
772 # define HI_DWORD_80(ld) ((((FP80(ld)->sign << 15) | FP80(ld)->exponent) << 16) | \
773 ((FP80(ld)->significand >> 48) & 0xFFFF))
774 # define LO_DWORD_80(ld) SIGN_EXPAND(FP80(ld)->significand, 32)