Home
last modified time | relevance | path

Searched refs:bexp (Results 1 – 6 of 6) sorted by relevance

/openbmc/linux/arch/mips/math-emu/
H A Ddp_sqrt.c101 t.bexp += 0x001; in ieee754dp_sqrt()
107 t.bexp += 0x001; in ieee754dp_sqrt()
146 y.bexp += scalx; in ieee754dp_sqrt()
H A Dieee754dp.h28 #define DPBEXP(dp) (dp.bexp)
66 r.bexp = bx; in builddp()
H A Dieee754sp.h28 #define SPBEXP(sp) (sp.bexp)
70 r.bexp = bx; in buildsp()
H A Dieee754.c32 .bexp = (b) + ebias, \
H A Dieee754.h25 __BITFIELD_FIELD(unsigned int bexp:11,
35 __BITFIELD_FIELD(unsigned bexp:8,
/openbmc/qemu/target/i386/tcg/
H A Dfpu_helper.c1161 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()