Lines Matching refs:ulIdx
767 uint32_t ulIdx = 0U; in ParseFormatSpecifier() local
769 while( pszFormat[ ulIdx ] != '\0' ) in ParseFormatSpecifier()
775 if( pszFormat[ ulIdx ] != '%' ) in ParseFormatSpecifier()
777 ulIdx++; in ParseFormatSpecifier()
785 pFormatType->ulSpecifierIdx = ulIdx; in ParseFormatSpecifier()
786 ulIdx++; in ParseFormatSpecifier()
788 if( pszFormat[ ulIdx ] == '-' ) in ParseFormatSpecifier()
791 ulIdx++; in ParseFormatSpecifier()
794 if( ( pszFormat[ ulIdx ] == '0' ) || ( pszFormat[ ulIdx ] == '_' ) ) in ParseFormatSpecifier()
796 pFormatType->cFillChar = pszFormat[ ulIdx ]; in ParseFormatSpecifier()
797 ulIdx++; in ParseFormatSpecifier()
804 if( pszFormat[ ulIdx ] == '*' ) in ParseFormatSpecifier()
807 ulIdx++; in ParseFormatSpecifier()
809 else if( ISDIGIT( pszFormat[ ulIdx ] ) ) in ParseFormatSpecifier()
811 pFormatType->ulFillLen = ( uint32_t ) RedAtoI( &pszFormat[ ulIdx ] ); in ParseFormatSpecifier()
813 while( ISDIGIT( pszFormat[ ulIdx ] ) ) in ParseFormatSpecifier()
815 ulIdx++; in ParseFormatSpecifier()
824 pFormatType->type = ParseFormatType( &pszFormat[ ulIdx ], &ulTypeLen ); in ParseFormatSpecifier()
833 ulLen = ( ulIdx - pFormatType->ulSpecifierIdx ) + ulTypeLen; in ParseFormatSpecifier()
842 ulIdx = pFormatType->ulSpecifierIdx + 1U; in ParseFormatSpecifier()
866 uint32_t ulIdx = 0U; in ParseFormatType() local
868 switch( pszFormat[ ulIdx ] ) in ParseFormatType()
899 ulIdx++; in ParseFormatType()
901 switch( pszFormat[ ulIdx ] ) in ParseFormatType()
922 ulIdx++; in ParseFormatType()
924 switch( pszFormat[ ulIdx ] ) in ParseFormatType()
939 ulIdx++; in ParseFormatType()
941 switch( pszFormat[ ulIdx ] ) in ParseFormatType()
974 *pulTypeLen = ulIdx + 1U; in ParseFormatType()
1286 uint32_t ulIdx = 0U; in FinishToA() local
1295 while( ( ulFillRem > 0U ) && ( ulIdx < ulBufferLen ) ) in FinishToA()
1297 pcOutBuffer[ ulIdx ] = cFill; in FinishToA()
1298 ulIdx++; in FinishToA()
1305 while( ( ulDigitIdx > 0 ) && ( ulIdx < ulBufferLen ) ) in FinishToA()
1308 pcOutBuffer[ ulIdx ] = pcDigits[ ulDigitIdx ]; in FinishToA()
1309 ulIdx++; in FinishToA()
1312 if( ulIdx < ulBufferLen ) in FinishToA()
1314 pcOutBuffer[ ulIdx ] = '\0'; in FinishToA()
1317 return ulIdx; in FinishToA()