Home | History | Annotate | Download | only in i18n

Lines Matching full:allocacc

3847   Unit  *allocacc=NULL;            /* -> allocated acc buffer, iff allocated  */
4071 allocacc=(Unit *)malloc(need*sizeof(Unit));
4072 if (allocacc==NULL) { /* hopeless -- abandon */
4075 acc=allocacc;
4168 if (allocacc!=NULL) free(allocacc); /* drop any storage used */
4255 Unit *allocacc=NULL; /* -> allocated buffer, iff allocated */
4436 allocacc=(Unit *)malloc(acclength*sizeof(Unit));
4437 if (allocacc==NULL) { /* hopeless -- abandon */
4440 acc=allocacc; /* use the allocated space */
4821 if (allocacc!=NULL) free(allocacc); /* .. */
4875 void *allocacc=NULL; /* -> allocated accumulator, iff allocated */
4904 /* [allocacc is shared for both paths, as only one will run] */
5013 allocacc=(uLong *)malloc(needbytes);
5014 zacc=(uLong *)allocacc;}
5109 allocacc=(Unit *)malloc(needbytes);
5110 if (allocacc==NULL) {*status|=DEC_Insufficient_storage; break;}
5111 acc=(Unit *)allocacc; /* use the allocated space */
5169 if (allocacc!=NULL) free(allocacc); /* drop any storage used */
6277 Unit *allocacc=NULL; /* -> allocated acc buffer, iff allocated */
6308 allocacc=(Unit *)malloc(need*sizeof(Unit));
6309 if (allocacc==NULL) return BADINT; /* hopeless -- abandon */
6310 acc=allocacc;
6326 if (allocacc!=NULL) free(allocacc); /* drop any storage used */