allocacc 3592 src/decNumber/decNumber.c Unit *allocacc=NULL; // -> allocated acc buffer, iff allocated allocacc 3799 src/decNumber/decNumber.c allocacc=(Unit *)malloc(need*sizeof(Unit)); allocacc 3800 src/decNumber/decNumber.c if (allocacc==NULL) { // hopeless -- abandon allocacc 3803 src/decNumber/decNumber.c acc=allocacc; allocacc 3885 src/decNumber/decNumber.c if (allocacc!=NULL) FREE(allocacc); // drop any storage used allocacc 3972 src/decNumber/decNumber.c Unit *allocacc=NULL; // -> allocated buffer, iff allocated allocacc 4148 src/decNumber/decNumber.c allocacc=(Unit *)malloc(acclength*sizeof(Unit)); allocacc 4149 src/decNumber/decNumber.c if (allocacc==NULL) { // hopeless -- abandon allocacc 4152 src/decNumber/decNumber.c acc=allocacc; // use the allocated space allocacc 4529 src/decNumber/decNumber.c if (allocacc!=NULL) FREE(allocacc); // .. allocacc 4583 src/decNumber/decNumber.c void *allocacc=NULL; // -> allocated accumulator, iff allocated allocacc 4713 src/decNumber/decNumber.c allocacc=(uLong *)malloc(needbytes); allocacc 4714 src/decNumber/decNumber.c zacc=(uLong *)allocacc;} allocacc 4809 src/decNumber/decNumber.c allocacc=(Unit *)malloc(needbytes); allocacc 4810 src/decNumber/decNumber.c if (allocacc==NULL) {*status|=DEC_Insufficient_storage; break;} allocacc 4811 src/decNumber/decNumber.c acc=(Unit *)allocacc; // use the allocated space allocacc 4865 src/decNumber/decNumber.c if (allocacc!=NULL) FREE(allocacc); // drop any storage used allocacc 5941 src/decNumber/decNumber.c Unit *allocacc=NULL; // -> allocated acc buffer, iff allocated allocacc 5972 src/decNumber/decNumber.c allocacc=(Unit *)malloc(need*sizeof(Unit)); allocacc 5973 src/decNumber/decNumber.c if (allocacc==NULL) return BADINT; // hopeless -- abandon allocacc 5974 src/decNumber/decNumber.c acc=allocacc; allocacc 5990 src/decNumber/decNumber.c if (allocacc!=NULL) FREE(allocacc); // drop any storage used