Below is my current char* to hex string function. I wrote it as an exercise in bit manipulation. It takes ~5ms on a AMD Athlon MP 2800+ to hexify a 10 million byte array. Is there any trick or other way that I am missing?

How can I make this faster?


Compiled with -O3 in g++

    static const char _hex2asciiU_value[16] =
         { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F' };

    std::string char_to_hex( const unsigned char* _pArray, unsigned int _len )
    {
        std::string str;
        str.resize(_len*2);
        char* pszHex = &str[0];
        const unsigned char* pEnd = _pArray + _len;

        unsigned int ofs = 0;
        const char* pHex = _hex2asciiU_value;

        clock_t stick, etick;
        stick = clock();

        for( const unsigned char* pChar = _pArray; pChar != pEnd; pChar++, pszHex += 2 ) {
            ofs = (*pChar) >> 4;
            pszHex[0] = pHex[ofs];
            pszHex[1] = pHex[(*pChar)-(ofs<<4)];
        }
        etick = clock();

        std::cout << "ticks to hexify " << etick - stick << std::endl;

        return str;
    }



**Updates**

Added timing code

[Brian R. Bondy][1]: replace the std::string with a heap alloc'd buffer and change ofs*16 to ofs << 4 - however the heap allocated buffer seems to slow it down?


[1]:http://stackoverflow.com/questions/69115/char-to-hex-string-exercise#69126