Lines Matching defs:allocacc
3814 Unit *allocacc=NULL; /* -> allocated acc buffer, iff allocated */
4038 allocacc=(Unit *)malloc(need*sizeof(Unit));
4039 if (allocacc==NULL) { /* hopeless -- abandon */
4042 acc=allocacc;
4133 free(allocacc); /* drop any storage used */
4220 Unit *allocacc=NULL; /* -> allocated buffer, iff allocated */
4401 allocacc=(Unit *)malloc(acclength*sizeof(Unit));
4402 if (allocacc==NULL) { /* hopeless -- abandon */
4405 acc=allocacc; /* use the allocated space */
4786 free(allocacc); /* .. */
4840 void *allocacc=NULL; /* -> allocated accumulator, iff allocated */
4869 /* [allocacc is shared for both paths, as only one will run] */
4974 allocacc=(uLong *)malloc(needbytes);
4975 zacc=(uLong *)allocacc;}
5070 allocacc=(Unit *)malloc(needbytes);
5071 if (allocacc==NULL) {*status|=DEC_Insufficient_storage; break;}
5072 acc=(Unit *)allocacc; /* use the allocated space */
5130 free(allocacc); /* drop any storage used */
6231 Unit *allocacc=NULL; /* -> allocated acc buffer, iff allocated */
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 */