allocacc         3609 src/decNumber/decNumber.c   Unit  *allocacc=NULL;            // -> allocated acc buffer, iff allocated
allocacc         3817 src/decNumber/decNumber.c         allocacc=(Unit *)malloc(need*sizeof(Unit));
allocacc         3818 src/decNumber/decNumber.c         if (allocacc==NULL) {           // hopeless -- abandon
allocacc         3821 src/decNumber/decNumber.c         acc=allocacc;
allocacc         3903 src/decNumber/decNumber.c   if (allocacc!=NULL) FREE(allocacc);        // drop any storage used
allocacc         3990 src/decNumber/decNumber.c   Unit  *allocacc=NULL;            // -> allocated buffer, iff allocated
allocacc         4167 src/decNumber/decNumber.c       allocacc=(Unit *)malloc(acclength*sizeof(Unit));
allocacc         4168 src/decNumber/decNumber.c       if (allocacc==NULL) {             // hopeless -- abandon
allocacc         4171 src/decNumber/decNumber.c       acc=allocacc;                     // use the allocated space
allocacc         4549 src/decNumber/decNumber.c   if (allocacc!=NULL) FREE(allocacc);   // ..
allocacc         4603 src/decNumber/decNumber.c   void  *allocacc=NULL;            // -> allocated accumulator, iff allocated
allocacc         4733 src/decNumber/decNumber.c         allocacc=(uLong *)malloc(needbytes);
allocacc         4734 src/decNumber/decNumber.c         zacc=(uLong *)allocacc;}
allocacc         4829 src/decNumber/decNumber.c         allocacc=(Unit *)malloc(needbytes);
allocacc         4830 src/decNumber/decNumber.c         if (allocacc==NULL) {*status|=DEC_Insufficient_storage; break;}
allocacc         4831 src/decNumber/decNumber.c         acc=(Unit *)allocacc;                // use the allocated space
allocacc         4885 src/decNumber/decNumber.c   if (allocacc!=NULL) FREE(allocacc);   // drop any storage used
allocacc         5961 src/decNumber/decNumber.c   Unit  *allocacc=NULL;            // -> allocated acc buffer, iff allocated
allocacc         5992 src/decNumber/decNumber.c     allocacc=(Unit *)malloc(need*sizeof(Unit));
allocacc         5993 src/decNumber/decNumber.c     if (allocacc==NULL) return BADINT;  // hopeless -- abandon
allocacc         5994 src/decNumber/decNumber.c     acc=allocacc;
allocacc         6010 src/decNumber/decNumber.c   if (allocacc!=NULL) FREE(allocacc);   // drop any storage used