Searched refs:lowmant (Results 1 – 4 of 4) sorted by relevance
28 reg->lowmant = reg->mant.m32[1] << (8 - cnt); in fp_denormalize()34 reg->lowmant = reg->mant.m32[1] >> (cnt - 8); in fp_denormalize()36 reg->lowmant |= 1; in fp_denormalize()42 asm volatile ("bfextu %1{%2,#8},%0" : "=d" (reg->lowmant) in fp_denormalize()45 reg->lowmant |= 1; in fp_denormalize()50 reg->lowmant = reg->mant.m32[0] >> (cnt - 40); in fp_denormalize()52 reg->lowmant |= 1; in fp_denormalize()57 reg->lowmant = reg->mant.m32[0] || reg->mant.m32[1]; in fp_denormalize()87 asm volatile ("add.b %1,%0" : "=d,g" (dest->lowmant) in fp_addmant()88 : "g,d" (src->lowmant), "0,0" (dest->lowmant)); in fp_addmant()[all …]
95 dest->lowmant = src->lowmant = 0; in fp_fadd()185 dest->lowmant = 0; in fp_fmul()255 dest->lowmant = 0; in fp_fdiv()343 dest->lowmant = 0; in fp_fsglmul()393 dest->lowmant = 0; in fp_fsgldiv()
86 unsigned char lowmant; member