Lines Matching refs:alloclhs

979   decNumber *alloclhs = NULL;	/* non-NULL if rounded lhs allocated */  in decNumberPower()  local
1015 alloclhs = decRoundOperand (lhs, set, &status); in decNumberPower()
1016 if (alloclhs == NULL) in decNumberPower()
1018 lhs = alloclhs; in decNumberPower()
1137 if (alloclhs != NULL) in decNumberPower()
1139 free (alloclhs); /* done with intermediate */ in decNumberPower()
1140 alloclhs = NULL; /* indicate freed */ in decNumberPower()
1145 alloclhs = (decNumber *) malloc (needbytes); in decNumberPower()
1146 if (alloclhs == NULL) in decNumberPower()
1151 newlhs = alloclhs; /* use the allocated space */ in decNumberPower()
1237 if (alloclhs != NULL) in decNumberPower()
1238 free (alloclhs); /* .. */ in decNumberPower()
2233 decNumber *alloclhs = NULL; /* non-NULL if rounded lhs allocated */ in decAddOp() local
2263 alloclhs = decRoundOperand (lhs, set, status); in decAddOp()
2264 if (alloclhs == NULL) in decAddOp()
2266 lhs = alloclhs; in decAddOp()
2632 if (alloclhs != NULL) in decAddOp()
2633 free (alloclhs); /* .. */ in decAddOp()
2711 decNumber *alloclhs = NULL; /* non-NULL if rounded lhs allocated */ in decDivideOp() local
2764 alloclhs = decRoundOperand (lhs, set, status); in decDivideOp()
2765 if (alloclhs == NULL) in decDivideOp()
2767 lhs = alloclhs; in decDivideOp()
3404 if (alloclhs != NULL) in decDivideOp()
3405 free (alloclhs); /* .. */ in decDivideOp()
3433 decNumber *alloclhs = NULL; /* non-NULL if rounded lhs allocated */ in decMultiplyOp() local
3461 alloclhs = decRoundOperand (lhs, set, status); in decMultiplyOp()
3462 if (alloclhs == NULL) in decMultiplyOp()
3464 lhs = alloclhs; in decMultiplyOp()
3584 if (alloclhs != NULL) in decMultiplyOp()
3585 free (alloclhs); /* .. */ in decMultiplyOp()
3615 decNumber *alloclhs = NULL; /* non-NULL if rounded lhs allocated */ in decQuantizeOp() local
3637 alloclhs = decRoundOperand (lhs, set, status); in decQuantizeOp()
3638 if (alloclhs == NULL) in decQuantizeOp()
3640 lhs = alloclhs; in decQuantizeOp()
3770 if (alloclhs != NULL) in decQuantizeOp()
3771 free (alloclhs); /* .. */ in decQuantizeOp()
3798 decNumber *alloclhs = NULL; /* non-NULL if rounded lhs allocated */ in decCompareOp() local
3817 alloclhs = decRoundOperand (lhs, set, status); in decCompareOp()
3818 if (alloclhs == NULL) in decCompareOp()
3823 lhs = alloclhs; in decCompareOp()
3941 if (alloclhs != NULL) in decCompareOp()
3942 free (alloclhs); /* .. */ in decCompareOp()