Home
last modified time | relevance | path

Searched refs:lowmant (Results 1 – 3 of 3) sorted by relevance

/linux-6.1.9/arch/m68k/math-emu/
Dmulti_arith.h27 reg->lowmant = reg->mant.m32[1] << (8 - cnt); in fp_denormalize()
33 reg->lowmant = reg->mant.m32[1] >> (cnt - 8); in fp_denormalize()
35 reg->lowmant |= 1; in fp_denormalize()
41 asm volatile ("bfextu %1{%2,#8},%0" : "=d" (reg->lowmant) in fp_denormalize()
44 reg->lowmant |= 1; in fp_denormalize()
49 reg->lowmant = reg->mant.m32[0] >> (cnt - 40); in fp_denormalize()
51 reg->lowmant |= 1; in fp_denormalize()
56 reg->lowmant = reg->mant.m32[0] || reg->mant.m32[1]; in fp_denormalize()
86 asm volatile ("add.b %1,%0" : "=d,g" (dest->lowmant) in fp_addmant()
87 : "g,d" (src->lowmant), "0,0" (dest->lowmant)); in fp_addmant()
[all …]
Dfp_arith.c93 dest->lowmant = src->lowmant = 0; in fp_fadd()
183 dest->lowmant = 0; in fp_fmul()
253 dest->lowmant = 0; in fp_fdiv()
341 dest->lowmant = 0; in fp_fsglmul()
391 dest->lowmant = 0; in fp_fsgldiv()
/linux-6.1.9/arch/m68k/include/asm/
Dmath-emu.h87 unsigned char lowmant; member