Lines Matching refs:allocacc
3814 Unit *allocacc=NULL; /* -> allocated acc buffer, iff allocated */ in decAddOp() local
4038 allocacc=(Unit *)malloc(need*sizeof(Unit)); in decAddOp()
4039 if (allocacc==NULL) { /* hopeless -- abandon */ in decAddOp()
4042 acc=allocacc; in decAddOp()
4133 free(allocacc); /* drop any storage used */ in decAddOp()
4220 Unit *allocacc=NULL; /* -> allocated buffer, iff allocated */ in decDivideOp() local
4401 allocacc=(Unit *)malloc(acclength*sizeof(Unit)); in decDivideOp()
4402 if (allocacc==NULL) { /* hopeless -- abandon */ in decDivideOp()
4405 acc=allocacc; /* use the allocated space */ in decDivideOp()
4786 free(allocacc); /* .. */ in decDivideOp()
4840 void *allocacc=NULL; /* -> allocated accumulator, iff allocated */ in decMultiplyOp() local
4974 allocacc=(uLong *)malloc(needbytes); in decMultiplyOp()
4975 zacc=(uLong *)allocacc;} in decMultiplyOp()
5070 allocacc=(Unit *)malloc(needbytes); in decMultiplyOp()
5071 if (allocacc==NULL) {*status|=DEC_Insufficient_storage; break;} in decMultiplyOp()
5072 acc=(Unit *)allocacc; /* use the allocated space */ in decMultiplyOp()
5130 free(allocacc); /* drop any storage used */ in decMultiplyOp()
6231 Unit *allocacc=NULL; /* -> allocated acc buffer, iff allocated */ local
6262 allocacc=(Unit *)malloc(need*sizeof(Unit));
6263 if (allocacc==NULL) return BADINT; /* hopeless -- abandon */
6264 acc=allocacc;
6280 free(allocacc); /* drop any storage used */