Home
last modified time | relevance | path

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

/qemu/libdecnumber/
H A DdecNumber.c2112 decNumber *allocinv=NULL; /* -> allocated 1/x buffer, iff used */ in decNumberPower() local
2346 allocinv=(decNumber *)malloc(needbytes); in decNumberPower()
2347 if (allocinv==NULL) { /* hopeless -- abandon */ in decNumberPower()
2350 inv=allocinv; /* use the allocated space */ in decNumberPower()
2420 if (allocinv!=NULL) free(allocinv); /* .. */ in decNumberPower()