Home
last modified time | relevance | path

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

/qemu/libdecnumber/
H A DdecNumber.c662 const char *dotchar=NULL; /* where dot was found */ in decNumberFromString() local
685 if (*c=='.' && dotchar==NULL) { /* first '.' */ in decNumberFromString()
686 dotchar=c; /* record offset into decimal part */ in decNumberFromString()
710 if (dotchar!=NULL) break; /* .. unless had a dot */ in decNumberFromString()
809 if (dotchar!=NULL && dotchar<last) /* non-trailing '.' found? */ in decNumberFromString()
810 exponent-=(last-dotchar); /* adjust exponent */ in decNumberFromString()