Lines Matching refs:nMaxDigit
385 short nMaxDigit; in GetDigitAtPos() local
392 nMaxDigit = (short)get_number_of_digits( dNumber ); in GetDigitAtPos()
396 if( nMaxDigit<nPos && !bFoundFirstDigit && nPos>=0 ) in GetDigitAtPos()
400 for( short i=nMaxDigit; i>=nPos; i-- ) in GetDigitAtPos()
719 short nState,nDigitPos,nExponentPos,nMaxDigit,nMaxExponentDigit; in ScanFormatString() local
731 nMaxDigit = (short)dExponent; in ScanFormatString()
739 nDigitPos = nMaxDigit; in ScanFormatString()
792 if( nMaxDigit>nDigitPos ) in ScanFormatString()
794 for( short j=nMaxDigit; j>nDigitPos; j-- ) in ScanFormatString()
807 … if( bGenerateThousandSeparator && ( c=='0' || nMaxDigit>=nDigitPos ) && j>0 && (j % 3 == 0) ) in ScanFormatString()
813 if( nMaxDigit<nDigitPos && ( c=='0' || bZeroSpaceOn ) ) in ScanFormatString()
823 …if( bGenerateThousandSeparator && ( c=='0' || nMaxDigit>=nDigitPos ) && nDigitPos>0 && (nDigitPos … in ScanFormatString()
839 …if( bGenerateThousandSeparator && ( c=='0' || nMaxDigit>=nDigitPos ) && nDigitPos>0 && (nDigitPos … in ScanFormatString()