Lines Matching refs:allocrhs
1072 decNumber *allocrhs=NULL; /* non-NULL if rounded rhs allocated */ in uprv_decNumberExp() local
1088 allocrhs=decRoundOperand(rhs, set, &status); in uprv_decNumberExp()
1089 if (allocrhs==NULL) break; in uprv_decNumberExp()
1090 rhs=allocrhs; in uprv_decNumberExp()
1098 if (allocrhs !=NULL) free(allocrhs); /* drop any storage used */ in uprv_decNumberExp()
1292 decNumber *allocrhs=NULL; /* non-NULL if rounded rhs allocated */ in uprv_decNumberLn() local
1306 allocrhs=decRoundOperand(rhs, set, &status); in uprv_decNumberLn()
1307 if (allocrhs==NULL) break; in uprv_decNumberLn()
1308 rhs=allocrhs; in uprv_decNumberLn()
1320 if (allocrhs !=NULL) free(allocrhs); /* drop any storage used */ in uprv_decNumberLn()
1432 decNumber *allocrhs=NULL; /* non-NULL if rounded rhs allocated */ in uprv_decNumberLog10() local
1448 allocrhs=decRoundOperand(rhs, set, &status); in uprv_decNumberLog10()
1449 if (allocrhs==NULL) break; in uprv_decNumberLog10()
1450 rhs=allocrhs; in uprv_decNumberLog10()
1540 if (allocrhs !=NULL) free(allocrhs); /* .. */ in uprv_decNumberLog10()
1974 decNumber *allocrhs=NULL; /* .., rhs */ in uprv_decNumberPower() local
2013 allocrhs=decRoundOperand(rhs, set, &status); in uprv_decNumberPower()
2014 if (allocrhs==NULL) break; in uprv_decNumberPower()
2015 rhs=allocrhs; in uprv_decNumberPower()
2288 if (allocrhs!=NULL) free(allocrhs); /* .. */ in uprv_decNumberPower()
2343 decNumber *allocrhs=NULL; /* non-NULL if rounded rhs allocated */ in uprv_decNumberReduce() local
2358 allocrhs=decRoundOperand(rhs, set, &status); in uprv_decNumberReduce()
2359 if (allocrhs==NULL) break; in uprv_decNumberReduce()
2360 rhs=allocrhs; in uprv_decNumberReduce()
2380 if (allocrhs !=NULL) free(allocrhs); /* .. */ in uprv_decNumberReduce()
2844 decNumber *allocrhs=NULL; /* non-NULL if rounded rhs allocated */ in uprv_decNumberSquareRoot() local
2871 allocrhs=decRoundOperand(rhs, set, &status); in uprv_decNumberSquareRoot()
2872 if (allocrhs==NULL) break; in uprv_decNumberSquareRoot()
2875 rhs=allocrhs; in uprv_decNumberSquareRoot()
3150 if (allocrhs !=NULL) free(allocrhs); /* .. */ in uprv_decNumberSquareRoot()
3837 decNumber *allocrhs=NULL; /* .., rhs */ in decAddOp() local
3867 allocrhs=decRoundOperand(rhs, set, status); in decAddOp()
3868 if (allocrhs==NULL) break; in decAddOp()
3869 rhs=allocrhs; in decAddOp()
4172 if (allocrhs!=NULL) free(allocrhs); /* .. */ in decAddOp()
4253 decNumber *allocrhs=NULL; /* .., rhs */ in decDivideOp() local
4306 allocrhs=decRoundOperand(rhs, set, status); in decDivideOp()
4307 if (allocrhs==NULL) break; in decDivideOp()
4308 rhs=allocrhs; in decDivideOp()
4825 if (allocrhs!=NULL) free(allocrhs); /* .. */ in decDivideOp()
4926 decNumber *allocrhs=NULL; /* -> allocated buffer, iff allocated */ in decMultiplyOp() local
4970 allocrhs=decRoundOperand(rhs, set, status); in decMultiplyOp()
4971 if (allocrhs==NULL) break; in decMultiplyOp()
4972 rhs=allocrhs; in decMultiplyOp()
5173 if (allocrhs!=NULL) free(allocrhs); /* .. */ in decMultiplyOp()
5277 decNumber *allocrhs=NULL; /* non-NULL if rhs buffer allocated */ in decExpOp() local
5398 allocrhs=(decNumber *)malloc(needbytes); in decExpOp()
5399 if (allocrhs==NULL) { /* hopeless -- abandon */ in decExpOp()
5402 newrhs=allocrhs; /* use the allocated space */ in decExpOp()
5527 if (allocrhs !=NULL) free(allocrhs); /* drop any storage used */ in decExpOp()
5878 decNumber *allocrhs=NULL; /* .., rhs */ local
5900 allocrhs=decRoundOperand(rhs, set, status);
5901 if (allocrhs==NULL) break;
5902 rhs=allocrhs;
6010 if (allocrhs!=NULL) free(allocrhs); /* drop any storage used */
6051 decNumber *allocrhs=NULL; /* .., rhs */ local
6070 allocrhs=decRoundOperand(rhs, set, status);
6071 if (allocrhs==NULL) {result=BADINT; break;}
6072 rhs=allocrhs;
6193 if (allocrhs!=NULL) free(allocrhs); /* free any storage used */