Lines Matching refs:lowmant
268 reg->lowmant = reg->mant.m32[1] << (8 - cnt); in fp_denormalize()
274 reg->lowmant = reg->mant.m32[1] >> (cnt - 8); in fp_denormalize()
276 reg->lowmant |= 1; in fp_denormalize()
282 asm volatile ("bfextu %1{%2,#8},%0" : "=d" (reg->lowmant) in fp_denormalize()
285 reg->lowmant |= 1; in fp_denormalize()
290 reg->lowmant = reg->mant.m32[0] >> (cnt - 40); in fp_denormalize()
292 reg->lowmant |= 1; in fp_denormalize()
297 reg->lowmant = reg->mant.m32[0] || reg->mant.m32[1]; in fp_denormalize()
327 asm volatile ("add.b %1,%0" : "=d,g" (dest->lowmant) in fp_addmant()
328 : "g,d" (src->lowmant), "0,0" (dest->lowmant)); in fp_addmant()
347 reg->lowmant = (reg->mant.m32[1] << 7) | (reg->lowmant ? 1 : 0); in fp_addcarry()
359 asm volatile ("sub.b %1,%0" : "=d,g" (dest->lowmant) in fp_submant()
360 : "g,d" (src2->lowmant), "0,0" (src1->lowmant)); in fp_submant()
603 dest->lowmant = src->m32[2] >> 24; in fp_putmant128()
605 dest->lowmant |= 1; in fp_putmant128()
614 dest->lowmant = tmp >> 24; in fp_putmant128()
616 dest->lowmant |= 1; in fp_putmant128()
626 dest->lowmant = tmp >> 24; in fp_putmant128()
628 dest->lowmant |= 1; in fp_putmant128()
633 dest->lowmant = src->m32[3] >> 24; in fp_putmant128()
635 dest->lowmant |= 1; in fp_putmant128()