Searched refs:bexp (Results 1 – 6 of 6) sorted by relevance
/openbmc/linux/arch/mips/math-emu/ |
H A D | dp_sqrt.c | 101 t.bexp += 0x001; in ieee754dp_sqrt() 107 t.bexp += 0x001; in ieee754dp_sqrt() 146 y.bexp += scalx; in ieee754dp_sqrt()
|
H A D | ieee754dp.h | 28 #define DPBEXP(dp) (dp.bexp) 66 r.bexp = bx; in builddp()
|
H A D | ieee754sp.h | 28 #define SPBEXP(sp) (sp.bexp) 70 r.bexp = bx; in buildsp()
|
H A D | ieee754.c | 32 .bexp = (b) + ebias, \
|
H A D | ieee754.h | 25 __BITFIELD_FIELD(unsigned int bexp:11, 35 __BITFIELD_FIELD(unsigned bexp:8,
|
/openbmc/qemu/target/i386/tcg/ |
H A D | fpu_helper.c | 1161 int32_t n, aexp, bexp; in helper_f2xm1() local 1236 bexp = extractFloatx80Exp(f2xm1_table[n].exp2m1); in helper_f2xm1() 1239 if (bexp < aexp) { in helper_f2xm1() 1240 shift128RightJamming(bsig0, bsig1, aexp - bexp, in helper_f2xm1() 1242 } else if (aexp < bexp) { in helper_f2xm1() 1243 shift128RightJamming(asig0, asig1, bexp - aexp, in helper_f2xm1() 1245 aexp = bexp; in helper_f2xm1()
|