Home
last modified time | relevance | path

Searched refs:allocacc (Results 1 – 1 of 1) sorted by relevance

/openbmc/qemu/libdecnumber/
H A DdecNumber.c3967 Unit *allocacc=NULL; /* -> allocated acc buffer, iff allocated */ in decAddOp() local
4191 allocacc=(Unit *)malloc(need*sizeof(Unit)); in decAddOp()
4192 if (allocacc==NULL) { /* hopeless -- abandon */ in decAddOp()
4195 acc=allocacc; in decAddOp()
4286 if (allocacc!=NULL) free(allocacc); /* drop any storage used */ in decAddOp()
4373 Unit *allocacc=NULL; /* -> allocated buffer, iff allocated */ in decDivideOp() local
4554 allocacc=(Unit *)malloc(acclength*sizeof(Unit)); in decDivideOp()
4555 if (allocacc==NULL) { /* hopeless -- abandon */ in decDivideOp()
4558 acc=allocacc; /* use the allocated space */ in decDivideOp()
4939 if (allocacc!=NULL) free(allocacc); /* .. */ in decDivideOp()
[all …]