Lines Matching refs:locy
1077 InternalFPF locx,locy; /* Needed since we alter them */ in AddSubInternalFPF() local
1131 my_memmove((void *)&locy,(void *)y,sizeof(InternalFPF)); in AddSubInternalFPF()
1134 exponent_difference = locx.exp-locy.exp; in AddSubInternalFPF()
1142 locy.type == IFPF_IS_SUBNORMAL) in AddSubInternalFPF()
1159 StickyShiftRightMant(&locy, in AddSubInternalFPF()
1172 z->type = locy.type; in AddSubInternalFPF()
1173 z->sign = locy.sign ^ operation; in AddSubInternalFPF()
1174 z->exp = locy.exp; in AddSubInternalFPF()
1177 if (locx.sign ^ locy.sign ^ operation) in AddSubInternalFPF()
1187 locy.mantissa[i]); in AddSubInternalFPF()
1197 z->sign = locy.sign ^ operation; in AddSubInternalFPF()
1223 locy.type == IFPF_IS_NORMAL) in AddSubInternalFPF()
1237 locy.mantissa[i]); in AddSubInternalFPF()
1285 InternalFPF locy; /* Needed since this will be altered */ in MultiplyInternalFPF() local
1339 my_memmove((void *)&locy,(void *)y,sizeof(InternalFPF)); in MultiplyInternalFPF()
1370 ShiftMantRight1(&carry, locy.mantissa); in MultiplyInternalFPF()