Lines Matching refs:allocrhs
1076 decNumber *allocrhs=NULL; /* non-NULL if rounded rhs allocated */ in uprv_decNumberExp() local
1092 allocrhs=decRoundOperand(rhs, set, &status); in uprv_decNumberExp()
1093 if (allocrhs==NULL) break; in uprv_decNumberExp()
1094 rhs=allocrhs; in uprv_decNumberExp()
1102 if (allocrhs !=NULL) free(allocrhs); /* drop any storage used */ in uprv_decNumberExp()
1296 decNumber *allocrhs=NULL; /* non-NULL if rounded rhs allocated */ in uprv_decNumberLn() local
1310 allocrhs=decRoundOperand(rhs, set, &status); in uprv_decNumberLn()
1311 if (allocrhs==NULL) break; in uprv_decNumberLn()
1312 rhs=allocrhs; in uprv_decNumberLn()
1324 if (allocrhs !=NULL) free(allocrhs); /* drop any storage used */ in uprv_decNumberLn()
1436 decNumber *allocrhs=NULL; /* non-NULL if rounded rhs allocated */ in uprv_decNumberLog10() local
1452 allocrhs=decRoundOperand(rhs, set, &status); in uprv_decNumberLog10()
1453 if (allocrhs==NULL) break; in uprv_decNumberLog10()
1454 rhs=allocrhs; in uprv_decNumberLog10()
1544 if (allocrhs !=NULL) free(allocrhs); /* .. */ in uprv_decNumberLog10()
1978 decNumber *allocrhs=NULL; /* .., rhs */ in uprv_decNumberPower() local
2017 allocrhs=decRoundOperand(rhs, set, &status); in uprv_decNumberPower()
2018 if (allocrhs==NULL) break; in uprv_decNumberPower()
2019 rhs=allocrhs; in uprv_decNumberPower()
2292 if (allocrhs!=NULL) free(allocrhs); /* .. */ in uprv_decNumberPower()
2347 decNumber *allocrhs=NULL; /* non-NULL if rounded rhs allocated */ in uprv_decNumberReduce() local
2362 allocrhs=decRoundOperand(rhs, set, &status); in uprv_decNumberReduce()
2363 if (allocrhs==NULL) break; in uprv_decNumberReduce()
2364 rhs=allocrhs; in uprv_decNumberReduce()
2384 if (allocrhs !=NULL) free(allocrhs); /* .. */ in uprv_decNumberReduce()
2848 decNumber *allocrhs=NULL; /* non-NULL if rounded rhs allocated */ in uprv_decNumberSquareRoot() local
2875 allocrhs=decRoundOperand(rhs, set, &status); in uprv_decNumberSquareRoot()
2876 if (allocrhs==NULL) break; in uprv_decNumberSquareRoot()
2879 rhs=allocrhs; in uprv_decNumberSquareRoot()
3154 if (allocrhs !=NULL) free(allocrhs); /* .. */ in uprv_decNumberSquareRoot()
3841 decNumber *allocrhs=NULL; /* .., rhs */ in decAddOp() local
3871 allocrhs=decRoundOperand(rhs, set, status); in decAddOp()
3872 if (allocrhs==NULL) break; in decAddOp()
3873 rhs=allocrhs; in decAddOp()
4176 if (allocrhs!=NULL) free(allocrhs); /* .. */ in decAddOp()
4257 decNumber *allocrhs=NULL; /* .., rhs */ in decDivideOp() local
4310 allocrhs=decRoundOperand(rhs, set, status); in decDivideOp()
4311 if (allocrhs==NULL) break; in decDivideOp()
4312 rhs=allocrhs; in decDivideOp()
4829 if (allocrhs!=NULL) free(allocrhs); /* .. */ in decDivideOp()
4930 decNumber *allocrhs=NULL; /* -> allocated buffer, iff allocated */ in decMultiplyOp() local
4974 allocrhs=decRoundOperand(rhs, set, status); in decMultiplyOp()
4975 if (allocrhs==NULL) break; in decMultiplyOp()
4976 rhs=allocrhs; in decMultiplyOp()
5177 if (allocrhs!=NULL) free(allocrhs); /* .. */ in decMultiplyOp()
5281 decNumber *allocrhs=NULL; /* non-NULL if rhs buffer allocated */ in decExpOp() local
5402 allocrhs=(decNumber *)malloc(needbytes); in decExpOp()
5403 if (allocrhs==NULL) { /* hopeless -- abandon */ in decExpOp()
5406 newrhs=allocrhs; /* use the allocated space */ in decExpOp()
5531 if (allocrhs !=NULL) free(allocrhs); /* drop any storage used */ in decExpOp()
5882 decNumber *allocrhs=NULL; /* .., rhs */ local
5904 allocrhs=decRoundOperand(rhs, set, status);
5905 if (allocrhs==NULL) break;
5906 rhs=allocrhs;
6014 if (allocrhs!=NULL) free(allocrhs); /* drop any storage used */
6055 decNumber *allocrhs=NULL; /* .., rhs */ local
6074 allocrhs=decRoundOperand(rhs, set, status);
6075 if (allocrhs==NULL) {result=BADINT; break;}
6076 rhs=allocrhs;
6197 if (allocrhs!=NULL) free(allocrhs); /* free any storage used */