Lines Matching refs:lowmant
29 reg->lowmant = reg->mant.m32[1] << (8 - cnt); in fp_denormalize()
35 reg->lowmant = reg->mant.m32[1] >> (cnt - 8); in fp_denormalize()
37 reg->lowmant |= 1; in fp_denormalize()
43 asm volatile ("bfextu %1{%2,#8},%0" : "=d" (reg->lowmant) in fp_denormalize()
46 reg->lowmant |= 1; in fp_denormalize()
51 reg->lowmant = reg->mant.m32[0] >> (cnt - 40); in fp_denormalize()
53 reg->lowmant |= 1; in fp_denormalize()
58 reg->lowmant = reg->mant.m32[0] || reg->mant.m32[1]; in fp_denormalize()
88 asm volatile ("add.b %1,%0" : "=d,g" (dest->lowmant) in fp_addmant()
89 : "g,d" (src->lowmant), "0,0" (dest->lowmant)); in fp_addmant()
108 reg->lowmant = (reg->mant.m32[1] << 7) | (reg->lowmant ? 1 : 0); in fp_addcarry()
120 asm volatile ("sub.b %1,%0" : "=d,g" (dest->lowmant) in fp_submant()
121 : "g,d" (src2->lowmant), "0,0" (src1->lowmant)); in fp_submant()
253 dest->lowmant = src->m32[2] >> 24; in fp_putmant128()
255 dest->lowmant |= 1; in fp_putmant128()
264 dest->lowmant = tmp >> 24; in fp_putmant128()
266 dest->lowmant |= 1; in fp_putmant128()
276 dest->lowmant = tmp >> 24; in fp_putmant128()
278 dest->lowmant |= 1; in fp_putmant128()
283 dest->lowmant = src->m32[3] >> 24; in fp_putmant128()
285 dest->lowmant |= 1; in fp_putmant128()